on 2005 Sep 28 9:37 AM
Hi,
I have a requirement wherein i have to navigate from first to last element in a table (node)?
Any ideas about how to achieve that?
Regards,
Dev
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Devashish,
com.sap.tc.webdynpro.progmodel.context.Node (super class for nodes)
public final void moveFirst()
public final void moveLast()
public final IWDNodeElement moveNext()
public final IWDNodeElement movePrevious()
Best regards, Maksim Rashchynski.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Devashish,
Iprivate<view>.I<node_name>Element elmt;
for(int i=0;i<wdContext.node<node_name>().size();i++)
{
elmt = wdContext.node<node_name>().get<node_name>ElementAt(i);
Access the value through elmt.get<property>();
}
Hope this helps,
Best Regards,
Nibu.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
57 | |
11 | |
7 | |
6 | |
6 | |
6 | |
6 | |
5 | |
5 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.