cancel
Showing results for 
Search instead for 
Did you mean: 

Ordering of input fields in OVS

Former Member
0 Kudos

Hi all,

I am using OVS for certain UI fields. I want to re-arrange the input fields in the OVS UI. Now it is like

Name|Age|Country. I want it as Country|Name|Age. Can this be done?

Regards,

Satyajit.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Satyajit,

This depends on several factors.

First do you use OVS over node or OVS with query?

I guess that order is "natural" order. For query order is the same as order of:

ICMIQuery
  .associatedInputParameterInfo()
    .iterateProperties()

For node I guess it is the same as

IWDNode.getNodeInfo().iterateAttributes()

, that seems to reflect order of adding attributes to node info.

So in first case you may only wrap original query with your own proxy, that returns properties in necessary order or even hide them (hmmm..., nice idea!).

In second case try to remove all attributes from node, then create them in necessary sequence.

Valery Silaev

EPAM Systems

http://www.NetWeaverTeam.com

Answers (1)

Answers (1)

Former Member
0 Kudos

Any thoughts on this?