This question is locked. New answers and comments are not allowed.
I have a grid with "x" number of bound and template columns.
I want to add a title attribute for each data bound row to equal information about that row that is not visible (i.e. Program Length might show in a tooltip over the name of a program). I tried to add it via the onRowDataBoundEvent, which doesn't appear to fire. I am guessing it's because I pass the model back to the view from the server side?!?
What options do I have? Thanks!
I want to add a title attribute for each data bound row to equal information about that row that is not visible (i.e. Program Length might show in a tooltip over the name of a program). I tried to add it via the onRowDataBoundEvent, which doesn't appear to fire. I am guessing it's because I pass the model back to the view from the server side?!?
<script type="text/javascript"> function onRowDataBound(e) { $('.ProgramColumn').attr('title', e.dataItem.ProgramLength); }</script>What options do I have? Thanks!