Max

Results 8 comments of Max

I think this is a duplicate of https://github.com/swimlane/ngx-datatable/issues/765

Hi @amcdnl, The use case is server side pagination / sorting. For example, I'm on page 5 and sort by id column, the server returns the sorted results but those...

To continue, I would expect the page to stay the same when sorting by default. If someone wants to reset the page to 1 before sorting that's fine, but it...

Sorry, one last thing to make it clear. The pager should respect the results returned from the server instead of simply resetting the offset to 0.

Is it related to https://github.com/angular/angular/issues/17572 by any chance?

As @maxisam noted, calling event.cellElement.blur() from (activate) works for me. _component.html_ ```html ``` _component.ts_ ```typescript onActivate(event: any) { if (event.type === 'dblclick') { event.cellElement.blur(); this.edit(event); } } ```

@needforspeed I needed that for double click, but as @maxisam showed it should work for single click as well.

Also, if this is the case would be nice to set the default "empty" value strategy for traits in the configuration of a component. For example, `emptyValue: ""` or `emptyValue:...