I have a problem in Interent explorer. When the textbox for node editing appears, the text does not vertically fit in the text box, it is cut a little at the bottom. I am also using app styling.
I tried to set the NodeEditStyle font size property to get it to fit but that does not work. I also editted the css file used by the app syling theme, and set the font size properties in .igtr_BlueEdit but still no change.
I looked at the html that is generated and the input tag generated by infra has inline css defined in it which sets the height and font size of the input field. Any idea how i can set the values being set there.
Regards,
Ahmad
It is an interesting case...
When a node is in edit mode, IG UltraWebTree creates a global igtree_editControl object and maybe you case use its className property to set a css class explictly or play with its style... e.g.
<ignav:UltraWebTree ID="UltraWebTree1" runat="server" Editable="True"> <ClientSideEvents BeforeBeginNodeEdit="beforeNodeEdit"/> </ignav:UltraWebTree> <script language="javascript"> function beforeNodeEdit(treeId, nodeId) { igtree_editControl.className = "myCssClass";
igtree_editControl.style.color = "red"
} </script>
Is there a resolution for this issue? I'm seeing the node edit control clip the edit text too. I tried setting the "style.height" property but the height of the edit control does not change. However, setting the background color works.