Good day everyone, I’m a newbie trainee programmer and I have 2 question that I require everyone assistance,
- I’m trying to duplicate the checkboxes mode in this tutorial using the same code in this tutorial
[url]https://dhtmlx.com/docs/products/dhtmlxCombo/samples/02_modes/01_mode_checkboxes.html[/url]
However this is the result i get instead
Below is my code
<script>
var myCombo
function doOnLoad() {
myCombo = new dhtmlXCombo("combo_zone", "combo", 230, "checkbox");
myCombo.load("common/data.json");
myCombo.enableFilteringMode(true);
</script>
data.json
{"department":[
{value: "1", "position":"Artist"},
{value: "2", "position":"Lead"},
{value: "3", "position":"Technology"}
]}
- I successfully created the Init for Select dropdown but in my HTML file it look like this
How do i change the combo box position to be right beside of the “Select by department” label on the navbar, I tried to change everything using CSS it didnt work.
I’m really at the end of my rope here. Thanks in advance