Вопрос

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