Custom Action - How to reload table?

using 2026 how is best to reload the table after Row Custom Action event?

$this->CustomActions["call"] = new ListAction(
"call",
"Call",
Allowed: IsLoggedIn(),
Method: ActionType::AJAX,
Select: ActionType::SINGLE,
ConfirmMessage: "Call?",
Icon: "fa-solid fa-bell-concierge ew-icon",
Success: "?????"
);

You use ActionType::AJAX and ActionType::SINGLE, it means you select a record and send it by Ajax, then you need to add your Success function (a JavaScript function to be called after the Ajax action), e.g. if you reload the whole page by window.reload(), then you can simply set Success as "reload". Otherwise, you may write your own function in Client/Startup Script, e.g.

window.mySucccess = () = { ... };

Then set Success as "mySuccess".