473,385 Members | 1,732 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

scrollbar won't add to popup window

Hello,

I seem to be having trouble with a rather simple problem. I am opening a new
window with the window.open command, and even though I set scrollbar=yes, I
can't seem to get the window to display a vertical scrollbar when the text
exceeds the height of the window i just openned (on a side note, ideally I
would like to just have a vertical scrollbar).

My code follows. Thank you,
~Dari

<table style='border:2px inset;font-size:medium;' cellpadding="5">
<tr>
<td border='0' bgcolor='#EEEEE0' >
<table border="0">
<tr>
<td width="260">
<!--REP_START-->
<a
href='files/New_Text_Document.txt'>New_Text_Document.txt</a><br />
<a href='files/clonelink.gif'>clonelink.gif</a><br
/>
<a href='files/clonelink2.gif'>clonelink2.gif</a><br
/>
<!--REP_END-->
</td>
<td border='0' width="100" align="right">
<!--COM_START-->
<span style="cursor:hand"
onclick="window.open('files/comments/New_Text_Document.txt.html',
'NewWindow',
'height=400,width=500,scollbar=yes,toolbar=no,menu bar=no,resizable=yes');"><
a>comments</a></span><br />
<span style="cursor:hand"
onclick="window.open('files/comments/clonelink.gif.html', 'NewWindow',
'height=400,width=500,scollbar=yes,toolbar=no,menu bar=no,resizable=yes');"><
a>comments</a></span><br />
<span style="cursor:hand"
onclick="window.open('files/comments/clonelink2.gif.html', 'NewWindow',
'height=400,width=500,scollbar=yes,toolbar=no,menu bar=no,resizable=yes');"><
a>comments</a></span><br />
<!--COM_END-->
</td>
</tr>
</table>
</td>
</tr>
</table>
Jul 23 '05 #1
4 7015
"darius" <da************@yahoo.com> wrote in message
news:cd**********@news.Stanford.EDU...
Hello,

I seem to be having trouble with a rather simple problem. I am opening a new window with the window.open command, and even though I set scrollbar=yes, I can't seem to get the window to display a vertical scrollbar when the text
exceeds the height of the window i just openned (on a side note, ideally I
would like to just have a vertical scrollbar).

My code follows. Thank you,
~Dari

<table style='border:2px inset;font-size:medium;' cellpadding="5">
<tr>
<td border='0' bgcolor='#EEEEE0' >
<table border="0">
<tr>
<td width="260">
<!--REP_START-->
<a
href='files/New_Text_Document.txt'>New_Text_Document.txt</a><br />
<a href='files/clonelink.gif'>clonelink.gif</a><br
/>
<a href='files/clonelink2.gif'>clonelink2.gif</a><br />
<!--REP_END-->
</td>
<td border='0' width="100" align="right">
<!--COM_START-->
<span style="cursor:hand"
onclick="window.open('files/comments/New_Text_Document.txt.html',
'NewWindow',
'height=400,width=500,scollbar=yes,toolbar=no,menu bar=no,resizable=yes');">< a>comments</a></span><br />
<span style="cursor:hand"
onclick="window.open('files/comments/clonelink.gif.html', 'NewWindow',
'height=400,width=500,scollbar=yes,toolbar=no,menu bar=no,resizable=yes');">< a>comments</a></span><br />
<span style="cursor:hand"
onclick="window.open('files/comments/clonelink2.gif.html', 'NewWindow',
'height=400,width=500,scollbar=yes,toolbar=no,menu bar=no,resizable=yes');">< a>comments</a></span><br />
<!--COM_END-->
</td>
</tr>
</table>
</td>
</tr>
</table>


Try the plural: "scrollbars=yes"
Jul 23 '05 #2
> Try the plural: "scrollbars=yes"


Sorry, that didn't help.
Jul 23 '05 #3
darius wrote:
Try the plural: "scrollbars=yes"

Sorry, that didn't help.


"scrollbars" not "scollbars"

Besides, you should not need to declare them, they should appear when
needed by default.
Mick
Jul 23 '05 #4
darius wrote:
I seem to be having trouble with a rather simple problem. I am opening a new
window with the window.open command, and even though I set scrollbar=yes, I
can't seem to get the window to display a vertical scrollbar when the text
exceeds the height of the window i just openned (on a side note, ideally I
would like to just have a vertical scrollbar).
[...]

<table style='border:2px inset;font-size:medium;' cellpadding="5">
<tr>
<td border='0' bgcolor='#EEEEE0' >
<table border="0">
<tr>
<td width="260">
<!--REP_START-->
<a
href='files/New_Text_Document.txt'>New_Text_Document.txt</a><br />
<a href='files/clonelink.gif'>clonelink.gif</a><br
/>
<a href='files/clonelink2.gif'>clonelink2.gif</a><br
/>
<!--REP_END-->
</td>
<td border='0' width="100" align="right">
<!--COM_START-->
<span style="cursor:hand"
onclick="window.open('files/comments/New_Text_Document.txt.html',
'NewWindow',
'height=400,width=500,scollbar=yes,toolbar=no,menu bar=no,resizable=yes');"><
Should be scrollbars=yes. toolbar=no and menubar=no are the defaults,
thus they can be omitted (making the code easier legible).
a>comments</a></span><br />
<span style="cursor:hand"
onclick="window.open('files/comments/clonelink.gif.html', 'NewWindow',
'height=400,width=500,scollbar=yes,toolbar=no,menu bar=no,resizable=yes');"><
a>comments</a></span><br />
<span style="cursor:hand"
onclick="window.open('files/comments/clonelink2.gif.html', 'NewWindow',
'height=400,width=500,scollbar=yes,toolbar=no,menu bar=no,resizable=yes');"><
a>comments</a></span><br />
<!--COM_END-->
You may want to stop this nonsense of abusing span elements as links
and using "a" elements without both "href" and "id" attribute.

<http://validator.w3.org/>

And since the code shows a pattern, it would be wise to define a method:

function popup(sURI)
{
var w = window.open(
sURI,
'NewWindow',
'height=400,width=500,scrollbars=yes,resizable=yes ');
return !w;
}

<a href="files/comments/New_Text_Document.txt.html"
onclick="return popup(this.href);">comments</a><br/>
...
</td>
</tr>
</table>
</td>
</tr>
</table>


So let me get this straight: You have a table that contains *one* row that
contains *one* cell that contains *one* table that contains *one* row that
contains *two* cells?

You may want to install Brain 1.0 before coding. A table is a table is a
table. [psf 3.8] Never ever use tables for layout purposes alone. Use CSS
instead. And if you have lists, do not abuse the "br" element but use list
elements like this (remove line-wraps within attribute values for XHTML):

<div style="border:2px inset; background-color:#fff; color:#000;
font-size:medium;">
<ul style="width:260px; float:left; margin-right:5px; list-style:none">
<li><a ...>...</a></li>
<li>...</li>
</ul>

<ul style="width:100px; float:left; list-style:none">
<li style="text-align:right"><a ...>...</a></li>
<li style="text-align:right">...</li>
</ul>
</div>

(You may want to learn CSS and use a document-global stylesheet instead of
the "style" attributes.)
HTH

PointedEars
Jul 23 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Don Schneider | last post by:
I tried to setup a frameset which consists of 4 different subframes. Each of these subframes should fetch a different web page from the internet and display it completely (!). BUT: the vertical...
2
by: darius | last post by:
Hello, I seem to be having trouble with a rather simple problem. I am opening a new window with the window.open command, and even though I set scrollbar=yes, I can't seem to get the window to...
4
by: anna | last post by:
How to tell if a horizontal scrollbar is present? I only want to use scrollTo if horizontal scrollbar is present. window.scrollbars.visibility doesn't specify which scrollbar is present, so it...
15
by: H00ner | last post by:
Hello All Hope you can help Been pulling my hair out about a popup problem in ASP.NET. One of the forms i wrote requires the user to select a product from a list in a popup web form. the...
2
by: anx | last post by:
I've got a grid-managed frame, containing a column of Labels, and a corresponding column of Entry widgets. I'd like to be able to display dozens, or even hundreds of rows, and use a vertical...
4
by: Richard | last post by:
Hi, ich verwende folgenden Code, den ich im Internet gefunden habe, um Informationen auf Anfrage in Popupfenstern zu öffnen: // Script by Thomas Stich //...
5
by: ryanmhuc | last post by:
Is it possible to make the scrollbar appear on a page which is NOT A POPUP? On IE the scollbar space is always reserved or appears even if not used. In Firefox it does not exist unless the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.