We use listgrid and it works it perfect.
Please suggest me that how to auto expand columns in listgrid.
Thanks.
Please suggest me that how to auto expand columns in listgrid.
Thanks.
isc.ListGrid.create({ ID: 'lstEmployees', dataSource: 'dsEmployees', width:500, autoFitWidthApproach: 'both', fields: [ {title: 'Last Name', name:'lastName', autoFitWidth:true}, {title: 'First Name', name:'firstName'} ] });
Comment