Inline Edit
This is a function that allows users to add,modify, or delete data within the lis. The default value is No
, and changing it to Yes
allows selecting functions (New, Edit, Delete, Save, Cancel) to be performed via Edit. For saving and deleting, you need to register the row-inline-save
and row-inline-delete
services, respectively. Additionally, a separate configuration is required for Inline Edit in the TableColumn Control, and detailed information can be found in the Component Attribute.
[Image1. Before registering Inline Edit ]
[Image2. Inline Edit - Save Example]
[Image3. Inline Edit - Delete Example]
[Image4. Inline Edit – ((In addition to Delete and Save, in order))New, Edit, Close]
- How To Create
- Set the
Inline Edit
of theList Component Attribute
to "YES" and select the desired functionalities to use.
- For the
Inline - Save
case, select therow_Inline_save
as the Service Type of the Component Service, and apply theSave
lambda.
- Inline - Delete, select
row_Inline_delete
as the Service Type in the Component Service, and display a message box to confirm deletion. If the selection result in the message box isAgree
orAccept,
apply thedelete
lambda and reload the List Component.
- Inline - New, Edit, Cancel, after selecting
YES
for Editable in the Component propertiesInline-Edit
section, choose the desired functionalities from the checkboxes.