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
Right now, only one of the classes specified by the user is rendered: for example, if I have a b:inputText with label-col-sm="4" label-col-md="3" label-col-lg="2" the generated html contains this: <label class="bf-no-message has-success col-md-3 control-label" [...] >.
The issue is in the class net.bootsfaces.render.Responsive, method getResponsiveLabelClass: the strings for the col-xx classes should be combined in a StringBuilder.
The text was updated successfully, but these errors were encountered:
Right now, only one of the classes specified by the user is rendered: for example, if I have a
b:inputText
withlabel-col-sm="4" label-col-md="3" label-col-lg="2"
the generated html contains this:<label class="bf-no-message has-success col-md-3 control-label" [...] >
.The issue is in the class
net.bootsfaces.render.Responsive
, methodgetResponsiveLabelClass
: the strings for thecol-xx
classes should be combined in a StringBuilder.The text was updated successfully, but these errors were encountered: