0

How to remove OK and Cancel button on VM Jaxb to make user more easier to input value and move to next field using just single tab. I want to use VM Jaxb as DTO to transfer data between user and object. So user will not access to object directly.

enter image description here

Se Song
  • 1,613
  • 2
  • 19
  • 32

1 Answers1

1

Create an action that lets all the properties be updated in a single go:

public VM update(String code, String firstName, String lastName) { ... }

UPDATE:

The action can be invoked with an inline prompt by associating it with one of the properties using @MemberOrder or .layout.xml

@MemberOrder(named="lastName", sequence="1")
public VM update(String code, String firstName, String lastName) { ... }
Dan Haywood
  • 2,215
  • 2
  • 17
  • 23