Hello,
I have an object in HTML code:
.....
<htmlb:gridLayoutCell rowIndex="5" columnIndex="1" width="50">
</htmlb:gridLayoutCell>
<htmlb:gridLayoutCell rowIndex="5" columnIndex="2">
<htmlb:dateNavigator id = "datNav"
monthsPerRow = "1"
onNavigate = "myOnNavigate"
onDayClick = "myOnDayClick"
onWeekClick = "myOnWeekClick"
onMonthClick = "myOnMonthClick">
</htmlb:dateNavigator>
</htmlb:gridLayoutCell>
.......
I need to get the reference to this object from ABAP code when some ot the following events occurs - Navigate, DayClick, WeekClick, MonthClick (i need get the values of the fields - currentDate,TodayDate)
I tried to invoke get_data method in OnInputProcessing block as follows:
dateNavigator ?= cl_htmlb_manager=>get_data(
request = runtime->server->request
name = 'dateNavigator'
id = 'datNav').
But I get initial object . Method get_data works in my code for InputFields, Listboxes etc (!!!), but does not work for DateNavigator.
Where is error OR there is another method to get reference to real object dateNavigator?