Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1615
Webdatatree checkboxes
posted

I have bound a dataset to webdatatree at runtime and also have checkboxes visible and set to Bistate. First of all when I check a checkbox the CheckBoxSelectionChanged does not fire until after a postback. Secondly, after I select several checkboxes in the tree I press a button that causes a postback to run a report. In the button vb.net code I want to get the WebDataTree1.CheckedNodes.Count, but it is always 0 because the postback happens before this code is processed and the webdatatree checked boxes are not checked anymore. How do I get the checked nodes before the postback and/or keep the nodes checked after the postback?