silverstripe / gridfieldajaxrefresh
Adds the ability to either automatically or manually refresh a SilverStripe GridField
Installs: 68 261
Dependents: 0
Suggesters: 0
Security: 0
Stars: 11
Watchers: 12
Forks: 7
Open Issues: 2
Language:JavaScript
Type:silverstripe-module
Requires
- silverstripe/framework: ^3.0
This package is auto-updated.
Last update: 2024-07-10 21:54:52 UTC
README
GridFieldAjaxRefresh
Adds the ability to either automatically or manually refresh a SilverStripe GridField
Requirements
- SilverStripe 3.x
Installation
- Download the module from here https://github.com/silverstripe-labs/silverstripe-gridfieldajaxrefresh
- Extract the downloaded archive into your site root so that the destination folder is called gridfieldajaxrefresh
- Run dev/build?flush=all
Usage
To enable the refresh, add the component to the GridField. The parameters control the delay between automatic refreshing and whether or not to use automatic or manual refreshing. Choosing manual refreshing creates a button to trigger the refresh. Automatic refreshing hides the refresh button and triggers the refresh at a specific interval.
$gridFieldConfig = GridFieldConfig::create()->addComponents( new GridFieldAjaxRefresh(5000,true) );