andrico
Posts: 12
|
| Posted: 01/10/2004, 11:09 AM |
|
I have various hyperlinks in a grid that pass parameter requirements to other records or grids. I would like the records or grid to open without a titlebar or menubar that IE and Netscape displays. Just a simple content window that is scrollable and can be resized. How can I do that? I have tried the open.window script on the html page but it does not work properly. Any help would be greatly appreciated.
_________________
Rico |
 |
 |
peterr
Posts: 5971
|
| Posted: 01/10/2004, 12:19 PM |
|
You can use Google for this: http://www.google.com/search?q=javascript+disable+menubar http://www.google.com/search?q=javascript+disable+titlebar
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com |
 |
 |
john
|
| Posted: 09/17/2004, 6:55 AM |
|
Just open it in a normal window. Who cares anyway?
|
|
|
 |
AnDrico Carter
|
| Posted: 09/17/2004, 7:15 AM |
|
Thanks John for your concern but I have resolved that issue long ago. Have a great day!
|
|
|
 |
yklee
|
| Posted: 10/13/2004, 7:31 AM |
|
how you solved? mind to tell me?
|
|
|
 |
rico
|
| Posted: 10/13/2004, 7:58 AM |
|
yklee,
More than happy to assist. The code that controls how the desired page opens should be within the hyperlink's code that you want to use not the opening page, as I was mislead to believe. Let's say you have a text link name 'yklee'. Normally the html code for that hyperlink would look like this, <a target="_blank" href="http://www.yklee.com">yklee</a>. Now to get this page to open without a titlebar, etc and control the window's dimensions, you just tweaked the above code and it should look like this, <a onclick="window.open('http://www.yklee.com', 'yklee', 'toolbar=no, directories=no, location=no, status=no, menubar=no, resizable=yes, scrollbars=yes, HEIGHT=400, WIDTH=550, left=80, top=50'); return false" target="_blank" href="http://www.yklee.com">yklee</a>. Change the 'Height' and 'Width' to your satisfaction.
Hopefully this helps
|
|
|
 |
Oper
Posts: 1195
|
| Posted: 10/13/2004, 12:18 PM |
|
To Open a window Frameless or choose what option for browser display you coudl you need to use: window.open.
For easy setup you could use this Generator:
http://www.globaldevelop.com/globaldevelop/genpopup/genpopupin.html
POPup Generator.
Let me know if worked
_________________
____________________________
http://www.7bz.com (Free CMS,CRM Developed in CCS)
http://www.PremiumWebTemplate.com
Affiliation Web Site Templates
Please do backup first |
 |
 |
marcwolf
Posts: 361
|
| Posted: 10/19/2004, 7:01 PM |
|
try using IFRAMES
They can be very useful when you just need a pop up of some kind and you can also do a lot with the interaction to the underlying page.
_________________
' Coding Coding Coding
Keep Those Keyboards Coding.
Raw Code!!!!!!!
|
 |
 |
|