Dear All Forum Members,
I have got a problem. I was trying to handle an event in CONTROLLER's DO_HANDLE_EVENT method.The code I have written is as shown, <b> IF htmlb_event IS NOT INITIAL AND htmlb_event->name = 'radioButton' .
Capture Field Id in a local Variable
lv_fieldid = htmlb_event->id.
Get Radiobutton
lv_htmlb_radiobutton ?= cl_htmlb_manager=>get_data( request = runtime->server->request
name = 'radioButton'
id = lv_fieldid ).
Capture Event
global_event = htmlb_event->server_event.
</b>
I did the same kind for handling Checkboxes,DropDowns and Buttons and those are working fine. But when it's radioButton, it's not working. The method call <b> lv_htmlb_radiobutton ?= cl_htmlb_manager=>get_data</b> is not executed.That I have seen by setting break-points. So I am not able to proceed further. Please help me to solve this.
Sugata Basu