Developer Function: Server Script: responses.Reload
## Overview
This method reloads the items specified in the "「Server Script」".
## Syntax
```
responses.Reload(type, id)
```
## Parameters
|Parameter|Type|Required|Description|
|:----------|:----------|:---:|:---------------------------|
|type|string|○|Specify the area of the item to be reloaded. |
|id|string|○|Specify the item to be reloaded. |
## Usage Example
The following example gets the record in the record table for site ID: 123456 and uses the record information (record ID, classification A) to create and reload the list of choices for classification J in the filters on the list screen.
##### JavaScript
```
if (context.Action === 'index') {
const records = items.Get(123456);
for (let record of records) {
columns.ClassJ.AddChoiceHash(record.ResultId, record.ClassA);
}
responses.Reload('Filter', 'ClassJ');
}
```
## Related Information
<div id="ManualList">
<article class="s-blog_list_unit"><h2>
<h2>The specified information was not found.</h2>
<p><a href="/ja/manual">Return to top</a></p>
</article>
</div><input id="SearchTextHidden" type="hidden" value="" />