my requirement is i have to make input field as check box. so i have implemented get_p method for that filed and i have capture the check box value
in the event handler. here is the coding.
CASE iv_property.
when if_bsp_wd_setter_getter=>fp_fieldtype .
rv_value = cl_bsp_dlc_view_descriptor=>field_type_checkbox.
when if_bsp_wd_model_setter_getter=>fp_server_event.
rv_value = 'port'. " event handler name.
it is ok. when the view is loading the filed is available in view and it is present as check box.but when i tick in check box the filed is dissapear...
i don't know why the field is invisible after checking the check box. if i un check it then it is fine and it is there i.e. field is available.
how to capture the check box value in my event handler class....