You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Preparing for Deployment](#preparing-for-deployment)
@@ -294,6 +295,29 @@ You can prevent some columns to be sortable by adding `preventSort` to columnPre
294
295
]
295
296
```
296
297
298
+
### Custom order in the filter popup
299
+
300
+
If you have classes with a lot of columns and you filter them often with the same columns you can sort those to the top by extending the `columnPreference` setting with the `filterSortToTop` option:
301
+
302
+
```json
303
+
"apps": [
304
+
{
305
+
"columnPreference": {
306
+
"_User": [
307
+
{
308
+
"name": "objectId",
309
+
"filterSortToTop": true
310
+
},
311
+
{
312
+
"name": "email",
313
+
"filterSortToTop": true
314
+
}
315
+
]
316
+
}
317
+
}
318
+
]
319
+
```
320
+
297
321
# Running as Express Middleware
298
322
299
323
Instead of starting Parse Dashboard with the CLI, you can also run it as an [express](https://github.com/expressjs/express) middleware.
0 commit comments