Retrieve columns of a datagrid in Java

0
Is it possible to retrieve the columns of a datagrid in Java? So the Java input parameter is string (e.g.: CRM.customer_overview.grid1) and I want to retrieve a List of collumns of that grid. Note: the purpose of this is to make a very simple (in use) custom CSV exporter that can be called from microflow instead of from the grid.
asked
3 answers
1

No this isn't possible, we don't expose form information in our API.

answered
1

I make my own SQLLite connection to my model deployment file. It works. I can now export to CSV from microflow :). Will be available in app store soon.

answered
0

Go to the javadoc and look around. I think you can use the IDataColumnSchema class. The getname function gives the name of the column. And maybe IDataTableSchema, this gives you the structure of the table.

answered