我想根據其中一個單元格值禁用dojo dgrid中的某些行。我已經使用了Dgrid的選擇器和選擇混合。禁用Dojo中的一行dgrid
我在特定的單元格上使用了renderCell函數,並且能夠獲取單元格值。如果單元格值爲「somedata」,那麼我想禁用該行,即複選框選擇器。請告訴我如何實現此目的?
renderCell : function(object, value, node, options) {
if(value == "somedata") {
//want to disable that row in the grid
}
你能提供更多關於你想要「禁用」該行的細節嗎? – BuffaloBuffalo
我想禁用該行的複選框。所以該行不能被檢查。我已經使用Dgrid的選擇器和選擇混合在grid.selectorType是「複選框」 – SSayee