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

Pages: [1]
1
Help for ParamQuery Pro / Re: Header problem with IE8
« on: March 11, 2014, 02:18:36 pm »
Hello,

Effectivly, I test your page on my IE8 and it work fine.

Actually I use bootstrap for the site and maybe it interfair with the grid render.
In my grid I have a space before the header title, not in yours.

I dig a little bit and find some difference also from your version and mine,
The cell generate on my side have the following class on the header row: "pq-grid-col pq-align-center pq-right-col"
and yours have : "pq-grid-col pq-wrap-text pq-right-col".

Regards,
Michel.

2
Help for ParamQuery Pro / Re: Header problem with IE8
« on: March 11, 2014, 11:25:34 am »
Here it is:
Code: [Select]
grid.colModel =
    [
        { title: "", hidden: true, editable: false, dataIndx: "FIELD1"},
        { title: "<span data-i18n='table.field2'>Field2</span>", dataType: "string", align: "center", width: 100, editable: false, dataIndx: "FIELD2",
            filter: { type: 'select',
                options: ['','v2'],
                condition: 'equal',
                listeners: [{ change: function (evt, ui) {
                    filter(conditionGridId, "FIELD2", $(this).val());
                }
                }]
            }},
        { title: "<span data-i18n='table.field3'>FIELD3</span>", dataType: "string", align: "center", width: 100, editable: false, dataIndx: "FIELD3", getEditCellData: function (ui) {
            var $cell = ui.$cell;
            return $cell.children().val();
        },filter: { type: 'select',
            options: ['', 'LS'],
            condition: 'equal',
            listeners: [{ change: function (evt, ui) {
                filter(conditionGridId, "FIELD3", $(this).val());
            }
            }]
        }
        },
        { title: "<span data-i18n='table.field4'>FIELD4</span>", dataType: "string", align: "center", width: 100, editable: false, dataIndx: "FIELD4",
            filter: { type: 'select',
                options: ['', 'v2'],
                condition: 'equal',
                listeners: [{ change: function (evt, ui) {
                    filter(conditionGridId, "FIELD4", $(this).val());
                }
                }]
            }},
        { title: "<span data-i18n='table.field5'>FIELD5</span>", editable: true, align: "center", dataType: "float", width: 100, dataIndx: "FIELD5"},
        { title: "<span data-i18n='table.field6'>FIELD6</span>", editable: true, align: "center", dataType: "float", width: 100, dataIndx: "FIELD6"},
        { title: "<span data-i18n='table.field7'>FIELD7</span>", editable: true, align: "center", dataType: "float", width: 100, dataIndx: "FIELD7"},
        { title: "<span data-i18n='table.field8'>FIELD8</span>", editable: true, align: "center", dataType: "float", width: 100, dataIndx: "FIELD8"},
        { title: "<span data-i18n='table.field9'>FIELD9</span>", editable: true, align: "center", dataType: "float", width: 120, dataIndx: "FIELD9"}
    ];

3
Help for ParamQuery Pro / Header problem with IE8
« on: March 10, 2014, 08:26:56 pm »
Hello,

With IE 8, the header of my grid are crop,
The div that produce the problem is the one with the class "pq-header-outer ui-widget-header".
With IE8, I have an inline-style with height at 45px.
With IE11, the height is at 56px, that look better.

In the attachement, IE11 is at the left and IE8 at the right.

I have another grid more complexe with grouping header, filter that have the same issue.

How can I fix this issue?

Thanks,
Michel.

4
Help for ParamQuery Pro / Re: Header grouping with freeze columns
« on: February 26, 2014, 09:13:26 pm »
Excellent!!

Thanks a lot.

5
Help for ParamQuery Pro / Re: Header grouping with freeze columns
« on: February 18, 2014, 01:34:06 pm »
When the next version are planned?

I have a solution, most a workaround, for colum that can be modified I will render a button and handle it by myself.
When new version will be deploy, I will removed this feature.

Thanks,
Michel.

6
Help for ParamQuery Pro / Re: Header grouping with freeze columns
« on: February 17, 2014, 10:43:12 pm »
I just discover that with this flag at false, I can no more edit the grid.

Is there a solution to handle both case?

Thanks,
Michel.

7
Help for ParamQuery Pro / Re: Header grouping with freeze columns
« on: February 17, 2014, 10:32:24 am »
Excellent!!
That work perfectly!

Thanks a lot.
Michel.


8
Help for ParamQuery Pro / Header grouping with freeze columns
« on: February 17, 2014, 12:51:06 am »
Hello,

When I setup 1 or more freezing colum and when I have a grouping colum header, I have trouble when scrolling to the right.
When the first sub colum of the first group are sliding to the left the header of the first group disapear.

In the attached example:
Col 1 & col 2 are freeze colum.
Group 1 and 2 have 5 sub columns.

On the second picture, when the first column of the first group disapear, the main column of the group disapear also and the main colum of group 2 stay, but over sub column of group 1.

How can I fix that?

Thanks,
Michel

Pages: [1]