Hi,
I have been playing around with your widgets.
Hope this is simple one. I have a datetimeinput that shows gray and no calendar icon. Here is sample.
What causes this?
I have added the correct js at the top of the page.
script:
$("#popupWindow").jqxWindow({
width: 290, height: 500, resizable: true, isModal: true, autoOpen: false, cancelButton: $("#Cancel"), modalOpacity: 0.01});
$("#completeD").jqxDateTimeInput({ theme: theme, width: 150, height: 22 });
$("#serviceNotes").jqxInput({theme: theme, width:150, height: 23});
$("#Cancel").jqxButton({ theme: theme });
$("#Save").jqxButton({ theme: theme });
html:
<body class='default'>
<div id="container" class="device-mobile-container">
<h3>Service</h3>
<div id='jqxWidget' style="font-size: 13px; font-family: Verdana; float: left;">
<div id="jqxgrid"></div>
</div>
<div id="popupWindow">
<div>Edit</div>
<div style="overflow: hidden;">
<table style="table-layout: fixed; border-style: none;">
<tr>
<td align="right">Compl. Date:</td>
<td align="left"><input id="completeD" name="completeD" /></td>
</tr>
....
Let me know if i need to send more examples.