The resource view is selected by default and the scroll bar is moved to the line that has been selected

1,

Hello:
I selected the upper Gantt chart Owner: Anna’s task. I want to automatically select Anna’s data row in the resource view and move the scroll bar to the selected data row. I use the select() method, but it can only be selected , No automatic scrolling effect

     var resourcesStore = gantt.getDatastore(gantt.config.resource_store);
     resourcesStore.select(rowClickTask.execute_user_id);

Hello Liuy,
There is no built-in way to do that via the public API methods. You can do that by using the internal API, but it is not recommended as it can change and we won’t inform about it.
Here is an example:
https://snippet.dhtmlx.com/5/fcee0db37

1 Like

hello!remail Thank you, let me try