dropdown

A drop-down list (abbreviated drop-down, or DDL; also known as a drop-down menu, drop menu, pull-down list, picklist) is a graphical control element, similar to a list box, that allows the user to choose one value from a list. When a drop-down list is inactive, it displays a single value. When activated, it displays (drops down) a list of values, from which the user may select one. When the user selects a new value, the control reverts to its inactive state, displaying the selected value. It is often used in the design of graphical user interfaces, including web design.

You do not have permission to view the full content of this post. Log in or register now.
  1. J

    RE: HELP... Ajax auto populate dropdown box and show percentage value..

    if(isset($id)): $order_items_qry = $conn->query("SELECT o.*,i.name, i.size FROM `order_items` o inner join item_list i on o.item_id = i.id where o.`po_id` = '$id' "); echo $conn->error; while($row =...
  2. Y

    HELP! PHP Dropdown list value from datatable to textbox

    <?php if(isset($_GET['id']) && $_GET['id'] > 0){ $qry = $conn->query("SELECT * from `po_list` where id = '{$_GET['id']}' "); if($qry->num_rows > 0){ foreach($qry->fetch_assoc() as $k => $v){ $$k=$v; } } } ?> <style>...
  3. Y

    RE: Dropdown list value showing in textbox in PHP

    Need help po, May designated po discount sa bawat supplier, need ko lang po mapalabas sa textbox yung value upon selecting supplier. <label for="supplier_id">Supplier</label> <select name="supplier_id" id="supplier_id" class="custom-select...
  4. A

    Help Google Sheets: changing cell values depending on selected dropdown option

    Hello! Pahelp lang po paano po mapapawork to sa gsheets. Let's say sa A1 may dropdown po ako, ang options ay X or Y. If sinelect ko yung X from dropdown, magkakavalue yung cells below that. If sinelect ko naman is Y from dropdown, yung value magiiba. If wala naman ako sinelect sa dropdown, wala...
Back
Top