ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: Sivakumar on December 14, 2021, 04:09:56 pm

Title: How to create a Dropdown check box
Post by: Sivakumar on December 14, 2021, 04:09:56 pm
How to create a Dropdown check box .Please share a demo on the same
Title: Re: How to create a Dropdown check box
Post by: paramvir on December 14, 2021, 05:55:12 pm
Please check examples of dropdown checkbox on this url: https://paramquery.com/select
Title: Re: How to create a Dropdown check box
Post by: Sivakumar on December 14, 2021, 09:10:13 pm
Thank you it helped and how do we select all the check box initially.
Title: Re: How to create a Dropdown check box
Post by: paramvir on December 15, 2021, 05:18:36 pm
you would need to select all the options in the multiple select list from which dropdown checkbox is created.

Code: [Select]
<select name="cars" id="cars" multiple>
    <option value="volvo" selected>Volvo</option>
    <option value="saab" selected>Saab</option>
    <option value="opel" selected>Opel</option>
    <option value="audi" selected>Audi</option>
  </select>
Title: Re: How to create a Dropdown check box
Post by: Sivakumar on December 23, 2021, 07:37:02 pm
How to get the unselected check box values from select list check box