I am experiencing an issue with a .NET updatepanel that is updating at inappropriate times.
My setup involves utilizing both .NET Ajax and Twitter Bootstrap Javascript. There are two update panels on the page, each having ChildrenAsTriggers set to false and UpdateMode set to conditional:
PANEL 1:
Your content code here...
The first panel is populated during Page_Load but may require updates if a user adds a new item.
Clicking on a div within this update panel should trigger an update in the second update panel on the page (Please note: The panels are not nested).
PANEL 2:
Your content code here...
To achieve this functionality, I have added the following JavaScript click event to the DIV in the first update panel within document.ready:
Your JavaScript code here...
However, when this JavaScript runs, it updates both panels simultaneously instead of just the second panel. Any assistance would be greatly appreciated as this issue is becoming quite frustrating.