Skip to main content

openEndDrawer

openEndDrawer

Slides a drawer open from the current form's trailing edge.

Parameters

  • formPath (string): The path or ID of the form to show in the drawer
  • linkArg (any): The argument to pass to the opened form (may be null)
  • callback (function): Callback that receives the result when the drawer closes (may be null)

Returns: None (void)

Description

Opens a side drawer that slides in from the right of the screen in an LTR layout. Only one drawer or sheet can be open at a time.

Example

$form.openEndDrawer("menu/filterPanel", null, function(result) {
if (result) {
$log.i("필터 적용:", result.filter);
}
});

Related

  • $form.openStartDrawer(formPath, linkArg, callback) — leading-edge drawer
  • $form.openSheet(formPath, linkArg, callback) — bottom sheet