Questions tagged [checkboxtree]

Jquery Checkbox tree is a jquery plugin to have a hierarchical tree with checkboxes at each node.

Jquery Checkbox tree is a jquery plugin to have a hierarchical tree with checkboxes at each node. To download this plugin you can go here: https://code.google.com/archive/p/checkboxtree/

This project development has been suspended. In the future it will be replaced by this project: https://github.com/daredevel/jquery-tree

15 questions
4
votes
1 answer

Angular material tree checkbox with real example

I've seen almost all examples about how to work with angular material tree checkbox component. for example official example and this. these examples show us a string array structure as a data was bonded. but how can we transform a nested complex…
KoKo
  • 421
  • 1
  • 5
  • 21
1
vote
0 answers

Checkbox checking/unchecking not working in Checkbox Tree library

I am using CheckboxTree library. My component is rendering inside bootstrap modal. //My Component import React from "react"; import CheckboxTree from "react-checkbox-tree"; const nodes = [ { value: "mars", label: "Mars", children:…
ANKIT DHORELIYA
  • 95
  • 1
  • 1
  • 7
1
vote
0 answers

How can I do the tree checkbox list with Checkbox in ReactJS?

I used to create a tree structure with a checkbox from three breakdowns. However, when we select the upper unit in the structure I have created, it has to select all sub-units, but it is not possible in this structure. How can I do it in both…
1
vote
1 answer

JavaFX CheckboxTreeItem: unselectable leaves

I'm trying to set up a checkbox tree in JavaFX where the leaves are bound to their parents: they are selected when the parent is selected cannot be changed individually. I did it using a binding with the selectedProperty. It works just fine, but…
Howard
  • 13
  • 4
1
vote
1 answer

Does jquery checkbox tree support the ability to "expand until node" or "expand parents" when programatically calling "check"?

I am using the jquery checkboxtree plugin which works great and has good documentation and examples in the link above. I now have a situation where I want to programmatically check a node. This is supported using the following syntax: …
leora
  • 188,729
  • 360
  • 878
  • 1,366
1
vote
1 answer

Does jquery checkbox tree support the ability to programatically expand using class selectors instead of Id?

I am using the jquery checkboxtree plugin which works great. I have a situation where I want to programmatically expand certain nodes. I see that I can do by Id as in the example: $('#tabs-5-expand').click(function(){ …
leora
  • 188,729
  • 360
  • 878
  • 1,366
0
votes
0 answers

react-checkbox-tree does not keep color on nodes

Guys. I am recently using react-checkbox-tree. I would like to keep color stay on nodes when I hover or click the nodes. (background color) I see the color when I hover them, but when I click other buttons or move mouse away, the color is gone. Is…
0
votes
0 answers

I recently made changes to the 'Leak Code Filter' component, but after compiling, the changes do not appear on my local server

"I am working on a React project (version 17.0.2) using Create React App as my build tool. I recently made changes to the 'Leak Code Filter' component, but after compiling, the changes do not appear on my local server. I have tried clearing the…
0
votes
0 answers

How to style CheckBoxTreeItem and it's children

I have created two TreeView(side by side) and list of CheckBoxTreeItem are added to both TreeView. There is an use case with which I can move the content(text) from one TreeView to other by click of an button. But after moving the content it should…
Srikant
  • 55
  • 1
  • 9
0
votes
1 answer

React component renders before the data is successfully fetched from the API so it can't render TreeItem of MUI

I'm trying display tree data using MUI TreeView component. I have an object passed to the RenderTreeWithCheckboxes function. If I declare global my variable data and pass in function RenderTreeWithCheckboxes then my code works fine. But if I do…
Long Duc
  • 27
  • 4
0
votes
1 answer

CheckboxTree, if I activate them (checked), the tree also closes

The problem is with checkboxes, if I activate them (checked), the tree also closes. But I want it to stay open until I have selected all checkboxes. So when you click on the checkbox, it gets closed. $( 'input[type="checkbox"]' ).change( function…
Lesika
  • 15
  • 3
0
votes
1 answer

Super expression must either be null or a function when try to install CheckboxTree library

I have this code : import { CheckboxTree } from 'react-checkbox-tree'; The build successfully done. But in browser I get : Uncaught TypeError: Super expression must either be null or a function If I remove the import, the app is working fine. Can…
GPiter
  • 779
  • 1
  • 11
  • 24
0
votes
1 answer

Checkbox tree with Buttons in reactjs

I have a specific requirement to add a Checkbox tree having Action buttons on each node. As I am new to Reactjs, I tried certain options like react-sortable-tree and react-checkbox-tree, which solves either Action Button or Checkbox…
0
votes
2 answers

How to achieve tree view from JSON data using Angular 6

I want to design a checkbox tree structure using following data coming from Web API using Angular 6. How can I achieve it please help. [ { "id": 1, "parent_id": 0, "Fund_type":"A&P" }, { "id": 2, "parent_id": 1, …
0
votes
1 answer

What should I use instead of deprecated Tree widget in GWT?

I am developing a GWT app, where I should use checkbox tree. But every tutorial that i found is using widget.core.client.tree.Tree widget which has an option .setCheckable() which give as tree like checkbox. But that widget is deprecated. What else…
user6450105