Jump to content

ATK Action Handlers: Difference between revisions

From NusaATK
No edit summary
 
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
ATK natively supports the following actions:
ATK natively supports the following actions/handlers:


===[[ATK Reference Actions Add|Add]]===
;[[Add]]: Displays a form for the user to create a new record
===[[ATK Reference Actions Admin|Admin]]===
;[[Addorcopy]]: Allows the user to select an existing record to base a new record on
===[[ATK Reference Actions Copy|Copy]]===
;[[Admin]]: Displays a screen to manage records (a record list)
===[[ATK Reference Actions Delete|Delete]]===
;[[Copy]]: Copies a record
===[[ATK Reference Actions Document|Document]]===
;[[Delete]]: Deletes a record from the database (after confirmation)
===[[ATK Reference Actions Editcopy|Editcopy]]===
;[[Document]]: Generates an OpenOffice document from a record
===[[ATK Reference Actions Edit|Edit]]===
;[[Editcopy]]: First creates a copy of a record and then displays a screen to edit the copied record
===[[ATK Reference Actions Export|Export]]===
;[[Edit]]: Displays a screen to edit an existing record
===[[ATK Reference Actions Feedback|Feedback]]===
;[[Export]]: Opens a CSV export screen where the user can set options and generate a CSV file
===[[ATK Reference Actions Import|Import]]===
;[[Feedback]]: Displays a feedback message; used by other actions to display a success or failure message
===[[ATK Reference Actions Save|Save]]===
;[[Import]]: Opens a CSV import screen with parameters to import CSV files
===[[ATK Reference Actions Search|Search]]===
;[[Save]]: Saves a new record to the database
===[[ATK Reference Actions Select|Select]]===
;[[Search]]: Displays a standard extended search form and a recordlist with results
===[[ATK Reference Actions Smartsearch|Smartsearch]]===
;[[Select]]: Displays a list of records with a select icon, useful to select a record for further processing
===[[ATK Reference Actions Update|Update]]===
;[[Smartsearch]]: Opens an AJAX based extended search form
===[[ATK Reference Actions View|View]]===
;[[Update]]: Updates an existing record in the database
===[[ATK Reference Actions Xml|XML]]===
;[[View]]: Displays a read-only page with a record
__NOTOC__
;[[XML]]: Exports a record to XML format
 
 
Actions can be captured using [[Listeners|Action Listeners]].
 
 
Making your own actions (atkRegisterNodeHandler, [[Custom (record) actions]])

Latest revision as of 10:44, 12 February 2010

ATK natively supports the following actions/handlers:

Add
Displays a form for the user to create a new record
Addorcopy
Allows the user to select an existing record to base a new record on
Admin
Displays a screen to manage records (a record list)
Copy
Copies a record
Delete
Deletes a record from the database (after confirmation)
Document
Generates an OpenOffice document from a record
Editcopy
First creates a copy of a record and then displays a screen to edit the copied record
Edit
Displays a screen to edit an existing record
Export
Opens a CSV export screen where the user can set options and generate a CSV file
Feedback
Displays a feedback message; used by other actions to display a success or failure message
Import
Opens a CSV import screen with parameters to import CSV files
Save
Saves a new record to the database
Search
Displays a standard extended search form and a recordlist with results
Select
Displays a list of records with a select icon, useful to select a record for further processing
Smartsearch
Opens an AJAX based extended search form
Update
Updates an existing record in the database
View
Displays a read-only page with a record
XML
Exports a record to XML format


Actions can be captured using Action Listeners.


Making your own actions (atkRegisterNodeHandler, Custom (record) actions)