Skip to content

Other Configuration

Bob edited this page Feb 18, 2014 · 5 revisions

For localization, see this
For dom element styling, see this

In addition to the localization and styling configuration, the isb configuration object accepts the following fields:

"ignoreCase" : true or false
When false, the generated expression will include the necessary syntax to perform a case-sensitive search. When true, the search will be case insensitive. Observe the results of a sample expression generated by Isb when ignoreCase is false, then true, respectively. The user input is Surname = Bob, City = Columbus:

( Surname = "Bob" AND Town = "Columbus" )
( Surname.ToLower() = "bob" AND Town.ToLower() = "columbus" )


Clone this wiki locally