hello all,
this tutorial is about a requirement of restricting user to enter date through calendar only in ADF application
this trick was posted by Frank Nimphius (ADF Code Corner)
this tutorial is about a requirement of restricting user to enter date through calendar only in ADF application
this trick was posted by Frank Nimphius (ADF Code Corner)
- Drop a af:inputDate component on page from component pallete
- Now set its background color so that it looks like disabled field
- Now to make it's input field disable, we have to write a small javascript function, copy this function and paste in your page source (XML)
- Now drop a af:clientListener under af:inputDate component to invoke javascript
<af:resource type="javascript"> function enableCalendarOnly(evt) { evt.cancel(); } </af:resource>
- Now set properties in af:clientListener as Method & Type
- Now run your page and see that input field is disabled for date component , now value can be selected using calendar only