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
447
how do I hide check box for a specific node from server side
posted

I have a webdataTree with CheckboxMode = 'BiState'. Can you please let me know how I can hide a checkbox for a specific node on the server side.

DataTreeNode tn = new DataTreeNode();
                    tn.Text = dr["ID"].ToString() + " :: " + dr["LCD_NAME"].ToString();
                    tn.Value = dr["ID"].ToString();
                    tn.Key = dr["ID"].ToString();
                    tree.Nodes.Add(tn);

Please advice.

Parents
  • 2895
    posted

    Hello Naveen,

    Thank you for using our community.

    Currently WebDataTree's CheckBoxMode applies to all nodes and levels. What I can suggest you to do is try using different templates for the nodes.  http://help.infragistics.com/Doc/ASPNET/Current/CLR4.0?page=WebDataTree_Node_Templating.html

    http://es.infragistics.com/community/forums/t/60787.aspx

    What is more I would recommend you to log this issue as a feature idea at http://ideas.infragistics.com, the Product Ideas site allows you to suggest new product features, new functionalities in existing products and controls, and even request new controls and products altogether. Members of the Infragistics Community then vote for the features and suggestions they want to see added to the products, resulting in the most popular features bubbling up to the top.

    When planning new releases, our Product Management team will look at the most popular features and use your feedback to prioritize upcoming work.

    Let me know if I may be of further assistance.

Reply Children