Skip to content

Commit

Permalink
#487 added missing AJAX attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanrauh committed Aug 13, 2016
1 parent 9b6098e commit 7fdb859
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
42 changes: 42 additions & 0 deletions src/main/meta/META-INF/bootsfaces-b.taglib.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17348,6 +17348,12 @@
<required>false</required>
<type>java.lang.String</type>
</attribute>
<attribute>
<description><![CDATA[Whether the Button submits the form with AJAX.]]></description>
<name>ajax</name>
<required>false</required>
<type>java.lang.Boolean</type>
</attribute>
<attribute>
<description><![CDATA[Alternate textual description of the input element.]]></description>
<name>alt</name>
Expand Down Expand Up @@ -17720,12 +17726,30 @@
<required>false</required>
<type>java.lang.String</type>
</attribute>
<attribute>
<description><![CDATA[The onclick attribute.]]></description>
<name>onclick</name>
<required>false</required>
<type>java.lang.String</type>
</attribute>
<attribute>
<description><![CDATA[JavaScript to be executed when ajax completes.]]></description>
<name>oncomplete</name>
<required>false</required>
<type>java.lang.String</type>
</attribute>
<attribute>
<description><![CDATA[Client side callback to execute when input element is double clicked.]]></description>
<name>ondblclick</name>
<required>false</required>
<type>java.lang.String</type>
</attribute>
<attribute>
<description><![CDATA[JavaScript to be executed when ajax results on an error (including both network errors and Java exceptions).]]></description>
<name>onerror</name>
<required>false</required>
<type>java.lang.String</type>
</attribute>
<attribute>
<description><![CDATA[Client side callback to execute when input element receives focus.]]></description>
<name>onfocus</name>
Expand Down Expand Up @@ -17786,6 +17810,18 @@
<required>false</required>
<type>java.lang.String</type>
</attribute>
<attribute>
<description><![CDATA[JavaScript to be executed when ajax completes with success (i.e. there's neither a network error nor a Java exception).]]></description>
<name>onsuccess</name>
<required>false</required>
<type>java.lang.String</type>
</attribute>
<attribute>
<description><![CDATA[Comma or space separated list of ids or search expressions denoting which values are to be sent to the server.]]></description>
<name>process</name>
<required>false</required>
<type>java.lang.String</type>
</attribute>
<attribute>
<description><![CDATA[Flag indicating that this input element will prevent changes by the user.]]></description>
<name>readonly</name>
Expand Down Expand Up @@ -17948,6 +17984,12 @@
<required>false</required>
<type>java.lang.String</type>
</attribute>
<attribute>
<description><![CDATA[Component(s) to be updated with ajax.]]></description>
<name>update</name>
<required>false</required>
<type>java.lang.String</type>
</attribute>
<attribute>
<description><![CDATA[EL expression referring to the back-end bean attribute providing the value of the field.]]></description>
<name>value</name>
Expand Down
1 change: 1 addition & 0 deletions xtext/BootsFaces.jsfdsl
Original file line number Diff line number Diff line change
Expand Up @@ -1713,6 +1713,7 @@ widget switch
label-width Integer "Width of the center handle in pixels."
+tooltip
+responsive
+ajax
}


Expand Down

0 comments on commit 7fdb859

Please sign in to comment.