I followed Rajib Ahmed's blog and implemented this and it works GREAT. Now that users are happy they want MORE. (They always want more. lol).
1. I am trying to implement "ShowAll" & "HideAll" button and I tried to follow his suggestion but No success. Can someone please help? I am working on a deadline. I would truly appreciated.
Thanks
1. I am trying to implement "ShowAll" & "HideAll" button and I tried to follow his suggestion but No success. Can someone please help? I am working on a deadline. I would truly appreciated.
Code:
function HideShowAll(divid) { try { var j = 0; for( j = 0; j < 10; j++) { var dataid = divid + j; HideShowPanel(dataid); } } catch(e) {} }
Thanks
Comment