Questions tagged as 'treeview'

0
answers

Laravel - plugin to view existing files and folders in Storage-app-public

I need a help, does anyone know of a plugin to display in real time the folders and files in Storage > > > > public in Laravel? I found this plugin that does what I want: Demo: link But I do not know how to convert scan.php...
asked by 22.06.2017 / 14:33
1
answer

How to search a VirtualStringTree in Delphi without using Edit?

I have VirtualStringTree with some items and I want to implement a feature similar to what a ComboBox has. It works like this: when pressing a certain letter it should select the first item of the grid, as I press the same lette...
asked by 16.05.2017 / 23:26
1
answer

How to display, in treeview format, only the folders and subfolders, and the contents of both, that are on the desktop?

Well, guys, I'd like some help out of favor I made a file explorer that aims to map all the folders, subfolders and the files of these folders and subfolders according to the letter that is selected. The problem is that by selecting any letter...
asked by 17.01.2017 / 06:32
1
answer

Add Treeview Node by path

I'm trying to add a TreeView Node to the path, for example: And the code I'm trying is like this: public void AddParent(string path, string node) { TreeNode parentNode = treeView1.Nodes[path]; if (parentNode != null)...
asked by 04.07.2016 / 22:24
0
answers

PHP Array for formatting tree

I'm trying to transform this array Array ( [0] => Array ( [enc] => Array ( [enc_obs] => Continua ) [1] => Array ( [per] => Array...
asked by 22.05.2016 / 19:22
1
answer

How to move items between 2 TreeView dynamically?

I have a TreeView that receives the fields from a database as items. I wanted to link these fields to another TreeView that already has a predefined structure. It would look something like this: This link is currently used by dragging i...
asked by 11.05.2016 / 16:35
0
answers

C # TreeView DoubleClick WindowsForms

private void treeView_DoubleClick(object sender, EventArgs e) { if (pRetorno == true) { if (treeView.SelectedNode != null) { pOc = new OcorrenciasCategoriasDAO().Buscar(Convert.ToInt32(treeView.SelectedNode.Tag...
asked by 27.05.2015 / 14:29