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

Pages: [1] 2
1
Bug Report / Select List Not working properly in pro version 8.x
« on: May 03, 2022, 11:04:26 pm »
Hello,

I am using the latest version 8.x of pqgrid. I am facing one issue in the select list.  When I reach the cell by tab which has a Select list. After that to select some item press the first letter of  that item for example "A". so it should auto select that first item starting with "A" but that item is not getting selected automatically, I need to  press "A" again to get it selected. When you press "A" the first time then it shows a blank item and on another time then it gets a selected item starting with "A".

This issue is in the latest version only. If I see in version 7.x then this is working fine. see below 2 examples of select list from pro version. in the Version 7.x working fine while 8.x I need to press character 2 times which I want to search in the list.

Even in the latest version if I click a cell by mouse click and then try to search then it gets selected for the first time only. The only issue is when I reach the cell by Tab press and then press any letter then it gets blank the first time.


version 7.x
https://paramquery.com/pro/demos77/datamap

version 8.x
https://paramquery.com/pro/demos/datamap

Can you please give me some solutions?

Thanks,

2
Hello,

Thanks for the workaround. It may be work.

3
Hello,

If there is not solution at moment. Is there anyway so I forcefully focus that cell or fire the cellClick event on that cell. so it get focused?

Thanks,

4
Hello,
I am using the latest pqgrid version. but I am facing some issue, even this is on latest demo also. Below is the jsfiddle and description of issue.
https://jsfiddle.net/t5p82mh4/

Issue : 
When we Click on any cell to edit for example "Company", Change the company name and click on the Revenue cell (or any other cell). then that cell does not come focused to enter value, I need to click again to make it in edit mode. 
If I do not change the value in any of the cells and just click different cells it gets focused properly. but as soon as cell values change and click on different cells then it does not come focused.

I have done lots of tests and found that if we use the "summaryData" option then this issue happens.

Can you please give me some solution on this. I need it to be focused on every single click even if I use the "summaryData" option.

Thanks.

5
Help for ParamQuery Pro / How to refresh summary row data
« on: September 06, 2019, 08:25:54 pm »
Hello,

I have pro version of pqgrid, and I have used "summaryData" and "formulas" option for sum of items in horizontally and vertically, See the attached fiddle.

http://jsfiddle.net/whj96qr0/1/

I have put top of grid left right navigation button to move cell data from left to right and vice versa for Column M1 to M6 and M6 to M1. This functionality working fine, But my problem is when I move left to right or right to left that bottom summary row total not moving.  I want to move it along with respective column or refresh it with new total. I have searched but not found any solution how to do it.

can you please help me on this critical stuff.

Thanks

6
Help for ParamQuery Pro / Auto row height increase as per content
« on: August 27, 2019, 08:00:36 pm »
Hello,

I am using pqgrid Tree, attached is the jsfiddle

http://jsfiddle.net/5mc1Lvb9/

See in my jsfiddle example 4 row, which have long description but not able to see full text until click on it.

What my problem is when there is long text description then text is wrap, that is okay, but I can't see the wrapped text. can we do anything so raw auto height as per wrapped text so it show all content properly.

Can you please help me what settings I need to do to resolve this.

Thanks



7
Help for ParamQuery Pro / Re: Select Editor not showing labelIndex text
« on: August 02, 2019, 07:17:25 pm »
Thanks, You're Great! It is working

8
Help for ParamQuery Pro / Select Editor not showing labelIndex text
« on: August 02, 2019, 05:49:31 pm »
Hello,

In Grid I have one select editor (dropdown) and that dropdown.

http://jsfiddle.net/m8j7udte/

Dropdown bind with Options list something like as below:
     pq.ItemTypeList = [
                { id: "1", name: "Item Type1", "pq_selected": true },
                { id: "2", name: "Item Type2" },
                { id: "3", name: "Item Type3" },
            ];

