ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: Sivakumar on December 14, 2021, 04:09:56 pm
-
How to create a Dropdown check box .Please share a demo on the same
-
Please check examples of dropdown checkbox on this url: https://paramquery.com/select
-
Thank you it helped and how do we select all the check box initially.
-
you would need to select all the options in the multiple select list from which dropdown checkbox is created.
<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>
-
How to get the unselected check box values from select list check box