I have two grid views containing 12 and 24 rows resp. Each row contains radiobutton list(Yes/No). Below both the grids, there is one more radio button list. In first grid, all radio buttons are by default “Yes”. If any one selects know, the radio button below the grids should become disabled with selection =”No”. In second grid the radio buttons are by default “No”. If any one selects Yes, the radio button below the grid should become disabled with selected value=”No”. All these work should be done through javascript…
How can I do so…???
First user clicked a button at first grid. Then you capture it and changed the second grid to false. Use EventListener. I used
checkboxfor this job. Because you cant set more than 1 radio button checked at same time in same form.And a jQuery function
You can find this example at this link