jQWidgets Forums

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts

  • zech5443
    Participant

    Hi Yavor Dashev,

    Thank you for your reply.
    It seen like it was added to “Owner” label.
    If i would to add multiple drop dropdown, how can i add the label and align each of my drop down?

     fields.resourceLabel.html("Owner");
    					var source_A = [
                                "Affogato1",
                                "Americano1",
                                "Bicerin1",
                                "Breve1"
                            ];
    					var source = [
                                "Affogato",
                                "Americano",
                                "Bicerin",
                                "Breve"
                            ];
    
                        var dropdown = '<div id="dropDown"> </div> </div>';
                        var input  = '<div id="input"> </div>';
    					
    					var dropdown_A = '<div id="dropDown_A" > </div>';
                        var input_A  = '<div id="input_A"> </div>';
    					
                        fields.resourceLabel.append(dropdown_A);
    					fields.resourceLabel.append(dropdown);
            
                        $("#dropDown").jqxDropDownList({ source: source, placeHolder: "Select Item", width: 250, height: 30});
    					$("#dropDown_A").jqxDropDownList({ source: source_A, placeHolder: "Select Item", width: 250, height: 30});
Viewing 1 post (of 1 total)