我在ExtJS中看到了這個例子,但checkColumn
似乎沒有更新XML。該API也沒有那麼有用。我想要做的就是這樣的事情。當用戶點擊網格中的複選框時,它將發送一個AJAX請求。Extjs checkColumn
4
A
回答
0
您將要在check change事件中觸發ajax請求。或者,如果您嘗試在網格中使用CheckboxSelectionModel,請將監聽器放在rowselect上以發出ajax請求。
5
in extjs4你可以這樣做。還有就是「checkchange」事件,這樣你就可以有這樣的事情:
{
header: 'State',
dataIndex: 'STATE',
xtype: 'checkcolumn',
editor: {
xtype: 'checkbox',
cls: 'x-grid-checkheader-editor'
},
listeners: {
checkchange: function(column, recordIndex, checked) {
console.log(checked);
//or send a request
}
}
}
8
columns: [{
xtype: 'checkcolumn',
width: 30,
sortable: false,
id: 'check1',
dataIndex: 'check11',
editor: {
xtype: 'checkbox',
cls: 'x-grid-checkheader-editor'
},
listeners: {
checkchange: function (column, recordIndex, checked) {
alert(checked);
alert("hi");
}
}
}
]
爲我工作:)
0
如果你打算或想火支票上的ajax請求改變事件。我認爲這對你有幫助。
columns: [{
xtype: 'checkcolumn',
width: 30,
sortable: false,
id: 'check1',
dataIndex: 'check11',
editor: {
xtype: 'checkbox',
cls: 'x-grid-checkheader-editor'
},
listeners: {
checkchange: function (column, recordIndex, checked) {
Ext.Ajax.request({
url: 'abc.com/index.php',
scope: this,
params: { postData: postdata },
method: 'POST',
success: function (a) {
}
});
}
}
]
相關問題
- 1. Extjs 4 checkcolumn not visible
- 2. 如何在Extjs checkcolumn中獲得id?
- 3. 在EXTJS中禁用「全選」功能CheckColumn
- 4. checkcolumn validation
- 5. Extjs 3.4 checkchange監聽器無法工作在Checkcolumn上
- 6. ExtJS 4用複選框標題選擇多個CheckColumn複選框
- 7. Extjs 4.1 - 網格中checkcolumn中的CheckboxModel失敗?
- 8. 對某些行Extjs checkcolumn禁用,基於值
- 9. extjs4 grid checkcolumn
- 10. checkcolumn ext js
- 11. checkcolumn得到計數
- 12. EXtJS grid CheckColumn,單擊列後如何執行函數/檢查其狀態?
- 13. ExtJS checkcolumn grid - 選中左邊的列,取消選中右邊的列
- 14. 點擊checkcolumn後如何保存商店?
- 15. Extjs4,在網格渲染控制checkcolumn
- 16. CheckColumn從網格中選擇的值
- 17. Ayuda con extjs 4.2.2 soy nuevo en esto
- 18. checkcolumn全選;標題操作,選擇所有功能
- 19. 填充ExtJs列json
- 20. ExtJs Ext.grid.Panel訪問模型列
- 21. ExtJS:添加複選框列「即時」
- 22. 如何停止複選框默認爲在ExtJS的4.0
- 23. 通過ExtJs添加支票列表
- 24. Extjs將複選框添加到container.viewport
- 25. ExtJS 3.4.0 GridPanel條件禁用行
- 26. 如何在使用checkcolumn config時獲取所有選中的行
- 27. 將CheckColumn設置爲以編程方式檢查
- 28. 如何防止在ext treepanel中更改checkcolumn
- 29. 來自數據庫字段的checkcolumn工具提示
- 30. Extjs 3 to Extjs 4