Skip to content

Docmument the uselessness of native change events on widgets (#63) #91

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions entries/autocomplete.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
</ul>
</longdesc>
<note id="functional-css"/>
<note id="native-change-warning"/>
<added>1.8</added>
<options>
<option name="appendTo" type="Selector" default="null" example-value='"#someElem"'>
Expand Down
1 change: 1 addition & 0 deletions entries/datepicker.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
</ul>
</longdesc>
<note id="functional-css"/>
<note id="native-change-warning"/>
<added>1.0</added>
<options>
<option name="altField" default='""' example-value='"#actualDate"'>
Expand Down
1 change: 1 addition & 0 deletions entries/spinner.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
</ul>
</longdesc>
<note id="functional-css"/>
<note id="native-change-warning"/>
<added>1.9</added>
<options>
<option name="culture" type="String" default="null" example-value='"fr"'>
Expand Down
3 changes: 3 additions & 0 deletions notes.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
<xsl:when test="@id = 'functional-css'">
This widget requires some functional CSS, otherwise it won't work. If you build a custom theme, use the widget's specific CSS file as a starting point.
</xsl:when>
<xsl:when test="@id = 'native-change-warning'">
This widget manipulates its element's value programmatically, therefore a native change may not be fired when the element's value changes.
</xsl:when>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>