cancel
Showing results for 
Search instead for 
Did you mean: 

changing TextViewDesign of particular or selected rows?

Former Member
0 Kudos

Hi

I would like whether a particular row of table can be of different design? I know a particular column can be of different design but can a similar thing can be done with particular row of a table?

Thanks and Regards

Srikant

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

You can control the properties of table cell editors in certain rows by binding these properties to attributes inside the table's data source node.

Armin

Answers (1)

Answers (1)

former_member185029
Active Contributor
0 Kudos

Hi Srikant,

you need to do it programatically.

Define a context in the node which is assigned to your table. The context should of type TextViewDesign.

Then in the loop you can set the design as below


wdContext.nodeTableElement().getTableElementAt(i).setDesign(WDTextViewDesign.STANDARD);

Where "design" is the context name defined in the node Table.

Ashutosh