v-filter

Add to enable filter in header input First param must always be field/property of collection you want to filter next are optional, you can add filter operator, value converter, and "onKeyDown" yo make grid filter on each key stroke, default if when you hit enter

<v-grid-col>
  <v-header-template>
    <input v-filter="name|onKeyDown|*">
    <p>Full Name</p>
  </v-header-template>
  <v-row-template>
    <input checked.bind="rowRef.name">
  </v-row-template>
</v-grid-col>

Operators:

"="      : "equals"
"<=      : "less than or eq"
">="     : "greater than or eq"
"<"      : "less than"
">"      : "greater than"
"*"      : "contains"
"!="     : "not equal to"
"!*"     : "does not contain"
"*="     : "begins with"
"=*"     : "ends with"

Last updated