Update the content of an item of accordion programmatically

Dear,
is that possible to update the content of an item of an accordion programmatically?

The new value does not come necessarily from the server. It could be computed on the client-side.

Thank you for your help.

Best Regards,
Martin

Hello,

please check the sample with loading data:

dhtmlxTouch_v12_120913/samples/09_template/02_ajax_content.html

in case of client-side update, you can change template property using define() method and call render() method to redraw the view:

$$(“content”).define(“template”,“New content”);
$$(“content”).render();