Is that possible to select all for quickedit

Is that possible to select all for quickedit in order to apply an action? Thanks for your help.

I need this in order to select many rows to apply an action. I attached the screenshot of the table view.

Hi @Firdaus_AG

If the value you wish to set is simple to implement, you may want to create an action with “set the values of some columns in this row”.
Then, select this one from the 3-dots (top-right corner of the app) after multi-selecting as you did on the screenshot.

3 Likes

Nice and fancy tips and tricks is just being introduced.

[Bulk Select Multiselect Select All](https://community.appsheet.com/t/bulk-select-multiselect-select-all/60092) Tips & Tricks ?

We can do Bulk Select in Table, Deck and Gallery View. [Multiselect] We can even navigate to a view that’s already in Bulk Select Mode. (My Table View is called “Text”) This is the expression for the Action type “App: go to another view within this app” LINKTOVIEW(“Text”) & “&selected=” & ENCODEURL(“”) [Multiselect2] Or even navigate to a view that’s in Bulk Select Mode and items preselected. Like Select All. (My Table is also called "Text) LINKTOVIEW(‘Text’)&‘&selected=’&ENCODEURL(…

4 Likes

I create an action go to another view with target link: linktoview(‘Backup’)&’&selected=’&encodeurl(’[“’&substitute(filter(‘Parcel’,true),’ , ‘,’”,“’)&’”]’)

Works fine but I need to select all with the column, [Status] = 'Collected’

Any idea how to modified the url?

I never tried this specifically, but what about that ?

linktoview(‘Backup’)&’&selected=’&encodeurl(’["’&substitute(filter(‘Parcel’, [Status] = 'Collected’),’ , ‘,’","’)&
’"]’)

@Fabian

2 Likes

Aurelien:

auto> linktoview(‘Backup’)&’&selected=’&encodeurl(’["’&substitute(filter(‘Parcel’, [Status] = 'Collected’),’ , ‘,’","’)&> ’"]’)> >

It works perfectly. Thank you so much.

3 Likes