Search found 6 matches

by Steel2k6
Wed Dec 07, 2005 10:39 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Show popup window with a JavaScript onClick call
Replies: 4
Views: 3733

Hi Andy,

thank you very much, this works great!
by Steel2k6
Tue Dec 06, 2005 9:53 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Show popup window with a JavaScript onClick call
Replies: 4
Views: 3733

For everybody who has the same problem and does not want to wait for the answer, this can be used as a workaround:

function initPopup( menuName )
{
setTimeout( "showPopup('" + menuName + "')", 1 );
}
function showPopup( menuName )
{
popup( menuName, 1 );
}

<a href='#' onClick='initPopup ...
by Steel2k6
Tue Dec 06, 2005 2:41 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Show popup window with a JavaScript onClick call
Replies: 4
Views: 3733

Milonic team, please help. I saw that this question has been asked a few days ago from another user:

viewtopic. ... ight=popup
by Steel2k6
Tue Dec 06, 2005 10:43 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Show popup window with a JavaScript onClick call
Replies: 4
Views: 3733

Show popup window with a JavaScript onClick call

Hi!

I would like to show a popup window when I click on a link. For some reason, this does not work. But it works when I call this function on a onMouseOver event for a link. Strange...

So, this works fine:
<a href='#' onMouseOver='popup( "workout",1 );' class='weekCalendarLink' id='entry_1_1'>9 ...
by Steel2k6
Wed Nov 16, 2005 10:34 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Creating a <div>-area inside the menu
Replies: 3
Views: 2496

Perfect

Ruth wrote:You can set the itemheight inside the aI string and you can set the menu to overflow=scroll which would make any item which has more content than its height scroll.

Ruth
Thank you, Ruth. This works great! :) I did not know about these menu properties.
by Steel2k6
Tue Nov 15, 2005 1:25 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Creating a <div>-area inside the menu
Replies: 3
Views: 2496

Creating a <div>-area inside the menu

Hi folks,

I would like to create a <div></div> area inside a menu item - I know this sounds strange, but I have to create a scrollable text inside a menu item.
So in the end it would look like

aI("text=<div style='height:200px;background-color:red;overflow:auto'>mytext</div>" );

But the menu will ...