Hi All,
I am uisng paramQuery grid for results.
If you scroll the horizontal scroll bar in the grid output, you will see that there are 4 or 5 empty columns on the right hand side of the grid.
In the scroll bar event, I am trying to find the css and remove that particular css.
Code:
$('#gridDictationStatus .pq-grid-table').find('tr').not('.pq-row-hidden').find('td').each(function () {
if($(this).attr('style')!=undefined)
{
$(this).removeClass('pq-grid-cell');
}
});
But with this code, when i debug it is removing class for that particular <td>.
when i see the Html,i am able to see the css for that particulat <td>.
I want to know what I am doing wrong ?
Can we remove class for <td> thru jquery code?Is it possible?