Topic: Changing Node Height

I could not figure out how to control the row height of the tree with the json object.

A working solution that I found was to change the line-height property in the .mif-tree-wrapper class in the CSS file.

What exactly is the Mif.Tree.options.height property used for?

Re: Changing Node Height

I answered my own question.

The CSS line-height property is for the "Display" of the tree.  (how the browser will draw the tree)

The Mif.Tree.options.height value is so that your Javascript code understands how tall the nodes are.

Make sure these two numbers match when setting up your tree, or the node selection/highlighting will get all jacked.

Re: Changing Node Height

thx for answer)