Question

Dynamic list

Here I am using creatio 8.3, 
I have a 1:M relation between sprints and tasks 
I added a list of tasks on sprint list page 
I want when load sprint page, tasks list be empty and when choose one of sprints it shows its related tasks (Already when choose one of sprints it shows its related tasks is applied)
not show all available tasks when load

Like 0

Like

1 comments

Hello,
In order to clear the list during the first load the most easy way woulb be to set it to null in the crt.LoadDataRequest handler, for example:
request.$context.DataGrid_9xso9hx = null;

Show all comments