cancel
Showing results for 
Search instead for 
Did you mean: 

How to set focus on next row inputfield in table

Former Member
0 Kudos

Hello all,

How to set focus on next row input field in table

Please help.

Thanks in advance.

CSP

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

use the following code


wdThis.wdGetAPI().requestFocus(nodeElement, attribute)

Ex:
Provide the attribute and replace the nodeElement with that of yours

IWDAttributeInfo attributeInfo = wdContext.getNodeInfo().getAttribute("Your attribute");
	  wdThis.wdGetAPI().requestFocus(wdContext.currentContextElement(), attributeInfo);

Regards

Ayyapparaj