Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
633
Node Edit Style
posted

 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 

 

Parents
No Data
Reply
  • 28464
    Verified Answer
    posted

    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>

     

Children