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 - supriya.khamesra

Pages: [1]
1
I have checked the logs but there is no specific detail for the error. It shows the same error as displayed under Network in IE.

2
Hi
I have checked and found that the 500 error is occurring only when we are using the Eval version. It is not occurring when we are using the free version.

3
Thanks for your suggestion.
I tried the steps provided by you and found that a call to project server service(_vti_bin/PSI/ProjectServer.svc) is returning Internal server error (500) . After trying the maximum calls it is resulting on the error pop up on save. Screenshot of Network logs is attached. 
It was giving 404 error for jquery map file. We add that file then also the error persist.
Before PQgrid we tried JQgrid and it doesn't occur with that. We are using files of PQgrid as shown in image.

Is there any updated version of PQgrid grid files available. The jquery version is v1.9.1 and PQgrid was downloaded last month.

Is any other file needs to be added to resolve the error.
 

4
We are using PQ grid for development in project server. We are having a PDP (Project Detail Page) page on which we have 2 web parts: One is project information to carry out updates of project fields and another is content editor web part on which we are using PQ grid. We are facing some issue on this page which do not occur if we remove pqgrid.js reference.
When we perform any update in project fields and try to save the page using the project server save button then the process get stuck and give us below message as in screenshot

This message appear only when the functionality is running in IE browser. When we run the same page in chrome it works fine. Our IE version is IE 11.  It appear that there might some conflict that is appearing with PQ grid js which stucks the process. Can you please provide some suggestion what is causing the issue to occur in IE.


5
In PQ grid we set the alignment of the cell value using 'align' property. We are having grouping and the column value needs to be indented left so that it align properly with the groups. Attached is the screenshot with the current and required output.

6
ParamQuery Pro Evaluation Support / Re: Customization on PQgrid
« on: December 23, 2017, 11:52:24 pm »
Thanks for the quick response.
I am able to resolve points 1 and 2.
For point 3 : I am loading the grid data using a url remotely and calling the multiple grid creation methods one after the other and the datamodel is created later as it is asynchronous call. Can this may cause the error I am getting. As I tried to create the grids with hard coded data and it was not throwing any error.

I have one more query.

I am showing one grid at a time. Now on some filter I want to reload the same grids with new data. I am not able to load all the grids with new data. Only the grid which was set visible at the time of filter selection shows the data and rest are not loaded. I used below command to destroy and reload.
  if ($("#grid").pqGrid("instance")) { $("#grid").pqGrid("destroy"); }

Please help in resolving these issues.

7
Can you provide me an example to write callback function for groupmodel.title to set different custom title for 2 group columns

8
ParamQuery Pro Evaluation Support / Customization on PQgrid
« on: December 22, 2017, 07:23:31 pm »
I am using PQ grid and need to carry out below customization:

1.Make the grid editable on the basis of a condition. I have used $( ".selector" ).pqGrid( "option", "editable", false ); command after load but able to edit the grid columns.
2. Having 3 three grids on a page and show and hide a grid on the basis of a condition.
3.When I am creating the grids one after the other using a function call getting error like Unable to get property 'style' of undefined or null reference in pqgrid.min.js at a method where setting the height.

9
Thanks for the solutions.
For the point (4) Can we rename the group header information.
I want to say that as in the image in the group header we have 2 buttons with name "Level2" and "Level3" can we rename the text of these.

Also for customizing the group title when I used groupModel.titleDefault I was able to set the customize title but I want to set different substring rule for the first and second groups .Is it possible?

10
I am using the PQ grid for showing the data with grouping and rolling up the sum of the rows to the group summary row. I am facing below issues:
1. My requirement is to remove the "Sum: " text preceding the value.
2. I want to customize the Title of the group which currently appear as Value (item count) . I don't want to show the item count and also want to retrieve a sub string of the text.
3. The Sum displayed for summary row shows a drop down on click. Can I disable it as donot want the user to select any other option. Want to display sum only.
4. Can we rename the group header information.

Screen shot as attached.

11
To accomplish  roll out of sum to group row need to use pro version.

12
Hi,

I am using free PQgrid and I want to show the sum of the rows to get roll out to the group summary rows. As suggested in the example on the link https://paramquery.com/pro/demos40/group_rows . I have used groupModel.summaryInTitleRow  and set its value as 'all' but not getting the sum to roll out. I am getting the sum at the end of each group. The group model I am using is the same as below.
var groupModel = {
            on: true,
            summaryInTitleRow: 'all', //to display summary in the title row.
            dataIndx: ['ShipCountry', 'ContactName'],
            title: [
                "{0} ({1})",
                "{0} - {1}"
            ]
   
 please help me in resolving the issue as it is the primary requirement.

Pages: [1]