Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
134 views

I am using tkinter, pandas and treeview. The treeview is to display an excel file via filedialog with 15 columns, which is very lengthy, hence I needed a horizontal scrollbar. However the scrollbar ...
user2741620's user avatar
0 votes
1 answer
84 views

Set Focus to an item property in a TreeView The TreeView looks like: <TreeView Name="Tree" BorderThickness="0" ItemsSource="{Binding Items}"> <...
Stephen Lee Parker's user avatar
0 votes
1 answer
100 views

I want to build a web page–like effect that displays a directory tree with multi-level nesting. The left side should show the directory names, and the right side should display operation buttons ...
sendreams's user avatar
  • 391
1 vote
1 answer
158 views

I'm trying to solve LeetCode 199. Given the root of a binary tree, imagine yourself standing on the right side of it, return the values of the nodes you can see ordered from top to bottom. I've ...
Benny's user avatar
  • 519
4 votes
2 answers
159 views

I have an old WinForms application with a normal TreeView, where I need to show customized tooltips for individual nodes. I am using a ToolTip component (OwnerDraw=true and IsBalloon=false), and I ...
Boise's user avatar
  • 379
5 votes
1 answer
168 views

// data fetched from database, it's dynamic $treeData = [ ['id' => 1, 'name' => 'Root A', 'parent_id' => 0], ['id' => 2, 'name' => 'Child A', 'parent_id' => 1], ['id' =&...
rahul's user avatar
  • 919
4 votes
1 answer
105 views

We have an old (very old) WinForms application that depended on some 3rd party components that we are no longer allowed to use. One of those components was used to display tooltips on individual nodes ...
Boise's user avatar
  • 379
1 vote
1 answer
118 views

I’m trying to bind the SelectedItem of a WPF TreeView to a property in my MainViewModel in a pure MVVM setup (no code-behind). Since TreeView.SelectedItem is not a dependency property, I created an ...
6EQUJ5HD209458b's user avatar
0 votes
1 answer
50 views

I am building the framework of a MVVM app. I'm currently working on a simple TreeView contained in a UserControl. I have set the context to my ViewModel and have been able to successfully bind ...
Ben's user avatar
  • 13
0 votes
1 answer
203 views

I am getting a memory exception in (unchanged) code that has been working for 2+ years (code is unchanged, in a Git repo). Here's the code that is causing the exception: HTREEITEM getTreeNode(HWND ...
John D's user avatar
  • 11
1 vote
1 answer
112 views

We have implementation that uses OnCustomDrawItemEvent of treeview to draw items. NodeRect := Node.DisplayRect(true); TextRect(NodeRect,NodeRect.Left, NodeRect.Top, sometext); The issue is that some ...
danisius's user avatar
  • 609
1 vote
2 answers
154 views

I want to achieve the following (using Delphi 12.2): A TreeView with Checkboxes and two levels (each parent node has two or more child nodes, but no grandchild nodes). Click a parent node: it becomes ...
Tim's user avatar
  • 123
0 votes
1 answer
94 views

