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
25
UltraWebTree Node text not aligning to Right Side
posted

I am using Infragistic UltraWebTree (Net Advantage CLR 3) and Its Node text is not right aligning, Kindly Guide how to Right Align Its Node Text.

Parents
  • 10685
    Suggested Answer
    Offline posted

    Hello Hammad,
    and welcome to the community!
     

    It should be possible to set it in the markup using TextAlignment="Right" like: 

    <ignav:UltraWebTree ID="UltraWebTree1" runat="server"
                        TextAlignment="Right"
                        Cursor="Hand"
                        DataSourceID="OrgSiteMapDataSource1"
                        Indentation="20"
                        Width="170px"
                        WebTreeTarget="HierarchicalTree"
                        BorderColor="#E0E0E0"
                        ImageDirectory="~/Images/">
        <selectednodestyle backcolor="Green" borderstyle="None" />
        <images>
        </images>
    </ignav:UltraWebTree> 

    Additional Info:
    You could reference to the official online documentation.

    TextAlignment - Enumeration for control of text alignment. The available options are Center, Left and Right.
    All available NodeClassMembers are listed here.

     Please let me know how this works for you!

Reply Children
No Data