Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 888 Bytes

File metadata and controls

23 lines (18 loc) · 888 Bytes

GridFieldAjaxRefresh

Adds the ability to either automatically or manually refresh a SilverStripe GridField

Requirements

  • SilverStripe 3.x

Installation

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)
);