Posted 6 years ago
by Antoine Picard
Version: 18.1.0673
Platform: .NET 4.7
Environment: Windows 10 (64-bit)
Hi !
I wanted to have all my categories collapsed by default so I tried something like
protected override ICategoryModel CreateCategoryModel(string name, IDataFactoryRequest request)
{
var categoryModel = base.CreateCategoryModel(name, request);
categoryModel.IsExpanded = false;
return categoryModel;
}
in my dataFactory, but it doesn't work.
What do I do wrong ?