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.
Asked
Active
Viewed 137 times
1 Answers
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
-
yes, it no longer show OK and Cancel Button, but it show dialog box. – Se Song Oct 19 '17 at 01:28