You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Silverstripe 3.4
every time the whole site(CMS) is saved, a new "refresh-instance" is added.
$GridFieldConfig->addComponent(new GridFieldAjaxRefresh(60000, true));
should refresh every minute.
After each saving multiple refreshes are triggered. One for each saving.
E.g. 3 savings will lead into 4 refreshes each minute.
it also would be handy if the initial reloadGridTimeout() - function would be synced to minute-start
i have no idea; maybe something like:
/*setInterval(function() {
if ( new Date().getSeconds() === 0 ) reloadGridTimeout();
},1000);*/
The text was updated successfully, but these errors were encountered:
Silverstripe 3.4
every time the whole site(CMS) is saved, a new "refresh-instance" is added.
$GridFieldConfig->addComponent(new GridFieldAjaxRefresh(60000, true));
should refresh every minute.
After each saving multiple refreshes are triggered. One for each saving.
E.g. 3 savings will lead into 4 refreshes each minute.
it also would be handy if the initial reloadGridTimeout() - function would be synced to minute-start
i have no idea; maybe something like:
The text was updated successfully, but these errors were encountered: