I have the following code, and I don’t know, but the jqxcombo and the jqxinput are not align, could you help me?
<script type="text/javascript"> $(document).ready(function () { var source = new Array(); source[0] = {id: 1, name: 'NIF', label: 'NIF', value: 1}; source[1] = {id: 2, name: 'NIE', label: 'NIE', value: 2}; $("#nif_nieC").jqxComboBox({ source: source, selectedIndex: 0, width: '124', autoDropDownHeight: true,theme: 'ui-redmond' }); $("#nif_nie").jqxInput({height: 25, width: 200 }); });</script><div id="personalInformation"> <div id="nif_nieC" style="display: inline-block;"></div> <input type="text" id="nif_nie" name="nif_nie" autocomplete="false" > </div>
Thanks in advance