cancel
Showing results for 
Search instead for 
Did you mean: 

about "table" component

Former Member
0 Kudos

Hello experts,

I want to confirm a issue.

Does "table" component can rilize the format as follow via "binding" action ?

_________________________________________

field name

standard value

value

description

__________

_____________

_____

__________

fieldname1

_____________

_____

__________

fieldname2

_____________

_____

__________

fieldname3

_____________

_____

__________

fieldname4

_____________

_____

__________

fieldname5

_____________

_____

__________

If not, how to relize it via development?

Any sugesstion is welcome !

Best Regards,

Chen Jianguo

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

If the lines __________ are coming from backend itself, and you want table in this format only, then make 'gridMode' property of your Table UI Element to 'none'..

Or If you want to check values and put lines manually,

then you should write code as

int size=wdContext.node<TableNode>().size();

for(int i=0;i<size;i++)

{

if(wdContext.node<TableNode>().get<TableNodeElementAt(i).get<value1>==null>)

wdContext.node<TableNode>().get<TableNodeElementAt(i).set<Value1>("__________");

}

Regards

LN

Edited by: Lakshmi Narayana Chowdary Namala on Sep 1, 2008 8:54 AM

Former Member
0 Kudos

Hi Lakshmi ,

I want to paint a table with these lines(beacause I can paint table directly here), the lines not the focal point.

As we kown, in Webdynpro Java there is component "table" can "binding" with result table of RFC or BAPI.

But the table can display header line and value line only.

I want that the "table " component display that both header line and line item(like the table which I painted), like some table in ABAP.

Does it possible ?

Best Regards,

Chen Jianguo

sureshmandalapu6
Active Contributor
0 Kudos

Yes, It is posible.

thanks

Suresh

Former Member
0 Kudos

Hi Suresh,

Do you known how to do it ?

Best Regards,

Chen Jianguo