You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Allows you to pass an arbitrary option to the datatable widget. Separate the options by a comma if you pass more than one. Note that this may cause incompatibilities when the next version of BootsFaces is released. Use at own risk. <P>
221
+
* @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file.
* Allows you to pass an arbitrary option to the datatable widget. Separate the options by a comma if you pass more than one. Note that this may cause incompatibilities when the next version of BootsFaces is released. Use at own risk. <P>
229
+
* Usually this method is called internally by the JSF engine.
* Allows you to pass an arbitrary option to the datatable widget. Separate the options by a comma if you pass more than one. Note that this may cause incompatibilities when the next version of BootsFaces is released. Use at own risk. <P>
91
+
* @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file.
* Allows you to pass an arbitrary option to the datatable widget. Separate the options by a comma if you pass more than one. Note that this may cause incompatibilities when the next version of BootsFaces is released. Use at own risk. <P>
99
+
* Usually this method is called internally by the JSF engine.
Copy file name to clipboardExpand all lines: src/main/meta/META-INF/bootsfaces-b.taglib.xml
+24
Original file line number
Diff line number
Diff line change
@@ -4878,6 +4878,18 @@
4878
4878
<required>false</required>
4879
4879
<type>String</type>
4880
4880
</attribute>
4881
+
<attribute>
4882
+
<description><![CDATA[Allows you to pass an arbitrary option to the datatable widget. Separate the options by a comma if you pass more than one. Note that this may cause incompatibilities when the next version of BootsFaces is released. Use at own risk.]]></description>
4883
+
<name>custom-options</name>
4884
+
<required>false</required>
4885
+
<type>String</type>
4886
+
</attribute>
4887
+
<attribute>
4888
+
<description><![CDATA[Allows you to pass an arbitrary option to the datatable widget. Separate the options by a comma if you pass more than one. Note that this may cause incompatibilities when the next version of BootsFaces is released. Use at own risk.]]></description>
4889
+
<name>customOptions</name>
4890
+
<required>false</required>
4891
+
<type>String</type>
4892
+
</attribute>
4881
4893
<attribute>
4882
4894
<description><![CDATA[Boolean value to specify if the button is disabled.]]></description>
4883
4895
<name>disabled</name>
@@ -5390,6 +5402,18 @@
5390
5402
<required>false</required>
5391
5403
<type>java.lang.String</type>
5392
5404
</attribute>
5405
+
<attribute>
5406
+
<description><![CDATA[Allows you to pass an arbitrary option to the datatable widget. Separate the options by a comma if you pass more than one. Note that this may cause incompatibilities when the next version of BootsFaces is released. Use at own risk.]]></description>
5407
+
<name>custom-options</name>
5408
+
<required>false</required>
5409
+
<type>String</type>
5410
+
</attribute>
5411
+
<attribute>
5412
+
<description><![CDATA[Allows you to pass an arbitrary option to the datatable widget. Separate the options by a comma if you pass more than one. Note that this may cause incompatibilities when the next version of BootsFaces is released. Use at own risk.]]></description>
5413
+
<name>customOptions</name>
5414
+
<required>false</required>
5415
+
<type>String</type>
5416
+
</attribute>
5393
5417
<attribute>
5394
5418
<description><![CDATA[Specifies order-by more precisely. Is also used by the filtering methods. Legal values are 'string', 'date', 'numeric'.]]></description>
Copy file name to clipboardExpand all lines: xtext/BootsFaces.jsfdsl
+2
Original file line number
Diff line number
Diff line change
@@ -465,6 +465,7 @@ widget dataTable
465
465
ajax Boolean "Activates AJAX. The default value is false (no AJAX)."
466
466
border Boolean default "true" "If set, this will surround the table by a border. Defaults to true."
467
467
custom-lang-url String "Defines a custom lang file url for languages BootsFaces doesn't support out-of-the-box."
468
+
custom-options String "Allows you to pass an arbitrary option to the datatable widget. Separate the options by a comma if you pass more than one. Note that this may cause incompatibilities when the next version of BootsFaces is released. Use at own risk."
468
469
disabled Boolean "Boolean value to specify if the button is disabled."
469
470
fixed-header Boolean "Activates the fixed header plugin of the dataTable."
470
471
id inherited "Unique identifier of the component in a namingContainer."
@@ -508,6 +509,7 @@ widget dataTable
508
509
}
509
510
510
511
widget dataTableColumn {
512
+
custom-options String "Allows you to pass an arbitrary option to the datatable widget. Separate the options by a comma if you pass more than one. Note that this may cause incompatibilities when the next version of BootsFaces is released. Use at own risk."
511
513
label "Label in the header of the colum."
512
514
order "Is the table to be sorted by this column? Legal values are 'asc' and 'desc'."
513
515
order-by "Allows you to sort input field. Legal values are dom-text, dom-text-numeric, dom-select and dom-checkbox."
0 commit comments