与黑莓应用程序开发相关
我有一个编辑字段,我想将其用于数值。
谁能告诉我如何在编辑字段中仅输入数字值,我想将其用于电话号码。我使用了 BasicEditField.numeric
但没有用。
我还想以正确的格式验证它......ddd-ddd-dddd。
I have an edit field and I want to use it for numeric value.
Can anyone tell me how to enter only numeric value in edit field, I want to use it for phone number. I used BasicEditField.numeric
but didn't work.
I also want to validate it in proper format....ddd-ddd-dddd.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过使用
FILTER_PHONE
来使用BasicEditField
?示例可以在此处找到。我从未见过任何可以在 BB API 中用于验证所需的内容。 BB API 不支持正则表达式,因此您很可能必须编写自己的验证器。
Have you tried the
BasicEditField
withFILTER_PHONE
? Example can be found here.I've never seen anything you could use for validation you need in the BB API. RegExps are not supported in BB API, so you'll most likely have to write your own validator.