I have a treeView with ShowAllCheckBox property to true, I need to bind a javascript function to each checkbox on their click event.
How to do this can any one suggest ?
|
|
I have a treeView with ShowAllCheckBox property to true, I need to bind a javascript function to each checkbox on their click event. How to do this can any one suggest ? |
|||
|
|
|
|
Hey Ruslan, Where do you put this script in the .aspx file? and how you can tell the TreeView to apply this script? |
||
|
|
|
You can't do it server side w/o re-parsing render output. TreeView does not use Controls collection and renders input elements directly. You'd have to resort to some form of java script as suggested by gk or traditionally:
|
||
|
|
|
|
Using Jquery, you can easily do it as follows
|
||
|
|