Code: Select all
initForm = function () {
this.lrexec(
function () {
this.q_setProperties({
"System.Menus.MOR3501_Edit.Hidden": "True"
});
},
null
);
}
Code: Select all
initForm = function () {
this.lrexec(
function () {
this.q_setProperties({
"System.Menus.MOR3501_Edit.Hidden": "True"
});
},
null
);
}
Code: Select all
hideMenuItem = function ()
{
lrexec(
function ()
{
this.q_setProperty("System.Menus.HRA_MENU.Hidden", "Y");
this.console("Menu item HRA_MENU set to HIDDEN");
}
);
};
showMenuItem = function ()
{
lrexec(
function ()
{
this.q_setProperty("System.Menus.HRA_MENU.Hidden", "N");
this.console("Menu item HRA_MENU set to VISIBLE");
}
);
}