Hi Naveen,
This is the code that i have written in HTM
<thtmlb:inputField id = "AccountSearch1"
disabled = "FALSE"
textDirection = "LTR"
value = "<%= controller->GV_ACCOUNT %>"
submitOnEnter = "X"
submitOnEnterEventName = "SEARCH" />
This is the code that i have written in SEARCH event handler.
me->gv_ipfld_name = htmlb_event->if_htmlb_data~event_id.
data_input ?= cl_htmlb_manager=>get_data(
request = runtime->server->request
name = 'inputfield'
id = me->gv_ipfld_name ).
IF data_input IS NOT INITIAL.
ld_fieldid = data_input->value.
ENDIF.
This always returns an empty value.
Thanks.