3.2.0

Call js function after sorting grid

Hi!

Is there a way I can call a js function after sorting? when the user clicks on the column header, sorting will be done then the function must be called.

Anyone with the solution???

Thanx!
Tebogo
June 28,
something like this (version 1.0) -

obj.sort1 = obj.sort;

obj.sort = function(index, direction){
  this.sort1(index, direction);
  // add your stuff here
}
Alex (ActiveWidgets)
June 28,
Hi Alex,

Thanks for your reply, but the function I put on the "//add your stuff here" line runs before sorting.

Anyway I can have it run after sorting is done?
Tebogo
June 29,

This topic is archived.

See also:


Back to support forum