APEX 4.2 Datepicker Dynamic Action
I have a dynamic action (After Refresh) with following true JavaScript-action:
alert($('#3_PI_STARTDATE').datepicker("getDate"));
The alert box prompted with empty value.
Also, when I try to set the date via
$('#3_PI_STARTDATE').datepicker("option","setDate","01.01.2016");
$('#3_PI_STARTDATE').datepicker("option","disabled",true);
it does not reflect the date picker on the fly. Neither the specified date is set, nor the elements will be disabled. (can choose month and year, can click into dates)
What's wrong?