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 - MatsP

Pages: [1]
1
Help for ParamQuery Pro / Ctrl-C as a function?
« on: November 05, 2014, 01:02:29 am »
In my grid I can right-click to get a menu. I'd like to have a Copy menu item, but can't figure out how to call ctrl-c?

2
Help for ParamQuery Pro / Copy the header?
« on: November 02, 2014, 11:02:13 pm »
Is it possible to include the header of the grid when using ctrl-c?

3
News / Re: Upgrade to Pro Version 2.1.0
« on: May 29, 2014, 11:33:24 am »
Can't find where you have posted instructions on how to migrate from an older version of ParamQuery?

4
Help for ParamQuery Pro / text edit box ends up at the bottom in 2.0.3
« on: December 15, 2013, 05:41:49 pm »
I realize that the cell edit mode stopped working. Now the text edit box, ends up at the bottom of the grid.

Please explain all changes.


5
Help for ParamQuery Pro / Changes to rowSelect in 2.0.3
« on: December 15, 2013, 04:52:10 pm »
What are the changes made to rowSelect?
To extract the data from the event, I now have to use ui.rowData.<propery>, instead of earlier ui.dataModel.data[ui.rowIndx].<property>.

Please, document all changes made in an upgrade.

6
Help for ParamQuery Pro / Re: showLoading?
« on: November 20, 2013, 04:39:46 pm »
It's not browser specific, it's something else.

I made my own localization (Swedish) file, based on one of the included localization files.
After the initalization of the grid I run this code:
grid.pqGrid("option", $.paramquery.pqGrid.regional['se']);

The showLoading is not showing, only this "No rows to display" shows and in English as well.
If I remove this row:
grid.pqGrid("option", $.paramquery.pqGrid.regional['se']);
...then the showLoading is showing, but in English of course. If I keep that row, the showLoading is only showing when calling refresh, but in Swedish (so I know the localization file is correct).

I want showLoading to show when initalizating the grid and in the language I chosen.

7
Help for ParamQuery Pro / showLoading?
« on: November 19, 2013, 03:12:10 am »
How do I get the showLoading to work when the grid is loading the data the first time?
Right now it says "No rows to display" and after a second or two, the data shows.
However, when refreshing the grid after a cellsave, it pops up "Loading".

I am not using showLoading anywhere, so why does it work with refresh, but not on the initial load?

v. 2.0.3 on its way soon?

8
Help for ParamQuery Pro / Re: Infinite scrolling problem with IE
« on: November 11, 2013, 07:51:01 pm »
Do you have a date when this will be fixed?

Thx.
/Mats

9
Help for ParamQuery Pro / Re: Infinite scrolling problem with IE
« on: November 06, 2013, 07:24:01 pm »
Sorry, I meant IE11 of course (which came with Windows 8.1)

10
Help for ParamQuery Pro / Re: Infinite scrolling problem with IE
« on: November 02, 2013, 02:42:55 pm »
This problem was fixed in the 2.0.2 version, but seems to have come back now when I upgraded to IE10 (which came with Windows 8.1).

11
Help for ParamQuery Pro / Infinite scrolling problem with IE
« on: October 19, 2013, 05:33:49 pm »
I'm using option "flexHeight: true", which means the grid will be as high as the number of rows. I can't use Paging or flexHeight: false

The problem I'm having, is that when the grid is higher than the browser height, and you scroll down and click on a row, the whole grid jumps up or down. It doesn't stay where I just clicked.
To recreate the problem, I tested with the "Infinite scrolling" demo code from paramquery.com/demos, which uses the Base version (the Pro version has the same problem). I change the code to:   flexHeight: true.

The problem only occurs in IE (IE9 & IE10 tested), Firefox doesn't have the same problem. I have not tested other browsers.

I don't know if this is a similar problem:
http://stackoverflow.com/questions/14979365/table-scroll-bar-jumps-up-when-table-receives-focus-in-ie

Any thoughts on how this can be fixed?


12
Help for ParamQuery Pro / sortIndx and sortDir in Pro?
« on: September 19, 2013, 03:54:38 am »
In the Pro version, it seems like the remote sorting as changed.
This used to work in the free version, but now sortIndx and sortDir  are 'undefined'.
getUrl: function () {
   return {
        url: "order.aspx/GetOrderItems",
        data: "{'orderID':19069,'sortColumn':'" + this.sortIndx + "','sortDir':'" + this.sortDir + "'}"
   };


Pages: [1]