I have bind it with one column like

 {
                    title: "Item Type", dataIndx: "itemtypeid", width: 200, sortable: false,
                    editor: {
                        type: "select",
                        labelIndx: "name",
                        valueIndx: "id",
                        prepend: { "Default": "Default" },
                        options: pq.ItemTypeList,
                    },
                    render: function (ui) {
                        var cellData = ui.cellData;
                        if (cellData != null && cellData != "") {
                            return ui.cellData;
                        }
                        else {

                            ui.rowData.itemtype = "Default";
                            return "Default";
                        }
                    }
                },
                 

In the DB I am saving Value field so for example "1", "2" etc... on UI it not showing selected label text and it showing "1" instead of "Item Type1"

Can you please tell me what is issue in configuration?

Thanks

9
Help for ParamQuery Pro / Re: Drag & Drop issue in the Tree Grid
« on: August 02, 2019, 10:00:21 am »
Hi

Thanks yes it solve partial problem, but main thing how I can move the order of other section which not want to put at top?
For example Section 3 want to move just at top of Section 2. so it display like Section 1 then Section 3 and Section 2

Thanks,

10
Help for ParamQuery Pro / Drop event in dropmodel stop drop object
« on: August 01, 2019, 08:31:35 pm »
Hello,

I am using Tree grid with Drag & Drop functionality as attached fiddle.

http://jsfiddle.net/sg0v43zp/2/

I am using auto save functionality from one of the demo mentioned, however it is not with this fiddle.
What my problem is I want to manage the display order same as show in the tree. once come back to this screen again. To achieve that I need to save display order or rowIndex or something in the table so can do Order by that value. But problem is when I Drag & Drop one up or down then I don't know in which event I should write the logic.

I tried "drop" event of "dropModel" but when I writing it it stop drop object.

 drop: function (evt, ui) {
                       // want to write here some logic to set display order so in saving it save in db
                    }

Can you please help me how can I manage this Display order issue.

Majority of my functionality working just stucked in couple of requirement which trying to achieve in this pqgrid which is important, I will be appreciate for some solution.

Thanks,



11
Help for ParamQuery Pro / Re: Drag & Drop issue in the Tree Grid
« on: August 01, 2019, 05:03:53 pm »
Hi I have put one condition drop event to restrict one child item move to other parent.

denyDrop = (
                                rdDrop == rdDrag ||
                                rdDrop.pq_gsummary ||
                                Tree.isAncestor(rdDrop, rdDrag) ||
                                rdDrag.parentId != rdDrop.parentId
                            );
 

Attached is the fiddle.

http://jsfiddle.net/sg0v43zp/


Thanks,

12
Help for ParamQuery Pro / Drag & Drop issue in the Tree Grid
« on: August 01, 2019, 03:13:55 pm »
Hello,

I am using Pro version and in that using Tree grid, I have restrict tree for 3 level only. (Root > Section > Question)

My requirement is like that Section can not be inside section. I have restricted by writing some validation Drop event and it is working correctly.
But what other issue is suppose I have 3 sections and each have some items as shown in the attached screenshot, and I want to drag 3rd section to at first but when I drag and Drop it at top of Section 1 it move in to Section 1. but it is wrong I need to put it at top.

Can you please tell me  what setting required so it not put one section insdie other section while Drag & Drop and fulfill my requirement?

Thanks.


13
Help for ParamQuery Pro / Re: How to Remove value from NumberCell
« on: July 06, 2019, 11:37:55 am »
Yes it works, Thanks

14
Hello,

One issue I am facing with the Drag & Drop enabled then when I click on NumberCell it not making that cell or row selected. See the fiddle and screenshot for more detail,

as show in screenshot what my requirement is when click on number cell it should select row or cell, I also want drag & drop functionality also but when I put drag & drop code then it stop selection of cell or row on click on number cell.  can you please tell me what I am missing.

http://jsfiddle.net/npdev13/u1e8k2jL/12/

Thanks,



15
Thank you this works

Pages: [1] 2