Hello
I have a strange problem with using a jqxDateTimeInput field in my popup form. The field is showing as normal html and no calender or icon is present. Also, I cannot perform any propertes on the input. For example, I used disabled: true or readonly: true and nothing happens. The field is still responding as a normal html field.
I have posted cut down code that I am using to create the input and would be grateful for some assistance as I have been trying to sort this for 2 days and cannot see what I am doing wrong.
I am using jQWidgets v3.1.0 | jqx-all.js
//datafield entry
{
name: 'destdate',
type: 'date',
format: 'yyyy-MM-dd'
},
//column entry
{
text: 'Destruction Date',
datafield: 'destdate',
width: 120,
cellsalign: 'left',
columntype: 'date',
cellsformat: 'dd/MM/yyyy',
filtertype: 'date',
columntype: 'datetimeinput'
},
//initialize input
$("#destdate").jqxDateTimeInput({ width: 195, height: 23, readonly: true, disabled: true, theme: theme });
// popup entry
<tr>
<td align="right">Destroy Date:</td>
<td align="left"><input id="destdate" /></td>
</tr>