Developer Function: Script: $p.events.on_kanban_load
## Overview
This explains how to specify a method to be executed when the "[Kanban](/en/manual/table-kanban-chart)" is loaded or when the content to be displayed is changed by a filter, etc.
## Syntax
When setting up a script, be sure to check "Kanban" for "Output destination".
##### JavaScript
```
$p.events.on_kamban_load= function () {
//Processing content
}
```
## Usage example
If you set the following sample code to the Pleasanter script, a message will be displayed at the bottom of the screen when the Kanban screen is loaded.
##### JavaScript
```
$p.events.on_kamban_load= function () {
$p.setMessage('#Message', JSON.stringify({
Css: 'alert-success',
Text: 'The Kanban has been loaded.'
})
);
}
```