2011-02-07 86 views

回答

5

這是一種變通方法我和弟弟來到了,只需將在beforeSelectRow事件下面的代碼:

beforeSelectRow: function(rowid, e) { 
     if ($(this).getGridParam('selrow') == rowid) { 
     return false; 
     } else { 
     return true; 
     } 
    } 
+0

這偉大的工作,thanx! – Dylan 2011-02-07 12:49:22

7

的最佳解決方案,一點點更緊湊的版本:

beforeSelectRow: function(rowid, e) { 
     return ($(this).getGridParam('selrow') != rowid); 
    }