I use an Infragistics UltraTree in a Winforms application as a treelist (outlook mode). The problem with the outlook mode is, that it is not possible to have node checkboxes. So my workaround is, to use a own column for the checkboxes.
My question is now, how can I achive, that there are only checkboxes in specific cells of this column (for example only in cells , which belongs to tree level 2)?
Are you trying to archive similar to the image below?
In my tree_InitializeDataNode, I added code for each Parent that I don't want to show CheckBox. The Only problem I am having is I dont want to show all the column headers and want my list to be tighter. I don't know how to do that.
With e.Node if .BandName = "tblIndustry" then .Cells("Required").AllowEdit = AllowCellEdit.Disabled End ifEnd With
I am trying to achieve this very same look that you have here. Can you tell me how you did this? Could you post some code?
Thank you
Kevin
Hmmm. wrote this a long time ago. will get the project from the archive and give you the whole class. you will have to pick from it.
Hi Imagehq..
you had uploaed uTree.zip on 12-01-2010 when you have been through your codding part to display checkbox at the treenode
can you share that code
thanks
The code you refer to here is such a long time ago. if you give me an idea what you are trying to achieve, I may be able to assist.
I have added a snippet from what I believe is the project.
I have ultrawintree with node style is checkbox.
my tree structure is lilke below
checkbox + parent
checkbox + child1
checkbox + child2
checkbox + child3 after this label i need another checkbox based on data available in database.
can you help me for the same
Hello,
I believe that this topic has already been discussed in the following forum thread:
Re: Binding a check-box for Infragistics.Win.UltraWinTree.UltraTree to a data-source.
also check http://ko.infragistics.com/community/forums/p/86153/429757.aspx#429757
Hi
My only condition is "if first level then checkbox else empty cell"
Hello emoreau,
How would you like to achieve that - on some condition or?
I guess that you have a WinTree control, so would you please tell me how is it setup?
I would like to eventually create a sample project based on your exact requirements.
I will be waiting for your feedback.
Is that code available somewhere? I need to do exactly that (showing checkboxes only on some rows) but can't acheive it.