jsTree可以使用radio检查吗
我知道 jsTree 有一个名为 jquery.tree.checkbox.js 的插件。 这使得树节点可以进行多重检查。
我只是想知道是否有一个插件可以raido检查树节点? 或者我如何修改 jquery.tree.checkbox.js 来实现这一点?
i know there is a plugin for jsTree named jquery.tree.checkbox.js.
that make the tree node multi checkable.
i just wondered if there is a plugin to raido check the tree node?
or how can i modify jquery.tree.checkbox.js to achieve that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
添加属性来完成
这可以简单地通过在树的配置中 。
这将导致无法选择多个条目。
This can simply be done by adding the attribute
Inside the configuration of the tree.
This will make it impossible to choose multiple entries.
@Asaf 的答案似乎不再适用于 2016 年的 3.3.1 版本。您现在需要在
core
上设置multiple
:@Asaf's answer seems to no longer work on version 3.3.1 in 2016. You now need to set
multiple
oncore
:设置
multiple:false
仍然允许级联,因此您也需要将其关闭。版本
3.3.3
Setting
multiple:false
will still allow cascading so you need to turn that off too.version
3.3.3
单选按钮选项还没有释放,所以你必须将复选框选项更改为单选。
参考这个http://jsfiddle.net/bwTrP/1/
The radio button option is still not released, so you have to change the chceckbox option as single select.
refer this http://jsfiddle.net/bwTrP/1/
使用 jsTree 版本 3.2.1 和复选框插件,可以模拟处理“更改”事件的单选按钮行为,如下所示:
JSFiddle: 使用复选框插件的 JSTree 单选按钮行为示例
Using jsTree version 3.2.1 with the checkbox plugin it is possible to emulate radiobutton behaviour handling the 'changed' event as follows:
JSFiddle: JSTree radiobutton behaviour example using checkbox plugin