[eluser]anakreon[/eluser]
I do not want to change the initilization of flexgrid.
Nor can I have a server side script generate the code.
What I need is after the grid is created and initilized,
when a user clicks some links, change the parameters flexgrid
sends to the server and reload the data.
In pseudocode would be:
function onUserClick(id) {
$('#flexgrid_table').params({category_id: id});
$('#flexgrid_table').reloadData();
}
Is it possible to alter the parameters *after* the grid is created?
Is there a function which would force the component to reload it's data (like the refresh button
the component displayes)?