Hello Everyone,
I have a requirement of showing an editable grid when clicked on a value in a read only grid.
Is it possible to do?
Or Is it possible to give a search filter and user filters to a editable grid?
Discussion posts and replies are publicly visible
Hi mk0724You can show the editable grid on click by configuring show when or by using record pop-up(related action). There's no inbuilt parameters for filters in editable grid you have to use custom filters for that.
Do you want to just make a single row editable, or switch the whole grid?
I just have to show records from 2 tables.
One from the main table and when the main table record is clicked it needs to show the records from second table which is related to the main table
https://docs.appian.com/suite/help/23.4/recipe-use-links-in-a-grid-to-show-more-details-and-edit-data.html
I have to show them in grid only.
Are Custom filters can be added to editable grid?
You cannot show data in read-only and also let the user edit it.
The name of the grid makes it clear that it is read-only. If you want to let the user edit the data, make a related action for it, or a process model with a UIT that lets the user edit it, or replace the read-only grid with an editable one, setting the readOnly parameter for all inputs to true, until the user clicks on edit.
Divya said:I have to show them in grid only.
you will need to show them in a separate section - usually the best approach (just from experience) is to pop up a section or box just below the grid with the entry you've selected for editing.
Hello Divya
Not sure the way you asked the question makes sense. But from my assumption, I guess you are asking for a provision to edit the existing data in a grid which show read only data. You can use an editable grid and make it initially read only and have an icon for each row and when clicked, the row would turn editable. This updated data would be stored in a local variable and a button would appear in the bottom of the grid which would contain a!startProcess() and save your information. I have done this approach. But have used only to edit a single row of data at a time. If this approach you can have a top level filter before selecting the edit option.
Hello,
One from the main table and when the main table record is clicked it needs to show the records from second table which is related to the main table.
Both are read only grids only.
There wont be any editing of the data in the grids. I just have to show them.