Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
225
cellClick get wrong colKey when using groupBy
posted

Hi all,

I have a Problem when using the cellClick Event and the groupBy Feature.

using the following colums:

columns: [
                      { key: 'id', headerText: 'Id', width: '20%', dataType: 'number' },
                      { key: 'projectNo', headerText:'Projektnr',dataType:'string', width:'20%', formatter:formatNameColumn,unbound:true},
                      { key: 'name', headerText: 'Projekt', width: '20%', dataType: 'string'},
                      { key: 'description', headerText:'Projektbeschreibung',width: '20%',dataType:'string'},
                      { key: 'customer', headerText:'Kunde', width:'20%',dataType:'string'},
                      { key: 'company', headerText:'Firma', width:'20%',dataType:'string'}

I get projectNo when I click in a cell of the projectNo column.

If I Group the grid by any other column, now I get name as the colKey in the cellClick Event, which is the key of the following column. It seems that the cellGrid Event doesn't work correctly.

Best regards

Andreas