Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions entries/filterable.xml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,20 @@ $.mobile.filterable.prototype.options.filterCallback = function( index, searchVa
</option>
</options>
<events>
<event name="beforefilter">
<desc>Triggered before the widget begins filtering the list of children.</desc>
<argument name="event" type="Event"/>
</event>
<xi:include href="../includes/widget-event-create.xml" xmlns:xi="http://www.w3.org/2003/XInclude"/>
<event name="filter">
<desc>Triggered after the widget has performed the filtering on the list of children. The <code>ui</code> parameter contains the list of children that was processed.</desc>
<argument name="event" type="Event"/>
<argument name="ui" type="Object">
<property name="items" type="jQuery">
<desc>A jQuery collection object containing the items over which the filter has iterated.</desc>
</property>
</argument>
</event>
</events>
<methods>
<xi:include href="../includes/widget-method-destroy.xml" xmlns:xi="http://www.w3.org/2003/XInclude"/>
Expand Down