rstaib / jquery-bootgrid

Nice, sleek and intuitive. A grid control especially designed for bootstrap.
http://www.jquery-bootgrid.com
MIT License
972 stars 364 forks source link

Case Sensitive not responding? #279

Open gdnwebmedia opened 8 years ago

gdnwebmedia commented 8 years ago

We are using caseSensitive on my JS, like this:

      $("#data-table-support").bootgrid({
          caseSensitive: false,
          ajax: true,
          searchSettings: {
              characters: 3
          }  ....
      });

but the table still case sensitive... am we doing something wrong?

alesdvorakcz commented 8 years ago

The caseSensitive works without ajax - when you have all rows on client side. So maybe you should implement search logic on the server side or set the ajax option to false to make it work...