02-25-2016, 04:40 PM
Is it possible to fill a one column grid in a dialog with the first column of a multi column ICSV.
Al this without putting the contents of column 1 of a ICSV in a seperate variable and then filling the grid with that seperate variable.
Example, I have the below ICSV called list_csv:
And I want to put list_csv into a grid in a dialog and showing only the first column while using list_csv only.
Another option would be to hide the second column in the grid, but I do not know how to do that (If even possible).
On click events, I could just pull the contents out of the grid and then refer the column 2 (path)
I am often in a situation where have a ICSV with multiple columns and I then put the first column in a string or array then fill a grid.
Al this without putting the contents of column 1 of a ICSV in a seperate variable and then filling the grid with that seperate variable.
Example, I have the below ICSV called list_csv:
col 1 (name) col 2 (path)
test_1.txt | c:\abc\test_1.txt
test_2.txt | c:\abc\subfolder\test_2.txt
And I want to put list_csv into a grid in a dialog and showing only the first column while using list_csv only.
Another option would be to hide the second column in the grid, but I do not know how to do that (If even possible).
On click events, I could just pull the contents out of the grid and then refer the column 2 (path)
I am often in a situation where have a ICSV with multiple columns and I then put the first column in a string or array then fill a grid.