cancel
Showing results for 
Search instead for 
Did you mean: 

how to reset a text box

Former Member
0 Kudos

Hi,

Is there any option to reset the textbox fields in webdynpro

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

To reset the input fields you can use the following code in the eventhandler of the "Reset" Button:

data: ldf_node type data ref to if_wd_context_node.

ldf_node = wd_context->get_child_node( 'INPUT_HEADER' ).

ldf_node->invalidate( ).

Here I had taken all the input fields under this 'INPUT_HEADER' node.....

Regards,

NSingh

Answers (0)