ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: EPM Solutions on March 18, 2019, 05:55:41 pm

Title: Sorting is not working in Fire Fox browser
Post by: EPM Solutions on March 18, 2019, 05:55:41 pm
 Hello,

      Whenever I double clicking inside New rank column, a drop down showing values for new rank by which new rank column get sorted and New rank are coming in ascending order.
This is above my needed feature for my grid as below link I shared.

The above sorting is not working in Fire Fox Browser (but it properly working in Google Chrome and IE).
Please help me to work this feature in Fire Fox browser also.

Here is URL for file:
https://plnkr.co/edit/DH6baZRbPQ8iLsJCha6g?p=preview
Title: Re: Sorting is not working in Fire Fox browser
Post by: paramvir on March 18, 2019, 07:15:44 pm
you could use a timeout to call sort function asynchronously in the editor change event.

Code: [Select]
setTimeout(function(){
      rank_sorter(rankIndx, rankVal, dataIndexName); 
})
Title: Re: Sorting is not working in Fire Fox browser
Post by: EPM Solutions on March 19, 2019, 05:13:20 pm
Thank You.