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

Pages: [1] 2 3 4
1
Help for ParamQuery Grid (free version) / Paramquery grid update row data
« on: January 03, 2024, 06:46:18 pm »
Hi,

When I change the cell value by editor dropdown I need to update other cells and need to mark them as dirty so that I can get the cells that have been changed to save the data. Help me on this scenario

2
the dropdown is not hiding immediately after selecting an option and only hide and show the cell when you move to the next cell

3
Hi team, How to get the context of clicked grouped header in the grid for example Balance sheet header in the image

4
But regarding point 3, Before expand/ collapse a particular node how to identify whether the node is in collapsed or expanded state?

5
Hi Team,
Is it possible in pq grid to expand/collpase rows dynamically either in group model /tree grid having the button at the grid header.
ex:
see in the pic collpase.png , I am having + button in the header customer, master lf, and localfamily and all the first 4 columns are under groupmodel.
when I click on + button in the master lf header , the rows should expand as in the expand.png, i.e rows should expand upto masterlf column
similarly when I click on + button in the local family header ,  rows should expand upto localfamily column.

Is it possible to have this structure in pq grid. Please let me know

6
I have a editable select column like shipVia in the demo below, I am getting the value using the hidden column like shipViaId, single cell edit working fine and also in the pqgrid changes I am able to get the value .But if I drag the cell value i.e autofill the current cell value to range of cells by dragging down and then If I see the pqgrid changes in the updateList hidden column value is not updating It is still remains the old value. Issue1 image is normal edit .Issue2 image is drag and drop autofill values

https://paramquery.com/pro/demos/editing_custom

7
Is it possible to remove grouped columns and rows while exporting the grid, because of grouped columns it is difficult to apply column filters


8
Help for ParamQuery Grid (free version) / Custom validation throwing error
« on: September 06, 2022, 01:10:24 pm »
We are custom validation based on our requirement, but while trying to edit a value it is throwing below console errors.
FYI version we are using in 7.2.0

9
We are not giving height : flex to the grid, we are just assigning display flex to grid reference div

10
flex properties which i applied on my page working fine for pqgrid version 7.2.0 ,
the height also gets adjusted dynamically based on the content in the page but
If I upgrade to verision 8.3.0 page scroll is coming unneccessarily & height not adjusting.
 Please find the screenshots

12
As you said history is resetting and  it is resettting the toolbar section alone but the edited cell is not resetting it is still having the dirty red mark and edited value

13
Hi Team,

We are using the tool bar section in the PQ grid and When we have edited the cell value and after applying the vertical scroll bar with pagination, history is resetting so the tool bar section goes to initial state(disabled state). So we couldn't able to see the latest changes in the toolbar . Could you please check the attachment of  NormalCellEdit.jpg and CellEditWithPagination.jpg for you reference. Please assist us to persist the history on pagination.

Reference Link : https://paramquery.com/pro/demos/virtual_scroll

Please add the below snippets in the above reference link and you can see the History Resetting issue.

 history: function (evt, ui) {
              var $tb = this.toolbar();
                if (ui.canUndo != null) {
                  $("button.changes", $tb).button("option", { disabled: !ui.canUndo });
                }
                if (ui.canRedo != null) {
                  $("button:contains('Redo')", $tb).button("option", "disabled", !ui.canRedo);
                }
                $("button:contains('Undo')", $tb).button("option", { label: 'Undo (' + ui.num_undo + ')' });
                $("button:contains('Redo')", $tb).button("option", { label: 'Redo (' + ui.num_redo + ')' });
            },
          toolbar: {
              items: [
                {
                  type: 'button', icon: 'ui-icon-disk', label: 'Save', cls: 'changes', listener: function () {
                    self.saveChanges();
                  },
                  options: { disabled: true }
                },
                {
                  type: 'button', icon: 'ui-icon-cancel', label: 'Reset', cls: 'changes', listener: function () {
                    this.rollback();
                    this.history({ method: 'reset' });
                  },
                  options: { disabled: true }
                },
                { type: 'separator' },
                {
                  type: 'button', icon: 'ui-icon-arrowreturn-1-s', label: 'Undo', cls: 'changes', listener: function () {
                    this.history({ method: 'undo' });
                  },
                  options: { disabled: true }
                },
                {
                  type: 'button', icon: 'ui-icon-arrowrefresh-1-s', label: 'Redo', listener: function () {
                    this.history({ method: 'redo' });
                  },
                  options: { disabled: true }
                },
                {
                  type: "<span class='spanGridStatus'></span>"
                }
              ]
            },


Thanks


14
Hi Paramquery, any update on this issue?

15
Bug Report / Re: Excel export format issue during import
« on: September 27, 2021, 12:04:05 pm »
Thanks. Is there any estimated time to get the issue resolved.

Pages: [1] 2 3 4