raj zalavadia
unread,May 15, 2012, 1:46:28 AM5/15/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Flexigrid for jQuery
Hi everyone,
I want to change my col model and reload flexigrid.
I did like following
var tempColStructure = [{ display: 'First Name', name: 'FirstName',
width: 110, sortable: true, align: 'left' },
{ display: 'Middle Name', name: 'MiddleName', width: 110,
sortable: true, align: 'left' }];
var newurl = 'xyz'
usersGrid.flexOptions({ url: newurl ,
colModel: tempColStructure,
sortname: 'Id',
sortorder: 'des',
page: '1',
rp: '10' }).flexReload();
but its not working......data refreshed but column structure was not
refreshed.
Any solution for that.....?