Rank: Member Groups: Member
Joined: 10/1/2007 Posts: 17
|
I have 2 callback panels setup on my page, one trigger (a dropdown).
Callbackpanel1 has the trigger tied to it, with a group name of Totals. Callbackpanel2 has no triggers tied to it, but the group name is Totals.
I have code in both CBP1 and CBP2 execute. CBP1 works as expected, but CBP2 never executes the code (never hits the breakpoint in the code).
What am I missing?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
I believe that behavior is by design. CBP2's Execute will never be triggered because it's not CPB2 that is "executing". It's CBP1 that's "executing". The purpose of GroupName is to have both CallbackPanel to be updated at the same time --- and it does no more than that. For example, one button click to update two Labels in two different CallbackPanels.
Thanks
|
Rank: Member Groups: Member
Joined: 10/1/2007 Posts: 17
|
Ahh I see, well back to the drawing boards.
|