回复 5楼centsc的帖子
1.你能将出问题的页面发给我么?我再帮你看看。
2.你的意思是将Checkbox改成radiobutton的样式,并实现单选?我需要验证下才能回复。
3.可以实现。设置style,将incbutton和decbutton的visibility设置为hidden。
参考示例:
4.输入控件带内置的校验,可以消除无效的输入,如一个数字输入框中的字母数字混合字符。可以用自定义的式样和错误信息来直观地提醒用户。
这些输入控件包含:InputDate, InputMask, InputNumber,InputText。
拿InputNumber举例,输入负值就显示负数的样式。
关键代码参考:- <style type="text/css" rel="stylesheet">
- .negative {
- background: yellow;
- color: red !important;
- }
- </style>
复制代码
在线示例:
http://demo.gcpowertools.com.cn/ ... mple=Negative class |