Posts

Showing posts with the label GridView

Select gridview row using Javascript

Image
I want to select particular row of gridview with using UpdatePanel or postback For that I prefer javascript , Javascript Code :      <script type="text/javascript">       /*Script For Highlighting particlar row */         function HighlightRow(chkB) {             var IsChecked = chkB.checked;             if (IsChecked) {                 chkB.parentElement.parentElement.style.backgroundColor = '#F5D0A9';                 chkB.parentElement.parentElement.style.color = 'white';                 // chkB.parentElement.cell[7].disabled = true;    ...