DHTMLX GroupBy

Hi,

I have positionned a groupby on a dhtlmxgrid which works.
I have also put a text_filter and a select_filter on this grid.
When i use these filters the command groupby is not still working.
Is there a solution to force the groupby command while using the filter

Here is my code :
actionsGrid = new dhtmlXGridObject(‘actions_container’);
actionsGrid.setImagePath(folderimagename);
actionsGrid.setHeader(“Type d’évènement, Identifiant , Code, Libelle, Descriptif, Date de création, Date de fin prévue, Date report délai, Date solde, Statut avancement, Priorité, Priorité personnelle, Lien”);
actionsGrid.setColumnIds(“type, identifiant, code,libelle, descriptif, date_creation, date_fin,date_report,date_solde,statut, priorite, priorite_perso, lien “);
actionsGrid.attachHeader(” , ,#text_filter,#text_filter, , , , , ,#select_filter, , , “);
actionsGrid.setInitWidths(“100,,,,,,,,,,,,”);
actionsGrid.setColAlign(“left,left,left,left,left,left,left,left,left,left,left,left,left,left”);
actionsGrid.setColSorting(“str,str,str,str,str,str,date,date,date,date,str,str,str,str”);
actionsGrid.setColTypes(“ro,ro,ro,ro,ro,ro,ro,ro,ro,ro,ro,edtxt,ro”);
actionsGrid.setSkin(“light”);
actionsGrid.attachEvent(“onBeforeRowDeleted”,doOnBeforeRowDeleted);
actionsGrid.enableColumnAutoSize(true);
actionsGrid.setDateFormat(”%d/%m/%Y”);
actionsGrid.setSerializationLevel(false,false,false,false,false,true);
actionsGrid.attachEvent(“onRowCreated”, function(id){
//traitement de la date de fin prévue
var date_fin_prevue = actionsGrid.cells(id,6).getValue();
date_fin = getDate(date_fin_prevue);
//traitement de la date du jour sans les heures
maintenant = new Date();
var aujourdhui = new Date(maintenant.getYear(), maintenant.getMonth(), maintenant.getDate());
//Coloriage
if (compare(aujourdhui,date_fin) >= 0 ) {
for (i=0;i<12;i++) {
actionsGrid.cells(id,i).setTextColor(“red”);
}
} else {
for (i=0;i<12;i++) {
actionsGrid.cells(id,i).setTextColor(“black”);
}
}
return true;
});

// Raise init
actionsGrid.init();
actionsGrid.setColumnHidden(1,true);
//Group By
actionsGrid.groupBy(0);
actionsGrid.loadXML(filenameactions);

Thanks in advance




Unfortunately we cannot reproduce this issue locally. Please check if you are using latest version of dhtmlxGrid.