hi all,
i have a jqgrid table and I'm trying to get the text "Love Seat" from the td that is identified by the attribute [aria-describedby="tab3-grid_137_t_wi.ItemName"].
The table looks like the following:
<tr id="171" class="ui-widget-content jqgrow ui-row-ltr" role="row" tabindex="-1">
<td aria-describedby="tab3-grid_137_t_wi.ItemName" title="Love Seat" style="text-align:center;" role="gridcell">Love Seat</td>
</tr>
The method I'm using is:
// this is ok.
row_id = $('#tab3-grid').getGridParam('selrow');
// this is not working.
alert( $('td[tab3-grid_'+row_id+'_t_wi.ItemName]').text() );
but it's not working. What am i doing wrong?