Hi,
I need to fill Grid component with data, and I need to do that from FormScript. In my case, user hit button, event is triggered, and then in FormScript I prepare data which I get via ION API, and I need to fill it to the grid
But I can't find any working example of this.
I suppose that I need to prepare
List<string> data
and then add it to the grid component maybe by this Method?
ThisForm.Components["grid1"].ListSourceScriptAddEntries(data);
And I read in documentation that, filling Grid must be done from GlobalScript.
But I only receiving this error message
