server-client-python icon indicating copy to clipboard operation
server-client-python copied to clipboard

Select All values in Filters using CSVRequestOptions?

Open rake1191 opened this issue 5 years ago • 5 comments

I have a view which has around 4 lakh rows, and by default has filter applied to one column (ex: Category is set to 'Furniture'). This reduces the number of rows displayed to 100 rows.

I am trying to export this for all Categories(around 1000+). How do i construct a CSVRequestOptions object that will includes all categories.

Applying comma seperated values get me the rows corresponding to each Cat. csv_req_option.vf('Category', 'Furniture,Apparel,Shoes') But is there an option to include all options, instead of hard coding all the options? I tried csv_req_option.vf('Category', all) and it doesn't seem to work.

Is there an option to choose 'All'?

rake1191 avatar Nov 02 '19 11:11 rake1191