All Low add-ons are now owned by EEHarbor. Read the blog post.

Support archive

Using jQuery Tools range input with Low Search ranges

Heiko 17 Jul 2012 07:47 question, complete

Hi therre,

I'm trying to implement Low Search ranges with jQuery Tools' range input, but can't get it to work like this:

http://pastie.org/4270380

Is this even supported or do I have to use -elements?

Thanks for this great addon! :)

Replies

  1. Low 17 Jul 2012 07:57

    The range input type will still only return a single value. In your example, it will return a number divisable by 10, between 0 and 30000.

    The range:field="" parameter needs 2 values (or actually, a value like "0;100" for 0 to 100).

    Or you could use two range input types, one with name="range-from:field" and one with name="range-to:field" to define the from and to values.

  2. Heiko 17 Jul 2012 08:03

    Wow, you're fast! Awesome info, thank you!