The following Javascript code used when initializing the tree region to colorize the tree node texts. function( options ) { options.makeNodeAdapter = function(data, types, hasIdentity) { ...
shady's user avatar
  • 134
1 vote
1 answer
68 views

I need help to build a hierarchical treeview taking data from a mysql table with these columns: ID, ID_parent, Description. I managed to fill only the first level list and I need to create a function ...
stefano visco's user avatar
0 votes
1 answer
120 views

I want to get the index of a row in a Tkinter treeview without clicking on the row. I have a three-column treeview that displays correctly. In the first column, I have values, each unique. For example,...
user30316302's user avatar
0 votes
1 answer
39 views

I have a treeview with various controls in a treeviewItem, Textblocks, textboxes, checkboxes, and radio buttons. The problem is strictly cosmetic and only applies to when the treeview node is selected....
Steve S's user avatar
  • 89
0 votes
1 answer
81 views

I have an application on production with a TreeView control but when the client want to expand or collapse the tree, he finds it very annoying to click on the toggle button because the button is too ...
Yaya0306's user avatar
0 votes
0 answers
53 views

This is my html code. I have put indentation to the nodes using typescript, but toggle button are not getting indented. <p-tree [value]="treeData" selectionMode="single" [...
Krishna Arun's user avatar
0 votes
1 answer
87 views

I'm building an admin panel using Tkinter in Python. I'm using ttk. Treeview to display computed salary data. I call tree.insert(...) and the data is inserted — I can confirm the values by calling: ...
bastrees's user avatar
1 vote
2 answers
98 views

I am creating a custom treeview control for my winform application. In doing this, I noticed that there is a really annoying feature of the treeview I am having trouble removing. Upon selecting a node ...
Jamie Head's user avatar
-2 votes
2 answers
69 views

For a program that takes information from the network I would like to display it in a table to make selections (calculate average, stdev ect.). I created a list of lists and I am trying to populate it ...
RoelandKeuren1989's user avatar
0 votes
1 answer
90 views

Im having issues with laying out this treesliver widget. I want the nodes to all end in the same position horizontally but start with an indent based on where they are in the tree. All the icons ...
Yoeri van Zwol's user avatar
0 votes
1 answer
156 views

In an Odoo v17 application, in a tree view inside a page, I need to show a column depending on a certain field. There is a transport field whose value can either be 'air' or 'ocean'. If 'air', I need ...
Sheenergizer's user avatar
0 votes
0 answers
30 views

I've seen issues like this posted for older Sitecore versions, but none as recent as 10.3. When invoking the Browse trigger on an Image field in Sitecore CMS, the user gets the Select Media dialog. ...
Ron Ritchie's user avatar
0 votes
0 answers
38 views

I created a custom module called recruit ink that I wanted to put on top of the recruitment module, it's like a recruitment request process to start the actual recruitment. In it I have a Many2one ...
turara's user avatar
  • 1
1 vote
1 answer
85 views

My form has a TreeView control named tv1 which uses TreeViewDrawMode.OwnerDrawText and implements a custom handler. It works as expected with the exception that the nodes which are passed to the ...
Steve Stover's user avatar
1 vote
0 answers
54 views

I cant seem to figure out why the children of my tree are not indenting from their parent node and are lined up directly with them instead. # Tree view initializers # Tree Cloumns filterTree = ttk....
Demian's user avatar
  • 11
0 votes
0 answers
71 views

I'm trying to create a tree view with the same form as a table to manage categories. I figured it would be similar to the treetable in primefaces(http://primefaces.org/showcase/ui/data/treetable/...
soufiane ben yaala's user avatar
0 votes
1 answer
72 views

I wanted to copy some example code I found online, but this bit has me puzzled. In the MainForm() method is treeView.BeforeSelect += (sender, e) => e.Cancel = !_isTreeInitialized; Task.Delay(10)....
Steve Stover's user avatar
1 vote
1 answer
48 views

I have following code for the tree. HTML: <nz-tree [nzTreeTemplate]="nzTreeTemplate" (nzOnDrop)="onNzOnDrop($event)" [nzData]="nodes" nzDraggable> </nz-tree&...
Ashim's user avatar
  • 483
0 votes
0 answers
89 views

I have a treeview that I don't want to have borders, I managed to do it with borderwidth=0, however when selecting an element the border reappears, I tried to put borderwidth=0 when selecting or ...
XlayerCrz's user avatar
0 votes
0 answers
70 views

This is the problem screenshot: And this is my code: tree_frame = Frame(self.root) tree_frame.pack() self.tree = ttk.Treeview(tree_frame, columns=['1', '2', '3'], show='headings', ...
lonia QL's user avatar
0 votes
1 answer
61 views

In my Windows Explorer type app with the obligatory Treeview and Listview, and having the users chosen file path continually updating in a Textbox, is there a way to navigate to different nodes in the ...
user1377723's user avatar
0 votes
1 answer
66 views

I'm working on a Java project using the Eclipse Jface librairies, and my goal is to display a custom tooltip when the user hovers over an item in a Jface TreeViewer. However, I'm encountering an issue ...
Etienne's user avatar
  • 25
1 vote
1 answer
33 views

I am populating a treeview with a list of music. The root node's text is "Library". I want to go to a specific artist by typing the name. If I want to go to "Billy Idol", for ...
Curt Lindsey's user avatar
0 votes
0 answers
21 views

I have a customized Tree Component of Rsuite component library, where my intention is to add new child for any node. I have been successfull in doing that, but it seems the react component cannot ...
Kalpadiptya Roy's user avatar
0 votes
1 answer
58 views

I have a combobox in one "subscreen" and I am filtering the original dataframe with combo box value but I can't use resulting dataframe to show it in the treeview function or else where. I ...
Monvana's user avatar
1 vote
1 answer
78 views

I have a Python tool with CheckboxTreeview widget. Some of the content in the treeview is too long to be displayed. I would like to offer a tooltip to the user if this is the case. I already have ...
bene's user avatar
  • 165
1 vote
2 answers
83 views

am trying to create a table using a scrolled-treeview, to contain students' performance but i have failed to add the specific columns (name, math-mark, comp-mark) to it. I have tried the following ...
Karugaba118's user avatar
0 votes
1 answer
78 views

How to populate a treeview with results from many tables? I've a set of tables: athletes, grades, categories, rel_ath_grad_cath. athletes grades categories rel_ath_grad_cath id_ath id_grad id_cat ...
CodeOrion's user avatar
0 votes
1 answer
54 views

I want that my Treeview shows Striped Row Tags when filtering using a entry in tkinter. The code works fine before filter, the filter function also works fine but it does not shows the Striped Row ...
sendog3c's user avatar
0 votes
0 answers
91 views

I'm trying to make a 'autofit' column width and the code below works really fine, but only if Im not in the tabview that the autofit occurs. Is there anyway to workaround this? from tkinter import ttk,...
Giulliano Accarini De Luccia's user avatar
2 votes
1 answer
57 views

I have found this function shown below very useful to move down in a treeview, but I ask here if there is a move up function. def moveDown(self): curSelection = self.tree.selection() # current row ...
sendog3c's user avatar
0 votes
1 answer
30 views

I have api response data stucture like below. My data is dynamic and may be change. Structure of data has children. It may has any children in children that times of that is not determined.The last ...
Shokouh Dareshiri's user avatar
0 votes
2 answers
153 views

I am building an app with tkinter and running into some annoying issues. When I load my data into the ttk treeview, I see that there are always some additional columns on the right side of my treeview ...
user3840530's user avatar
0 votes
1 answer
81 views

Hi I am facing a peculiar issue. I am using a Windows Form (.NET Framework) and have created a TreeView with a sample list from database. I would like to display the details of the selected node by ...
Ajay Shah's user avatar
0 votes
1 answer
120 views

Visual Studio has this very nice "solution explorer", which I assume is some form of TreeView. When you rename files, it selects the file name only and not the extension. However, treeviews ...
CocoaMix86's user avatar
0 votes
0 answers
48 views

https://github.com/dipson88/treeselectjs Using the package I mentioned above, I created a select structure in the treeview with jquery. <div id="my-treeselect"></div> const ...
Kuzey Demirel's user avatar
0 votes
1 answer
43 views

The node may be expanded or collapsed. Need to show the button in both cases. Something like this: ├─ item1 ├─ item2 <button> │ ├─ item2-1 │ ├─ item2-2 ├─ item3 <button> │ ├─ item3-1 │ ...
Igor's user avatar
  • 316
2 votes
1 answer
117 views

Here is what is happening: Desired outcome: When selecting any item no horizontal scrolling should occur (even if the item is too big to show) Solution must work with virtualization Horizontal ...
Bent Rasmussen's user avatar

1
2 3 4 5
191