This is the way i code for the menu
with(milonic=new menuname("mnLeave")){
style=menuStyle;
aI("text=Leave Calendar;url=index.php?section=1");
aI("text=Staffs Approval;url=index.php?section=2");
aI("text=Leave Summary;url=index.php?section=3");
}
because of the extra = in url property, I always get an error "Invalid property value"
Anyway i can solve this problem and does anybody there face this problem before. Thanks and urgently need for your greatly help and advice.
Regards,
Alvin
invalid property problem..
Hi
try to find out, if it works, when you terminate the url by a semicolon ( ; ).
Michael
try to find out, if it works, when you terminate the url by a semicolon ( ; ).
Code: Select all
aI("text=Leave Calendar;url=index.php?section=1;");
aI("text=Staffs Approval;url=index.php?section=2;");
aI("text=Leave Summary;url=index.php?section=3;");
Michael