Datagrid help! need client side method!
-
Hi All, I have a custom datagrid with two checkbox controls in it. When checkboxA is checked then if checkboxB is checked, it is unchecked and vice versa. (not like a radio button since if checkboxA is unchecked then nothing happens to checkboxB). But I would like to implement this in client side...any help would be GREATLY appreciated! schoudhr@hotmail.com
-
Hi All, I have a custom datagrid with two checkbox controls in it. When checkboxA is checked then if checkboxB is checked, it is unchecked and vice versa. (not like a radio button since if checkboxA is unchecked then nothing happens to checkboxB). But I would like to implement this in client side...any help would be GREATLY appreciated! schoudhr@hotmail.com
Then you need the variable names in the html, and to write some javascript. Christian Graus - Microsoft MVP - C++
-
Hi All, I have a custom datagrid with two checkbox controls in it. When checkboxA is checked then if checkboxB is checked, it is unchecked and vice versa. (not like a radio button since if checkboxA is unchecked then nothing happens to checkboxB). But I would like to implement this in client side...any help would be GREATLY appreciated! schoudhr@hotmail.com
Hi, for that, you have to use javascript. First you can search a control with getElementID from javascript and then you can enable and disabled at client side. All the best Anil Joshi
-
Then you need the variable names in the html, and to write some javascript. Christian Graus - Microsoft MVP - C++
-
Hi, for that, you have to use javascript. First you can search a control with getElementID from javascript and then you can enable and disabled at client side. All the best Anil Joshi
-
I know how to do that already... its a pretty generic process the question is mainly how to access an elementID from a serverside datagrid
dgap wrote: the question is mainly how to access an elementID from a serverside datagrid Like I said, look at the resultant HTML. You can catch events like onitemdatabound to set the IDs if they aren't being set for you as you would like. Christian Graus - Microsoft MVP - C++