Dojo Datagrid 可编辑单元格,约束不起作用
我正在尝试创建一个具有可编辑单元格的数据网格。 当我对可编辑单元格使用 dijit 时,我尝试在布局的“widgetProps”属性中设置约束,如下所示:
widgetProps: {
required: true,
constraints: {
min: 0,
max: 100,
places: '0,2'
}
}
这里 required: true 按预期工作,而 constraints em> 属性根本不起作用。
这里的一个例子: http://jsfiddle.net/LjVmJ/ 我尝试在其中使用约束一个 NumberTextBox 和一个 DateTextBox。
Dojo 中的错误还是我错过了什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这解决了问题。
Which solves the problem.
我找到了这个问题的“肮脏”解决方案:
首先声明我自己的 NumberTextBox 并具有所需的约束:
然后我将它用作网格结构中的 widgetClass:
这是目前的解决方法(完整示例如下:http://jsfiddle.net/LjVmJ/2/),
I found a ‘dirty’ solution to this issue:
First declare my own NumberTextBox with the required constraints:
Then I’m using it as the widgetClass in the grid structure:
This is a workaround for now (full example here: http://jsfiddle.net/LjVmJ/2/),