Home  >  Article  >  Web Front-end  >  Tutorial examples on how to implement the jstree radio selection function

Tutorial examples on how to implement the jstree radio selection function

零下一度
零下一度Original
2017-06-17 17:26:451995browse

This article mainly introduces the implementation method of jstree radio selection function. Friends who need it can refer to it

When choosing a department, because everyone There is only one department, so single selection is required.

Add "multiple" in the core of jstree: false,

Note that it is written in core

as shown below


'plugins': ["wholerow", "checkbox", "types"],
'core': {
    "multiple": false,//单选
    "themes": {
       "responsive": false
    },

If you only select child nodes, there is no problem in this implementation.

Tutorial examples on how to implement the jstree radio selection function

Note: If you select the parent node, the following child nodes will still be selected

Tutorial examples on how to implement the jstree radio selection function

If you want to select not all child nodes when selecting the parent node, you need to add the following sentence


"checkbox": {
        "three_state": false
      },

Note that this is at the same level as plugins and core


'plugins': ["wholerow", "checkbox", "types"],
'checkbox': {
     "three_state": false//父子级不关联选中
 },
'core': {
   "multiple": false,//单选
   "themes": {
   "responsive": false
 },

The effect is as follows:

Tutorial examples on how to implement the jstree radio selection function

You can see that the parent node is selected and the child node is no longer selected.

The above is the detailed content of Tutorial examples on how to implement the jstree radio selection function. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn