That works great! The event must be handled somehow by FiC, because I also tried calling from an external .js, and it did not work. But it works fine from the onclick.
event is a standard parameter to HTML DOM Event handlers - just leave it as is, FoxInCloud will handle it
HTH,
I am not clear on the "event" param, what should it be?
Here is what awProcess::wFormHTML_cHeader_cMenu() does:
Where parm1, parm2 are VFP litterals
HTH,
I got closer with this:
FoxInCloud.MethExec ( 'dofromjs', 'welcome_scx' , 'dofromjs', 'nameset.scx' ) //4th param is param to pass to method
where dofromjs is a method on the master form welcome that says:
thisform.form(xxxx)
But then I get a messag cannot display modal form.
I put in my own menus. For master forms I have the menu choices going to the new form, but for child forms I tried to do something like this from your menu:
<li onclick="javascript:IntuiCat.FormDisplay(event, 'nameset.scx', true);"><a href=""> Donors </a></li>
Can you please advise?