Pro Pack
Docs HomeProduct SiteSupport
  • Introduction
  • Installation
  • Chart.js
    • Configuration
    • Data Binding
    • Data Labels
  • Dataset Filter Labels
    • Installation
    • Configuration
    • Data Binding
  • DataTables
    • Configuration
    • Data Binding
    • Events
    • Methods
  • Date Range Picker
    • Configuration
    • Data Binding
    • Methods
  • iCheck
    • List
      • Configuration
      • Data Binding
      • Events
    • Filter
      • Configuration
      • Data Binding
  • Select2
    • Configuration
    • Data Binding
    • Events
    • Methods
  • Sparklines
    • Installation
    • Configuration
    • Data Binding
  • Toastr
    • Configuration
  • Web Frameworks
Powered by GitBook
On this page
  • Properties
  • Example

Was this helpful?

  1. Dataset Filter Labels

Configuration

Use the following configuration options to bind the Dataset Filter Labels component.

Properties

Name
Default
Description

emptyLabel

empty string

The label to show when no filters values exist on a dataset query.

valueOnly

false

Boolean that determines whether the field name is included in the label.

Example

The following creates a filter label with just the query field values. When no filters exist, the label will show -Nothing Selected-.

new wire.filterLabel().render("#label", {
    ...
    valueOnly: true,
    emptyLabel: "-Nothing Selected-"
});       
PreviousInstallationNextData Binding

Last updated 3 years ago

Was this helpful?