Author Topic: How to get the unfiltered data (Pro 3)?  (Read 3206 times)

rickpqu

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 26
    • View Profile
How to get the unfiltered data (Pro 3)?
« on: August 14, 2015, 02:47:07 am »
Hi, when I used ParamQuery 2.4 Pro, I could get unfiltered data with pqGrid('option', 'dataModel').data. However, with ParamQuery Pro 3, I get filtered data with the same command. How can I access the unfiltered data when the table shows filtered data?

rickpqu

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 26
    • View Profile
Re: How to get the unfiltered data (Pro 3)?
« Reply #1 on: August 14, 2015, 02:51:02 am »
Nevermind. I found that dataModel.dataUF has unfiltered data.

rickpqu

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 26
    • View Profile
Re: How to get the unfiltered data (Pro 3)?
« Reply #2 on: August 14, 2015, 03:09:07 am »
Actually, dataUF was not what I was looking for. If my whole data has four rows 1, 2, 3, and 4, and after filtration only 2 and 3 are left, dataUF has 1 and 4. However, what I am looking for is an object that contains all of 1, 2, 3, and 4, in their original order. Is it possible to retrieve this object from a grid?