Hi all,
I have a strange issue with RadiobuttonGroupByIndex component when I use "onSelect" event.
When my RadiobuttonGroupByIndex contains 3 and more radiobuttons everything is working fine.
But in case I have only 2 radiobuttons in my Radiobuttongroup,I have following issue:
When I click on the 1st radiobutton, everything is OK.
When I click on the 2nd radiobutton, the Internet Explorer progress bar starts to run at the bottom of the explorer page and it is running for ages.
There is no abap code in the "onSelect" event - it is empty and therefore there is no running process in SAP.
At this moment(when the progress bar is running) when I click the 1st radiobutton again, the running progress bar stops and everything is fine again.
But when I click the 2nd radiobutton again, the issue occurs again.
This problem occurrs only when event "onSelect" is activated. When I delete the "onSelect" event(although it is empty), there is no issue.
I am not able to find out why it behaves this way.
Code which is used in WDDOINIT method:
DATA : l_node TYPE REF TO if_wd_context_node,
lt_radiobtn TYPE TABLE OF wd_comp_controller->Element_test.
DATA : line like LINE OF lt_radiobtn.
line-attr = 'Radiobutton n.1'. append line to st_radiobtn.
line-attr = 'Radiobutton n.2'. append line to st_radiobtn.
l_node = wd_context->get_child_node( name = 'TEST' ).
l_node->bind_table( st_radiobtn ).
Do you have any idea what could cause the progress bar running in internet explorer?
Thank you very much.