将 zk 文本框更改为 zk int/decimal 框

发布于 2024-10-06 15:15:46 字数 191 浏览 5 评论 0原文

我在 java 文件中使用 zk 文本框。当满足特定条件时,我想设置一个约束,使文本框仅接受“数字或小数”。有没有办法设置约束等等?

我正在寻找的是这样的:

private Textbox tb = new Textbox(); 如果(条件){ tb.setConstraint("仅限数字"); }

谢谢, 索尼

I am using a zk textbox in a java file. When a particular condition meets, I would like to set a constraint such that the textbox accepts only "numbers or decimals". Is there a way to set a constraint or so ?

What I am looking for is something like this:

private Textbox tb = new Textbox();
if (condition) {
tb.setConstraint("numbers only");
}

Thanks,
Sony

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

俏︾媚 2024-10-13 15:15:46

Zk提供了intbox和decimalbox...你可以使用这些组件代替那些文本框

Zk provides intbox and decimalbox... u can use these components instead of those textbox

泅人 2024-10-13 15:15:46

据我所知,没有这样的限制。但是,您可以实现自己的。 ZK javadoc中有一些关于约束的信息

只是好奇,为什么不使用intbox或decimalbox ?

As far as I know, there is no such constraint. However, you could implement your own. There is some info about constraint in ZK javadoc

Just curious, why not use intbox or decimalbox?

长不大的小祸害 2024-10-13 15:15:46

您可以使用 intBox 找到 Zk,它会很适合您...

<intbox constraint="no negative,no empty"/>

有关更多详细信息,您可以找到 这里

You can find Zk with intBox which will work fine for you...

<intbox constraint="no negative,no empty"/>

For more details you can found here

少女的英雄梦 2024-10-13 15:15:46

ZK intbox 的问题是它会跳过前导零,例如,如果 v 有一种情况,我们只想输入数字,我们也必须保留前导零,例如 00230 ,在这种情况下,intbox 将丢弃前导零并返回230.

problem with ZK intbox is that it will skip the leading zeros , for example if v have a situation where we want to enter only number also also we have to keep leading zero for e.g 00230 , in this case intbox will discard leading zero and will return 230.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文