Rank: Member Groups: Member
Joined: 2/24/2008 Posts: 27
|
<eo:CallbackPanel ID="groupsContainerCallbackPanel" runat="server" Triggers="{ControlID:groupsTreeView;Parameter:}">
how can I handle many triggers in a callbackpanel, for example, handle 3 buttons more (onclick event)?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
You can just add more to it. It will be something like:
Triggers="{ControlID:groupsTreeView;Parameter:},{ControlID:Button1;Parameter:}"
The easiest way is to edit the CallbackPanel's Triggers property from the property window. That way you don't need to worry about how it is formatted for you in the .aspx page. The designer automatically does that for you.
Thanks
|