|
Posted by David Dorward on 10/26/05 01:35
sharon669@hotmail.com wrote:
> I have some problems using DIALOG window (Window.open(...))
window.open (all lower case) opens a new browser window, not a "dialog". (As
an aside, new windows are, almost universally, a bad idea).
> Can I open this dialog on different session ?
A session is a server concept. All the client knows about is whatever
session token you ask it to pass back to the server. Don't ask it to send
that token back for the page loaded in the new window. How you do that
depends how you are passing the token about.
> When I open the content of a combo box
In Windows programming terms, a combobox is a drop down menu combined with a
text input. There is no simple way to get such a thing on the WWW (although
you can fake it with JavaScript). Perhaps you mean a select element? Such
things are often rendered as drop down menus.
> the list wont get out of the window, but create scroll bar on the right ,
No, they generally don't.
> is there any way to make the list displayed without the scroll bar ?
> (without imitating the displayed items ...)
Put it in a window of reasonable size.
--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is
Navigation:
[Reply to this message]
|