我想知道如何为组件输入文本bootsfaces添加掩码
答案 0 :(得分:0)
您是否正在寻找inputSecret? https://showcase.bootsfaces.net/forms/inputSecret.jsf
答案 1 :(得分:0)
2017年5月23日更新:Jasper de Vries向BootsFaces提供了拉取请求,以实现输入掩码。因此该功能将成为BootsFaces 1.1.1+(即1.1.2或更高版本)的一部分。
原始回答: 我们还没有实现此功能(请参阅https://github.com/TheCoder4eu/BootsFaces-OSP/issues/267)。但我确定您可以使用i nput mask of Robin Herbots添加它。
如果您希望BootsFaces团队确定该功能的优先顺序,请在our bug tracker上告诉我们。谢谢!
答案 2 :(得分:0)
预定义面膜的示例:
<b:inputText value="#{bean.val}" mask="numeric" label="numeric input"/>
<b:inputText value="#{bean.val2}" mask="alphabetical" label="alphabetical input"/>
<b:inputText value="#{bean.val3}" mask="alphanumeric" label="alphanumeric input" />