sencha.user
7 Nov 2012, 6:06 AM
Hi,
I have a grid with one column and I need to add checkbox to it and do some operations with those column values.
Ext.define('AM.view.user.List' ,{
extend: 'Ext.grid.Panel',
alias: 'widget.userlist',
title: 'Topic:',
store: 'Users',
initComponent: function() {
this.columns = [
{header: 'Fields', dataIndex: 'Field'}],
this.callParent(arguments);
}
});
How do I add checkbox to the same column? Please help.
Thanks!
I have a grid with one column and I need to add checkbox to it and do some operations with those column values.
Ext.define('AM.view.user.List' ,{
extend: 'Ext.grid.Panel',
alias: 'widget.userlist',
title: 'Topic:',
store: 'Users',
initComponent: function() {
this.columns = [
{header: 'Fields', dataIndex: 'Field'}],
this.callParent(arguments);
}
});
How do I add checkbox to the same column? Please help.
Thanks!