Can anyone explain me how the data grid and edit grid functions works in Forms?
I have for example a edit grid containing text fields in 5 columns. Each text field is binded to a variable, but value is returned blank when I have inputted some data in the fields. I guess this is not the correct way to handle this when you have multiple lines, but I can’t seem to find any documentation/forum topics regarding how to do this.
I want to bind list of item with user input like selection of items in create form activity… Not able to understand how to pass list or json or collection from my workflow to create form activity to render data grid accordingly…
Can you please provide any sample of input and output?
My requirements is to get user input on multiple records … for example 5 records of students that attened robot promp a window with 5 records of students and from that use will select students attended class… may be 3 records … for selection I want to put checkbox… the record count is not fix… next time it can be more then 5 or may be less…
I can prepare datatable or dictionary or json for input…
The requirements is similar to you posted. Will pass vehicle details and user need to select vehicle (Check box) and enter their comments. I need to get comments for only selected vehicles to process further in the work flow.
I am trying to pass the vehicle data in JSON and trying to show in grid along with Comments(textbox) and Select (Check box) and get response back but not succeed, your help would be much appreciated.
SerializeObject the list of the vehicle – ( I have used datatable for multiple records)
prepare JSON string for input data that you want to display like :- "{""vehicle"": " + vehicleJSON+ "}"
use this JSON string as CustomeForm input
Also, you will get the value of the checkbox or input box that in the output of Custom form after submit
B. Custome form design
Use Data Grid Component - set field key as “vehicle”
Use Basic Component inside the grid, like text box, radio button, checkbox with Feild Key same as field name in JSON Object or it will return although it will not included in input JSON
I’m trying to display a data table to user using Form designer activity. We are building this POC for attended robots.
We have a use case where bot will display a table and user will filter and choose records. Those records will be used as inputs for further automation. Can you help me with this?