<SelectionModel>
<ext:CheckboxSelectionModel Visible="true" ID="UserCheck" runat="server" SelectedRecordID="Status">
<Listeners>
<BeforeRowSelect Fn="MyBeforeRowSelect" />
</Listeners>
</ext:CheckboxSelectionModel>
</SelectionModel>
JS
var MyBeforeRowSelect = function (SelectionModel, rowIndex, keepExisting, record) {
if (record.get('Status') != "W") {
return false;
}
else {
return true;
}
}
订阅专栏 解锁全文
3899

被折叠的 条评论
为什么被折叠?



