Posted on Wednesday, April 20, 2011 APEX 4 tabular form datepicker month and year selector Category APEX and jQuery Here is how you can change tabular form datepicker to show date and year selectors.First, change your date column Display As to be "Text Field".Then check e.g. using Firebug what is date fields name attribute.In my example, name for input filed is f06.Create dynamic Action. Select AdvancedName: Tabular form datepickerEvent: After RefreshSelection Type: RegionRegion: {select your report region}Condition: No ConditionAction: Execute JavaScript codeFire On Page Load: TrueCode: $('input[name="f06"]').datepicker({ changeMonth:true, changeYear:true, showButtonPanel:false, buttonImageOnly:true, showOn:'both', buttonImage:"#IMAGE_PREFIX#asfdcldr.gif" }).parent("td").addClass("datepicker"); Selection Type: RegionRegion: {select your report region}