I use a grouplist and grid which are linked. When i click an item in grouplist data is loaded in grid…I want to hide the grid when the grouplist is back to the initial state. what is the grouplist event for that.
what is the grouplist event for that.
onItemClick. You can use it in the following way:
$$("mylist").attachEvent("onItemClick",function(id){
if(this.item(id).$template=="Back"){
$$("mygrid").hide();
}
})