5098 Posts in 1518 Topics by 1115 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1144 Views |
-
how to force the reload of the cms admin panel?

20 July 2010 at 2:27am
How to reload the damin panel forcing it with a function? I know there is LeftAndMain::ForceReload(); , but i don't know where to put it. I need to refresh the admin panel after a getCMSAction is done... somthing like this does not work:
function getCMSActions(){
$actions = parent::getCMSActions();
$action_1 = new FormAction(
"doaction1",
"Perform action1"
);
$actions->push($action_1);
$action_2 = new FormAction(
"doaction2",
"Perform action2"
);
$actions->push($action_2);
LeftAndMain::ForceReload();
return $actions;
}where do i put it?
-
Re: how to force the reload of the cms admin panel?

19 April 2011 at 11:54am
Hi
I also have this problem, did you find a solution, or does anyone else know how?
Thanks
| 1144 Views | ||
|
Page:
1
|
Go to Top |

