Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - gtwangi

Pages: [1]
1
There is another issue about exporting data.
Negative number is exported as number on v5.5 properly. but after I upgraded pqgrid version to 5.6.1, negative number is exported as text.



How I could export this as number?

2
I appreciate your help.
The solution you provided doesn't work on v5.5.0 (I'm using). it probably works well above v5.6

1.
Is there a solution for v5.5.0?

2.
How compatible are v5.5.0 and v5.6.1? which part of code should I modify when upgrading my app to v5.6.1?





3
When exporting leading '0' values(ex. '012345') by using 'exportData' method, the leading zero are deleted in Excel(12345 instead of '012345').

in pqgrid    ->>  in excel
'012345' ->>  12345

Is there way to preserve the leading zero while exporting to excel?



4
I tried to add format option on my code, but I couldn't resolve this issue.
Would you please give me a simple example?

5
When using KEY-VALUE pair data on filter options as below, inputting keywords in text box on filter popup searches KEY instead of VALUE.
Could I make it find VALUE?

...
filter : {
  crules:[{condition: "equal"}],
  options: [{k1:"AAA"},{k2:"BBB"},{k3:"CCC"}]
}
...

6
I resolved that.  :)
thank you!!!

7
I use both infinite scrolling and remote filter on the same page.
so I think that I need to clear grid data after filter is selected. otherwise unfiltered data remain in grid.
this works well on free version.(v2.4.1)
How could I use listener for remote filter as free version? or Is there alternative ways?

8
ParamQuery Pro Evaluation Support / remote filter listener is not working
« on: December 17, 2018, 07:17:33 pm »
I am using pqgrid v5.5 and chrome.
I expect that when filter option is selected, the listener function is called.
but 'change' listener is not firering.
what am I missing?

{
    dataIndx: "TmpltNm",
    title: "Template",
    filter: {
       crules:[{condition:'equal'}],
       options : app.sheet.getFilterOptions("TMPLT_NM")
       listener : {
         change : function(ui, evt){
         ...
        }
    }
}

}

9
Help for ParamQuery Grid (free version) / About grid filter
« on: November 15, 2018, 12:58:00 pm »
Hi, I have questions about grid filter

1. How to get the status indicating a grid is filtered or unfiltered?
2. How to get whole data from filtered grid?(including unfiltered row)

thank you.

Pages: [1]