Skip to content

Commit

Permalink
Update autoquerygrid.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Aug 22, 2024
1 parent 45f762d commit 40701f4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions MyApp/_pages/vue/autoquerygrid.md
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,23 @@ defineProps<{
create?: boolean
edit?: string|number
}>()

type ApiPrefs = {
take?: number
selectedColumns?: string[]
}

type FormStyle = "slideOver" | "card"
type TableStyle = "simple" | "fullWidth" | "stripedRows" | "whiteBackground" | "uppercaseHeadings" | "verticalLines"

type Breakpoint = "xs" | "sm" | "md" | "lg" | "xl" | "2xl"

type GridAllowOptions =
"filtering" | "queryString" | "queryFilters"

type GridShowOptions =
"toolbar" | "preferences" | "pagingNav" | "pagingInfo" | "downloadCsv" |
"refresh" | "copyApiUrl" | "resetPreferences" | "filtersView" | "newItem"
```
## AutoQueryGrid Events
Expand Down

0 comments on commit 40701f4

Please sign in to comment.