How can I remove a class that is defined to a table row element using EXT JS or plain Javascript. The class I want to remove is x-grid-row-selected Using tr.removeCls('x-grid-row-selected) gives me an error:

Uncaught TypeError: Object #<HTMLTableRowElement> has no method 'removeCls' 
有帮助吗?

解决方案

Ext provides a removeCls method but you need an instance of an Ext Element for it to work. HTMLElement does not have a removeCls method that is why you are getting the error. This should work:

Ext.fly(tr).removeCls('x-grid-row-selected')

其他提示

try like this

 $(document).ready(function(){
         $("tr").removeClass('x-grid-row-selected);
    });
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top