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

Pages: [1] 2
1
Great!

Do you know when the next version will be released?

2
Hello.

In "local sorting" demo i have changed "height" to "flexHeight:true".

After that scroll don't works in firefox:



When i'm trying to scroll anything is happening.

PS. I have newest version of Firefox (on previous Param Query version it worked fine).

Best
Przemek

3
Hello,

I have problem with scrolling Param Query table rows under Firefox.

I have for example table with 500px height and 300 rows, when i'm scrolling (using mouse scroll) under Chrome the list is scrolling down (as it works in 2.3) but under Firefox it don't works :(

--
Best
Przemek

4
ParamQuery Pro Evaluation Support / Re: Copy and Paste On Mac
« on: January 28, 2015, 02:40:02 pm »
It works on version 2.3

5
Thanks, you helped me!

6
I have found in documentation column > filter example:

JSON data i.e. [ { labelIndx: label1, valueIndx: value1}, { labelIndx: label2, valueIndx: value2},..]
labelIndx, valueIndx have to be provided in this case. groupIndx can also be provided when grouping is required in select list.


but my json don't works:

Code: [Select]
[
{
groupIndx: "Copywriting",
labelIndx: "yyy",
valueIndx: 14
},
{
groupIndx: "Copywriting",
labelIndx: "yyy",
valueIndx: 15
},
{
groupIndx: "Copywriting",
labelIndx: "Visual tekst",
valueIndx: 24
},
{
groupIndx: "Stylists Team",
labelIndx: "xxx",
valueIndx: 25
},
{
groupIndx: "Stylists Team",
labelIndx: "xxx",
valueIndx: 27
},
{
groupIndx: "Stylists Team",
labelIndx: "xxx",
valueIndx: 28
}
]

7
Hello, thanks for your help!

I have another question about optgroup in select filter.

How should prepare connection between group and elements which i'll get using ajax...

I would like to do something like in paramquery example but using remote data:

Code: [Select]
Continent
- country
- country
Continent
- country
- country
Continent
- country
- country

?

8
Thanks again, it works!

Another question in this topic is about pagination.

I have noticed that when i select NO, i go to second results page and change to YES i don't see any results because i have results with YES only on 1 page.

9
Great, thanks!

Is there any way to get options from server ?

10
Hello,

I'm trying to prepare SELECT options for remote filtering and i don't know how to do it.

This is column in colModel:

Code: [Select]
  {
        title: "Active",
        dataIndx: "Active",
        filter:{
            prepend: { '': 'Select' },
            type: 'select',
            attr: 'single',
            condition: 'equal',
            listeners: ['change'],
            value: ['xxx', 'yyy']
        }           
    },

I would like to have "xxx" and "yyy" in select options in filter header but it don't works.

Please tell me how can i do it.

11
Thanks it works.

12
I try set dataModel.data option and have I a problem.
This is my code:

Code: [Select]
$('div#pqgrid').pqGrid("option", "dataModel.data", response.data);
$('div#pqgrid').pqGrid("refreshDataAndView");
console.log(response.data);
console.log($('div#pqgrid').pqGrid("option", "dataModel.data")); //return null
$('div#pqgrid').pqGrid( "filter", {
data: [
    { oper: 'replace', dataIndx: 'ID', condition: 'contain', value: campaignRef }
]
});


My problem is filter below data setter is not working. (exactly show empty results)
Althought I set dataModel.data the console.log return null.
I thought refreshDataAndView working asynchronous but when I comment filter, console.log with dataModel.data return valid results:

Code: [Select]
$('div#pqgrid').pqGrid("option", "dataModel.data", response.data);
$('div#pqgrid').pqGrid("refreshDataAndView");
console.log(response.data);
console.log($('div#pqgrid').pqGrid("option", "dataModel.data")); //return valid data
//$('div#pqgrid').pqGrid( "filter", {
//data: [
//    { oper: 'replace', dataIndx: 'ID', condition: 'contain', value: campaignRef }
//]
//});

filterModel.type and dataModel.location are "local"

I will be very grateful for help.

13
Hi,

I have big problem with ParamQuery Grid PRO, many users told me, that if they have smaller window with than grid with they see cutted grid without any possible way to scroll page right and see rest of the grid.

In this example we have grid width about 1300px and window with width 900px, page is scrolled down and as you see i havent any possibility to move page right and see the rest of columns.



I'm not interested in having grid with widht 900px and scroller inside grid but scrolling page right to see bigger grid.


14
Hello,

How to copy cell content without making field editable?


15
Help for ParamQuery Pro / Grid with subgrids (sublists)
« on: June 10, 2014, 01:11:10 pm »
Hello,

I'm looking an example for subgrids in Param Query PRO, i think that i saw it some time ago.

In Kendo Grid it looks like that:





Have a nice day!
Przemek

Pages: [1] 2