Search found 10 matches

by pservedio
Fri May 16, 2008 1:09 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Need license agreement document.
Replies: 1
Views: 1970

Need license agreement document.

My company is requiring that it holds contract for all vendor products that we use. Can you point me to where i can get a contract or ULA (user license agreement) for this product? I've been using Milonic for several years.
by pservedio
Wed Mar 21, 2007 1:02 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Disabling menus
Replies: 1
Views: 2288

Disabling menus

In doing numerous searches, I can see how one disables a menu item using mm_changeItemProprty.

But I want to disable all menus in certain situations and there is no method apparently to disable an entire menu in a method. I looked all all menu level properties and there is no disable property ...
by pservedio
Thu Oct 19, 2006 12:50 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: To see the text of dynamic menu items programatically
Replies: 0
Views: 3799

To see the text of dynamic menu items programatically

I create several dynamic menus in a particular web page, and I would like to view the contents of the items in the menu programatically - basically I would like to verify the text label of each menu item.

So, how do I use _mi[ ] to view the menu item text, or is there another way?

var itemCount ...
by pservedio
Tue Oct 03, 2006 1:16 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Sortable table header & mouseover popup: is this possibl
Replies: 4
Views: 4905

Smokin! It works! Thanks...

For anyone else out there, this what I had to do, nothing too tricky:

1. Define a menu in menu_data.js for your column header, put in one fake item:

with(milonic = new menuname("Phase")){
alwaysvisible=0;
style = subStyle;
aI("Phases...;url=");
}

2. Carefully ...
by pservedio
Sat Sep 30, 2006 1:44 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Sortable table header & mouseover popup: is this possibl
Replies: 4
Views: 4905

Well, I've been trying to get this to work. First hurdle was the sorttable.js function ts_makeSortable. It hijacks the HREF for the column header, so I had to modify it in order to add in a mouseover function:
function ts_makeSortable(table) {
...
for (var i=0;i<firstRow.cells.length;i++) {
var ...
by pservedio
Wed Sep 27, 2006 9:37 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Sortable table header & mouseover popup: is this possibl
Replies: 4
Views: 4905

Sortable table header & mouseover popup: is this possibl

I have a page containing a table with 7 columns, and currently each on of those columns is sortable, using milonic's class=sortable css strategy. Works great.

But I would also like to have the page display a milonic menu when the mouse is placed over any the 7 column text strings.

The menu ...
by pservedio
Mon Sep 25, 2006 5:35 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Can't find a menu
Replies: 6
Views: 5392

Ruth, thanks for your help...I assume "Andy" is Senor Milonic and will email him....

...Oops, private messaging has been disabled on this board, how can I contact him?
by pservedio
Sat Sep 23, 2006 7:22 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Can't find a menu
Replies: 6
Views: 5392

Update:

If one comments out this line in mm_menueditapi.js. mm_createNewMenus():

//if(_wid)n.width=_excMD(_wid)

The example works. That being said, it's never a good idea to muck with 3rd party software. And of course, you can't set the width property.

Can we get a working version of this ...
by pservedio
Sat Sep 23, 2006 7:02 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Can't find a menu
Replies: 6
Views: 5392

This is incredibly frustrating...OK, so I try two other strategies, as seen in your post and on the forum:

#1: I try to change the name of a menu item, based on a function written by "Kevin" I think:

function mm_changeItemProperty(menuName, itemName, codeRef, newValue, updateDisplay)
{
menuName ...
by pservedio
Sat Sep 23, 2006 2:40 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Can't find a menu
Replies: 6
Views: 5392

Can't find a menu

I'm trying to dynamically update the text of a menu (not its items, doesn't have any...yet).

Based upon code from the forum I added this javascript function:

function mm_changeMenuProperty(menuName, propertyRef, newValue)
{
var menuNum = getMenuByName(menuName);
if (menuNum == null) {
alert ...