Sorry, I’m not seeing where to ask questions about dataStore so I hope here is okay.
I have a grid and I want to have it grouped by column 0 when it first loads, so I have:
var tasks = new dhtmlXDataStore({
url:"php/tasks.php"
});
grid3.init();
dp3 = new dataProcessor("php/taskDP.php");
dp3.init(tasks);
grid3.sync(tasks);
grid3.groupBy(0);
It worked while I was loading with just dataprocessor/connector, but no longer does now that I’ve added dataStore. What am I doing wrong?