Home » Developer & Programmer » Forms » Calendar Issue in multiple records in oracle 10g
Calendar Issue in multiple records in oracle 10g [message #659272] Wed, 11 January 2017 03:35
Rockstar
Messages: 15
Registered: January 2012
Location: Udaipur
Junior Member
After creating the calendar, the problem is during runtime, the calendar returns the date to the next record...
what code i am using..
In the implementation class property of the bean item,
oracle.forms.demos.CalendarWidgetWrapper.

In the When_custom_item_event trigger associated with the bean item,

declare
paramtype number;
newdateval varchar2(80);
newdate date := null;
begin
if (:system.custom_item_event = 'DateChange') then
get_parameter_attr(:system.custom_item_event_parameters,'Datevalue',paramtype,newdateval);
newdate := to_date(newdateval,'DD/MM/YYYY');
:block1.start_date := newdate;
end if;
Previous Topic: Update a date field using calendar
Next Topic: Oracle Forms - Enable Disable Textbox Based On Radio Button Selection
Goto Forum:
  


Current Time: Thu Mar 28 15:49:14 CDT 2024