cancel
Showing results for 
Search instead for 
Did you mean: 

get row index of cell in table

Former Member
0 Kudos

Hello,

I am using table control in my application. In this table there is one column has button. While pressing on perticular button, i want to edit row of that table in which that button has pressed. but i did not know how to get index of that cell.

regards,

Sid.

View Entire Topic
arjun_thakur
Active Contributor
0 Kudos

Hi,

Use the code given below:


method ONACTIONONLINKCLICK .
  data: lr_element type ref to if_wd_context_element,
          lv_index type i.
 
  lr_element = wdevent->get_context_element( name = 'CONTEXT_ELEMENT'  ).
  lv_index = lr_element->get_index( ).

You can also refer this thread:

https://forums.sdn.sap.com/click.jspa?searchID=25609762&messageID=7042255

You'll get the index of the row clicked in lv_index variable.

I hope it helps.

Regards

Arjun

Edited by: Arjun Thakur on May 4, 2009 11:26 AM

Former Member
0 Kudos

hi arjun.

Thanks a lot man.

actually i was making silly mistake....i was passing name of the context node instead of 'CONTEXT_ELEMENT'.

Thanks.