Some bugreports in 1.5.2

Some bugreports in 1.5.2

pmalvespmalves Posts: 18Questions: 0Answers: 0
edited September 2009 in General
Don't be misguided though the topic. it's kicking ass! But there are a few things:

1. bJQueryUI parameter

When I use bJQueryUI = false it's interpreting it as true; So regardless of what's there, always uses themeroller. I need to delete the parameter to get to the old behavior


2. bLengthChange = true incorrect rendering

I had this problem in previous versions. When I use bLengthChange = true, this is what I get: http://img70.imageshack.us/img70/6489/bdisplaylengthtrue.png

All is correct when I change it to false: http://img180.imageshack.us/img180/5082/bdisplaylengthfalse.png

I am using blueprint css to take care of the layout of the page, so that must have an influence.

The great news for me is that using bJQueryUI = true everything looks absolutely great!! (kudos for this feature): http://img70.imageshack.us/img70/1553/bdisplaylengthtrue2.png


3. Multiple value search

Read somewhere (can't find it now) that we could search for multiple entries by using a space as word delimiter. This is an extremely useful feature, but I can't seem to make it work.


All in all, this looks great :)

Replies

  • allanallan Posts: 63,205Questions: 1Answers: 10,415 Site admin
    Hi pmalves,

    Thanks for the comments! Addressing each:

    1. Oops - I only checked for the existence of that property - not its value as well! Easy fix, will be in the next release.

    2. This looks like a CSS issue to me. It's just lacking a clear somewhere. Not really a bug in DataTables as you need to customise the CSS to match what you need :-)

    3. DataTables will treat a filter such as "Data Tables" as "Data AND Tables" (case insensitive). So you just need to feed it the values to want to look for - by default it will search across all columns. If you want to customise this you can use custom filtering: http://datatables.net/development/filtering

    Regards,
    Allan
  • pmalvespmalves Posts: 18Questions: 0Answers: 0
    Thanks for the feedback.

    2. Guess I didn't explain, I'm using demo-page.css; I'm lazy, your CSS is good enough for me :) Now I'll probably use jqueryui, but guess that would be useful for someone that wants to use your config as the base example


    3. I was expecting that, but on the screenshots I sent I tried "5.1 5.2" and I had 0 results from the moment I typed space. You can reproduce it in your example http://datatables.net/examples/basic_init/zero_config.html by searching for "1.0 1.5"
  • allanallan Posts: 63,205Questions: 1Answers: 10,415 Site admin
    Hi pmalves,

    3. Looking in my example, if you type in "1.0" and then manually scan the three rows which match, you'll see that there is no row which also contains "1.5" - therefore searching for "1.0" and "1.5" returns nothing. Are you looking for "1.0 OR 1.5" (baring in mind that DataTables does "1.0 AND 1.5")? If so, you can use a regular expression search: "1\.0|1\.5" (and disable the DataTables escaping of regular expression characters).

    Regards,
    Allan
  • pmalvespmalves Posts: 18Questions: 0Answers: 0
    3. Doh!
This discussion has been closed.