diff --git a/_includes/js/repeater.html b/_includes/js/repeater.html index 303022087..2153bdbc7 100644 --- a/_includes/js/repeater.html +++ b/_includes/js/repeater.html @@ -559,6 +559,75 @@
Event Type | +Description | +
---|---|
disabled.fu.repeater | +Fires whenever the repeater is disabled. | +
enabled.fu.repeater | +Fires whenever the repeater is enabled. | +
filtered.fu.repeater | +Fires whenever the repeater is filtered via the dropdown. Passes a filter value argument. |
+
nextClicked.fu.repeater | +Fires whenever the repeater next page button is clicked. | +
pageChanged.fu.repeater | +Fires whenever the repeater page is changed via primary or secondary paging. NOTE: if the paged via
+ primary paging, an array is passed back as a parameter, containing the value and
+ data , respectively. If secondary paging causes the change, only a value is passed as
+ an argument.
+ |
+
pageSizeChanged.fu.repeater | +Fires whenever the repeater page size is changed. Passes a value argument. |
+
previousClicked.fu.repeater | +Fires whenever the repeater previous page button is clicked. | +
rendered.fu.repeater | +Fires whenever the repeater has rendered data returned from the dataSource. Passses an object containing
+ data , options , and renderOptions . |
+
resized.fu.repeater | +Fires whenever the repeater is resized. | +
searchChanged.fu.repeater | +Fires whenever the repeater search control is used. | +
viewChanged.fu.repeater | +Fires whenever the repeater view is switched. Passes the currentView as an argument. |
+
All repeater events are fired on the .repeater
classed element.