I want to swap out buttons in my flexigrid here is my code
$('#flex').flexOptions({
buttons : [
{name: 'Show Tagged', bclass: 'show tagged', onpress : control_buttons},
{separator: true},
{separator: true},
{name: 'All Tagged', bclass: 'show tagged', onpress : control_buttons},
{name: 'Single tagged', bclass: 'show tagged', onpress : control_buttons},
{separator: true}
]}).flexReload();
I thought this would do the trick but it's not working any idea what I might be doing wrong
thanks Mike