Header Dropdown

Hi I want to implement multiple checkbox select and the values should come from the database. The rows are getting the values from the database but those values are not appearing into the combobox. I am sending you my code.



This is my sample.html page





    



    



        



        



        



    







    



    













And this is my connector.php page.



<?php



    require_once("…/dhtmlxConnector_php/codebase/grid_connector.php");







    $res=mysql_connect(“localhost”,“root”,"");



    mysql_select_db(“sampledb”);







    $grid = new GridConnector($res);



    $grid->dynamic_loading(100);



    $grid->render_table(“products”,“nm”,“code,num_val,shotid,shotstatus,taskid,taskref,tasknote,userid,taskstatus,start_date,end_date,alloted_mandays,task_priority,next_sub,actual_manday”);



?>







Please reply me as soon as possible.

Hi I want to implement multiple checkbox select and the values should come from the databas
If you want implement checkboxes at the grid one of your columns should has “ch” type
>>The rows are getting the values from the database but those values are not appearing into the combobox. I am sending you my code.
All you columns has #connector_text_filter filters. To implement select boxes at the header you should use #connector_select_filter. dhtmlx.com/dhxdocs/doku.php?id=d … :filtering