如何在 extjs 4 和 Ext.net 中获取子节点?
Ext.get(#{grdForms}.getView().getHeaderCell(0).childNodes[0])
如果选中所有复选框然后取消选择一行,则代码将取消选中标题检查。
function UncheckCheckHeader(control)
{
var grid=<%=grdForms.ClientID%>;
var hd =Ext.get(grid.getView().getHeaderCell(0).childNodes[0]);
var store = grid.store;
if(store.getCount()== control.selections.items.length)
{
if(!hd.hasClass('x-grid3-hd-checker-on'))
{
hd.addClass('x-grid3-hd-checker-on');
}
}
else
{
if(hd.hasClass('x-grid3-hd-checker-on'))
{
hd.removeClass('x-grid3-hd-checker-on');
}
}
}