Author Topic: Sorting is not working in Fire Fox browser  (Read 2129 times)

EPM Solutions

  • Pro Ultimate
  • Full Member
  • *
  • Posts: 182
    • View Profile
Sorting is not working in Fire Fox browser
« 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

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6298
    • View Profile
Re: Sorting is not working in Fire Fox browser
« Reply #1 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); 
})

EPM Solutions

  • Pro Ultimate
  • Full Member
  • *
  • Posts: 182
    • View Profile
Re: Sorting is not working in Fire Fox browser
« Reply #2 on: March 19, 2019, 05:13:20 pm »
Thank You.