Skip to content

Lets you visually navigate and search through tree-like object structures.

License

Notifications You must be signed in to change notification settings

JaySunSyn/cosmoz-treenode-navigator

 
 

Repository files navigation

cosmoz-treenode-navigator

cosmoz-treenode-navigator is a Polymer component that lets you navigate and search through hierarchically structured data-nodes and select one of them.

It needs an object structure which looks for example like this in JSON:

{
	"1": {
		"name": "Root",
		"children": {
			"7": {
				"name": "child seven",
				"children": {
					
				}
			},
			"8": {
				"name": "child eight",
				"children": {
					"9": {
						"name": "child nine",
						"children": {
							
						}
					}
				}
			}
		}
	}
}

The property names "name" and "children" are configurable in the component through the setting of "childProperty" and "comparisonProperty".

About

Lets you visually navigate and search through tree-like object structures.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 52.9%
  • HTML 47.1%