I have a jqGrid treegrid and I want the leaf/node column to be inline editable. currently, what pops up in the input textbox when clicking the cell is similar to this:
<div class="tree-wrap tree-wrap-ltr" style="width: 18px;"><div style="left: 0px;" class="ui-icon ui-icon-radio-off tree-leaf treeclick"></div></div><span class="cell-wrapperleaf">This is a leaf</span>
what I want to show up when clicking this is just the
"This is a leaf"
inside the input box.
are there any options so the formatting doesn't display and inline editing can be used on the first cell of a treegrid? You can still save it and what not but the formatting shouldn't appear in the text box.
The only thing I can think of is to strip out the formatting before the inline textbox is displayed and then replace it once the cell is saved.