Tagged Questions
The treecontrol tag has no wiki summary.
2
votes
5answers
695 views
Is there a tree control for the iphone?
Is there a Tree control available for the iphone?
I need to represent a tree with sub nodes in a tree, how can I do it?
Thanks
1
vote
2answers
56 views
Django:Is there a way to use a tree control in my templateā
Hi i wanted to know is there a way through which i could use a tree control in my template
I wanted to add something like
Student
|_Name
|_Address
|_Contact No
I think you guys ...
1
vote
2answers
487 views
wxPython TreeCtrl without showing root while still showing arrows
I am making a python tree visualizer using wxPython. It would be used like so:
show_tree([ 'A node with no children', ('A node with children', 'A child node', ('A child node with children', 'Another ...
1
vote
2answers
247 views
Win32 TreeCtrl TVN_ENDLABELEDIT memory allocation
I have a Win32 TreeCtrl where the user can rename the tree labels. I process the TVN_ENDLABELEDIT message to do this.
In certain cases I need to change the text that the user entered. Basically the ...
0
votes
2answers
358 views
How does MFC's CTreeCtrl automatically displays a tool tip, containing the title of the item, if the entire title is not currently visible?
Background http://msdn.microsoft.com/en-us/library/b17bescz(v=VS.90).aspx
"The TVS_NOTOOLTIPS style disables the automatic tool tip feature of tree view controls. This feature automatically displays a ...
0
votes
1answer
188 views
Reliable HTML/Ajax control to manipulate tree structures?
Can someone recommend a reliable HTML tree control that also supports tree manipulation?
I need it for a backend and want to move, reorder, delete, add and rename nodes.
Right now I use a nested set ...
0
votes
2answers
299 views
item size not adjusted after font change in CTreeCtrl
I change the font of tree items in CTreeCtrl with the following code:
void CTreeCtrlEx::OnNMCustomdraw(NMHDR *pNMHDR, LRESULT *pResult)
{
LPNMTVCUSTOMDRAW pNMCD = ...
0
votes
3answers
215 views
wxPython: VirtualTreeListCtrl with millions of items
I would like to add 1,000,000+ entries to the root node of a TreeListCtrl. Therefore I would like to make it "virtual", i.e. work just like a virtual ListCtrl so that it's still fast and I can easily ...
0
votes
1answer
375 views
MFC CTreeCtrl max visible item text length
I have an application that outputs large amounts of text data to an MFC tree control. When I call SetItemText() with a long string (larger then 1000+ char) only the first ~250 chars are displayed in ...
0
votes
1answer
294 views
Axapta: Update FormTreeControl after image change
In my other methods (data, text, etc.) the setItem method works fine to display changes made to a tree item. However, calling setItem after changing an item's icon doesn't seem to have any effect. ...
0
votes
1answer
364 views
How can I auto-scroll a wxTreeControl widget while dragging with the mouse?
I have a wxTreeCtrl widget with scroll bars, where I want to drag and drop items on other items. But when I drag an item, how can I make the control automatically scroll invisible items into view?