Developer Function: Server Script: responses.Reload
## Overview
This method reloads the items specified in the "[Server Script](/en/manual/table-management-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"><ul><li><a href="/en/manual/table-management-server-script">Table Management: Server Script</a><span>08.13.2024 up</span></li></ul></article></div><input id="SearchTextHidden" type="hidden" value="" />