diff --git a/src/main/java/net/bootsfaces/demo/BarcodeBean.java b/src/main/java/net/bootsfaces/demo/BarcodeBean.java index 862cb88c..437597e2 100644 --- a/src/main/java/net/bootsfaces/demo/BarcodeBean.java +++ b/src/main/java/net/bootsfaces/demo/BarcodeBean.java @@ -31,8 +31,8 @@ public class BarcodeBean implements Serializable { private static final long serialVersionUID = -6810958868318611791L; private String code39 = "1234567890128"; - private String protocol = "http://"; - private String url = "angularfaces.net"; + private String protocol = "https://"; + private String url = "pdfviewer.net"; private String url2 = "http://www.bootsfaces.net"; private String emptyText=""; private String nonEmptyText="Hello World"; diff --git a/src/main/webapp/bootstrap/Slider2.xhtml b/src/main/webapp/bootstrap/Slider2.xhtml index be01c804..6805e0da 100644 --- a/src/main/webapp/bootstrap/Slider2.xhtml +++ b/src/main/webapp/bootstrap/Slider2.xhtml @@ -67,7 +67,39 @@

Options and Examples

Horizontal sliders width

-

You can use the span attribute to control the width, in terms of Bootstrap's grid columns:

+

By default, the slider is 210 pixels wide. You can use the span attribute to control the width, in terms of Bootstrap's grid columns, + if you override this setting with a CSS rule:

+ + EXAMPLE - Time slider + + + + + + + + + + + + + + + + + + + Markup:
+ + +
+
+
-

You can use more than one slider to get input for complex values, like the Time:

+

You can use more than one slider to get input for complex values, like the time:

EXAMPLE - Time slider diff --git a/src/main/webapp/forms/ColorPickerAttributes.xhtml b/src/main/webapp/forms/ColorPickerAttributes.xhtml index 57a9dfb8..79ab9236 100644 --- a/src/main/webapp/forms/ColorPickerAttributes.xhtml +++ b/src/main/webapp/forms/ColorPickerAttributes.xhtml @@ -45,7 +45,7 @@ autocomplete (none) - Controls browser autocomplete behavior. + Controls browser autocomplete behavior. Legal values: 'off', 'false', 'true', and 'on'. binding diff --git a/src/main/webapp/forms/DateTimePicker.xhtml b/src/main/webapp/forms/DateTimePicker.xhtml index 238989bb..817469a6 100644 --- a/src/main/webapp/forms/DateTimePicker.xhtml +++ b/src/main/webapp/forms/DateTimePicker.xhtml @@ -370,7 +370,7 @@

Reference section

- + Skinning diff --git a/src/main/webapp/forms/InputSecretAttributes.xhtml b/src/main/webapp/forms/InputSecretAttributes.xhtml index 40baf4e4..a33d103c 100644 --- a/src/main/webapp/forms/InputSecretAttributes.xhtml +++ b/src/main/webapp/forms/InputSecretAttributes.xhtml @@ -45,7 +45,7 @@ autocomplete (none) - Controls browser autocomplete behavior. + Controls browser autocomplete behavior. Legal values: 'off', 'false', 'true', and 'on'. binding diff --git a/src/main/webapp/forms/InputTextAttributes.xhtml b/src/main/webapp/forms/InputTextAttributes.xhtml index f8e94894..730f34a2 100644 --- a/src/main/webapp/forms/InputTextAttributes.xhtml +++ b/src/main/webapp/forms/InputTextAttributes.xhtml @@ -45,7 +45,7 @@ autocomplete (none) - Controls browser autocomplete behavior. + Controls browser autocomplete behavior. Legal values: 'off', 'false', 'true', and 'on'. binding diff --git a/src/main/webapp/forms/InputTextareaAttributes.xhtml b/src/main/webapp/forms/InputTextareaAttributes.xhtml index 0b88d0bf..ad241440 100644 --- a/src/main/webapp/forms/InputTextareaAttributes.xhtml +++ b/src/main/webapp/forms/InputTextareaAttributes.xhtml @@ -45,7 +45,7 @@ autocomplete (none) - Controls browser autocomplete behavior. + Controls browser autocomplete behavior. Legal values: 'off', 'false', 'true', and 'on'. binding diff --git a/src/main/webapp/forms/RadioButton.xhtml b/src/main/webapp/forms/RadioButton.xhtml index 58458e88..61968f3b 100644 --- a/src/main/webapp/forms/RadioButton.xhtml +++ b/src/main/webapp/forms/RadioButton.xhtml @@ -44,6 +44,7 @@ + @@ -62,6 +63,7 @@ + @@ -250,7 +252,7 @@

Reference section

- + Skinning
    diff --git a/src/main/webapp/forms/TouchSpin.xhtml b/src/main/webapp/forms/TouchSpin.xhtml index 6db758ce..3548703b 100644 --- a/src/main/webapp/forms/TouchSpin.xhtml +++ b/src/main/webapp/forms/TouchSpin.xhtml @@ -123,7 +123,7 @@

    Reference section

    - + Skinning diff --git a/src/main/webapp/forms/blockUI.xhtml b/src/main/webapp/forms/blockUI.xhtml index 9428e282..8d9e923a 100644 --- a/src/main/webapp/forms/blockUI.xhtml +++ b/src/main/webapp/forms/blockUI.xhtml @@ -27,7 +27,7 @@ also implements a new AJAX API that's a little simpler to use. Among other things, this includes a fairly opinionated BlockUI component. Our theory is you want to activate BlockUI with every AJAX request, - so you only have to configure it. Other than other frameworks + so you only have to configure it. Unlike other frameworks BootsFaces doesn't require you to activate BlockUI on every AJAX requests individually.

    Most likely you've already suffered from mysterious errors @@ -72,7 +72,7 @@ triggered by a BootsFaces component activates the waitcursor and prevents the user from doing further input until the request has been completed. This way, you get a fairly good protection against - accidential double-clicks.

    + accidental double-clicks.

    If you don't want to activate BlockUI generally, you can control it via an EL expression. Note that this expression is read when the page is rendered, and it's only read on non-AJAX requests.

    @@ -128,7 +128,7 @@ $.blockUI.defaults.css.borderRadius = '10px'; $.blockUI.defaults.overlayCSS.opacity = 0.5; $.blockUI.defaults.message = '
    Please hold the line
    '; - + </script> @@ -143,9 +143,9 @@

    AJAX, mouse events and BlockUI

    - If blockUI is active, every AJAX request triggers a - mouseOutEvent - . When the AJAX request has been processed and the BlockUI overlay + If blockUI is active, every AJAX request triggers + mouseOutEvent on the client. + When the AJAX request has been processed and the BlockUI overlay pane is hidden, a mouseOverEvent is triggered. Keep this in mind if you need to use the mouse events. @@ -212,16 +212,16 @@ $.blockUI.defaults to configure BootsFaces BlockUI, as decribed here. For - instance, these lines deactivate the gray-out-effect, and show the + instance, the code snippet below deactivates the gray-out-effect replaces it with the waitcursor of BootsFaces.

    @@ -240,7 +240,7 @@ BootsFaces doesn't trigger BlockUI on PrimeFaces components. You'll have to use the <p:blockUI /> - component of PrimeFaces. + component of PrimeFaces if you're using both frameworks in the same project.

    @@ -210,10 +210,10 @@ + update="@after" caption="Show number" immediate="true"/> + id="oneToTenId" styleClass="#{imageGallery.showNumber?'':'hidden'}" render-label="false" /> @@ -224,10 +224,10 @@
    diff --git a/src/main/webapp/forms/switch.xhtml b/src/main/webapp/forms/switch.xhtml index 1cb3d717..99170243 100644 --- a/src/main/webapp/forms/switch.xhtml +++ b/src/main/webapp/forms/switch.xhtml @@ -32,7 +32,7 @@ -