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.


Topics - MichalV

Pages: [1]
1
Bug Report / New row comit and pq_detail column
« on: March 03, 2025, 08:58:19 pm »
Hi Paramvir,

After the data saving the "add" commit fails if the grid includes pq_detail column (recIndx remains empty)
As a workaround I use the following code before the comit:

Code: [Select]
grid.Columns().find(function (column) {
    if (column.dataIndx == "pq_detail") {
        grid.Columns().hide({ diHide: ["pq_detail"] });
    }
});


And the following after the commit:

Code: [Select]
grid.Columns().find(function (column) {
    if (column.dataIndx == "pq_detail") {
       grid.Columns().hide({ diShow: ["pq_detail"] });
    }
});

Is it possible to fix it in the next release? E.g. skip the pq_detail column in the grid.commit function?
Thanks in advance for you help!

2
Help for ParamQuery Pro / How to remove column dragging from history
« on: February 15, 2025, 10:34:24 pm »
Hi Paramvir,
Is there an option to remove column reordering from history? So the save/undo/redo buttons are not activated upon column reordering?
Thanks.

3
Bug Report / Filter menu display bug in 10.1.0
« on: December 29, 2024, 06:36:12 pm »
Hi Paramvir,

There is a small bug in displaying the filter menu where the close "X" button is displayed on the left side of the menu
You can check that using Local filtering demo and clicking on 3 dots.
Please help to fix that.

Thanks in advance!

4
Bug Report / Bug in 10.0.0 autocomplete not filtering
« on: October 25, 2024, 07:55:19 pm »
Hi Paramvir
First of all thanks much for all your great work!

I have found out the autocomplete dropdowns do not filter data based on the cells text in version 10.0.0
You can see the issue in the 10.x demo pages "Inline editing->Editors & validations" e.g. the Ship Country column
In 9.x autocomplete works well.
Please could you help?

Pages: [1]