jqpivot is a plugin for jQuery that implements pivot tables, a data summarization tool used in data organization and analysis tools such as spreadsheets and business intelligence software.
Questions tagged [jqpivot]
21 questions
3
votes
1 answer
jqgrid and jqPivot: How to remove grouping when xDimension have multi value?
I'm using free-jqgrid with jqPivot.
I want to change display of xDimension in pivot grid.
In document:
These values are the cells from source data that appear as rows in the
grid. When more that one object element is set a grouping appear
…

Tommy1209
- 179
- 3
- 12
2
votes
1 answer
jqGrid and jqPivot: Does it support inline or cell editing?
I'm using jqGrid with the jqPivot API.
My problem is I need to edit pivoted columns (PHI, JAP, USA, KOR, CHI and SIN). Is inline editing or cell editing feature supported in jqGrid with jqPivot?
Here is my code below:
var mydata = [
{id:…

ramt
- 21
- 2
2
votes
1 answer
jqPivot is grouping column headers that do not belong to the group
I am trying to utilize the column header group functionality of jqgrid's jqpivot to have two column headers (A header for day of the week, and another header for the actually date).
var crewAttendance = { "total": 1, "page": 0, "records": 7,
…

RoyceBautista
- 100
- 8
1
vote
1 answer
jqGrid and jqPivot: How to sumary pivot column specify in ydimension and aggregates with count method?
I'm using jqGrid with the jqPivot.
Here my code:
$("#pvtCrewAttendance").jqGrid("jqPivot",
data,
{
footerTotals: true,
footerAggregator: "sum",
totals: true,
…

Tommy1209
- 179
- 3
- 12
1
vote
1 answer
How to stop auto sorting of Jqpivot?
the following jqpivot grid displays sales information of car rentals. The complete code for this is in jsfiddle
var data = [{
"id": 1,
"make": "toyota",
"model": "corolla",
"fuelusagecity": "17",
"fuelusagehwy": "12",
…

Dore.Ad
- 163
- 2
- 10
1
vote
1 answer
How to hide/show columns on a pivot grid?
The following code generates a pivot grid with two buttons on the tool bar
var data = [{
"id": 1,
"make": "toyota",
"model": "corolla",
"fuelusagecity": "17",
"fuelusagehwy": "12",
…

Dore.Ad
- 163
- 2
- 10
1
vote
1 answer
How to group columns in a pivot?
I have written the following code to create a pivot grid to display sales information about cars. It should generate a grid structure that is similar to the grid on the image
var data = [{
"id": 1,
"make": "toyota",
…

Dore.Ad
- 163
- 2
- 10
1
vote
0 answers
How to place values of different types in pivot cells?
i have the following json data from this i have tried to create the following pivot jqgrid
JSON
var data =…

Dore.Ad
- 163
- 2
- 10
1
vote
1 answer
How to categorize rows in the free grid jqgrid?
Hi i have the following table to generate a json dataset
it has the following data i have script teh table
USE [GridSamples]
GO
/****** Object: Table [dbo].[SalesStats] Script Date: 12/13/2016 07:34:51 PM ******/
SET ANSI_NULLS ON
GO
SET…

Dore.Ad
- 163
- 2
- 10
1
vote
1 answer
jqPivot- how do I just show the data rows and not summary headers?
I am trying to build a jqPivot (sample jsFiddle here: http://jsfiddle.net/reckert/vqetvqoc/1/)
I need a single row for with each of the X Dimensions in it, and then the values - what I am getting is
How can I remove the upper collapsing rows so I…

Robert Eckert
- 33
- 3
1
vote
1 answer
How to do natural sort/alpha numeric sort over columns for y-dimension in jqGrid pivot table
For columns in y-dimension how to do natural sort for alpha numeric column names ?
For example:
consider column names AA1, AA2, AA3, AA10, AA11.
These are listed in order AA1, AA10, AA11, AA2, AA3 in pivot table y-dimension.
Desired order of…

simminni
- 873
- 3
- 9
- 13
1
vote
1 answer
jqPivot Ignoring group/row value in colTotals footer
Here is the Example created - Pivot Table JSFiddle example: here
Here are my grid options used:
{
cmTemplate: { autoResizable: true },
autoResizing: { compact: true },
width: "600",
height: "auto",
rowNum: 10,
iconSet:…

Mani Deep
- 1,298
- 2
- 17
- 33
1
vote
1 answer
How to display jqPivot Group header in Orderby
Here is the Example created - Pivot Table JSFiddle example: here
groupingView: {
groupField: ['ComponentType'],
groupColumnShow: [false],
groupDataSorted: true,
groupOrder: "desc"
}, /*Is not working properly,…

Mani Deep
- 1,298
- 2
- 17
- 33
1
vote
1 answer
Remove blank column in jqGrid - Pivot
I have created a jqGrid - Pivot table JSFiddle example: here.
In this It should not print the line if Component Type value is blank, I Used this empty column, to show all periods(months) in the year, which is mandatory.
Need help in removing that…

Mani Deep
- 1,298
- 2
- 17
- 33
1
vote
1 answer
jqGrid and jqPivot 4.7: Incorrect names for pivoted columns
This sample uses jqGrid 4.6:
http://jsfiddle.net/aUDHx/1218/
As one can see, regardless of the number of aggregates, the header names are displayed correctly ("A A", "A B", etc.)
However, when I switch to version 4.7, the pivoted columns aren't…

ilitirit
- 16,016
- 18
- 72
- 111