Questions tagged [jqxgrid]

jqxGrid is a jQuery widget from jQWidgets toolkit that displays tabular data. It offers rich support for interacting with data, including paging, grouping, sorting, filtering and editing. jqxGrid has also Angular, React, ASP .NET MVC and Custom Elements versions.

jqxGrid is a jQuery widget from jQWidgets toolkit that displays tabular data. It offers rich support for interacting with data, including paging, grouping, sorting, filtering and editing. The jqxGrid can be integrated with any server side technology.

Resources

265 questions
1
vote
1 answer

injecting chart.js sparkline to jqxGrid widget in Angular with typescript

I am attempting to display a sparkline from an array of data coming from an internal API call. the data comes as an array of numbers, and import { Chart, registerables } from 'chart.js'; Chart.register(...registerables); are imported. the columns…
deitz88
  • 33
  • 5
1
vote
0 answers

jqxgrid print formatting and missing column

I have a jqxgrid that gets data from a DB. i have added a run time column call Serial number. This shows on the grid alright. Also on the grid is a print button. The print button when clicked opens a new window with the print preview, but in the…
Vinod
  • 130
  • 1
  • 12
1
vote
1 answer

Is there alternative available to jqx render capability - $gridContainer.jqxGrid('render')

We are using jqxGrid library from jqwidgets. In this I am using jqxDropDownList for displaying list created from json data and upon selecting a value from dropdown filtering should happen. We had some UI issues hence we had to remove below line, now…
user2384432
  • 51
  • 1
  • 1
  • 2
1
vote
0 answers

How to server side filtering,pagination and sorting in jqx widget grid angular 7

I am developing an angular 7 project with dotnet core web api. I am using some feature of JQX widget.In jqx widget grid i need help to filter,paginate and sort data from server side.I have tried following code. ---grid.component.html--
Abdullah Al Noman
  • 301
  • 1
  • 3
  • 5
1
vote
0 answers

Dynamicly adding/removing columns is giving me a Horizontal Scrollbar

When working with JqxGrid in an Angular format, I was creating a checkbox which would toggle additional column(s) to appear. I thought this would be a pretty simple thing, when the Grid is suppose to take up all available space. The issue I have…
Fallenreaper
  • 10,222
  • 12
  • 66
  • 129
1
vote
0 answers

I'm having problems with keyboard navigation using a jqxgrid with columns ordering and grouping activated

I’m using jqxgrid, it is very powerfull, niceeeee grid, But when using options "sortable: true" and "groupable: true" then key up and key down keyboard navigation doesn’t work correclty after make an ordering of any column. When the grid is firts…
1
vote
1 answer

In a markup page, how can i add something to textContent property of an html tag?

I noticed a XSS vuln I am working to resolve where the jqxGrid will render whatever the cell is. For example: Hello. So my thought was to find a way to resolve this. I am currently looping over the data for…
Fallenreaper
  • 10,222
  • 12
  • 66
  • 129
1
vote
0 answers

Copy data from excel - JQWidgets Grid

Iam trying to copy and paste data in jqGrid from excel .Grid Properties used : width: '1200px', height: '600px', sortable: true, sortmode: "many", filterable: true, source: dataAdapter, …
1
vote
2 answers

How to use Angular pipes in JqxGrid's cell renderer

I am using JqxGrid inside Angular 5, i have some fields in grid which are numbers, and i want to format them with number pipe of angular. but the problem is that jqxGrid is not considering pipe as angular feature and printing it as it is. here is…
New Coder
  • 117
  • 2
  • 12
1
vote
1 answer

Use of jQWidgets in React.js

I am new to React and want to use the jQWidgets library: https://www.jqwidgets.com/reactjs-components-documentation/ So, using this link I setup package.json, created the folders jqwidgets-react and jqwidgets and put required .js file as given by…
Amit Kumar
  • 23
  • 5
1
vote
1 answer

Expand parent DIV to overflowing content width

I've read quite a few similar questions to mine but none is quite the same or has an answer which works for me. I'm using Twitter Bootstrap 3. I have two rows, and each row contains a col-sm-12 div, so they're the same width. The content in the…
Philip Stratford
  • 4,513
  • 4
  • 45
  • 71
1
vote
0 answers

how can i do to not lose a filter in a jqxGrid when a change the next page? i'm using the filters from my dataAdapter

i have a problem, i use this control is a jqxGrid, this is: function initGridUsuarios() { // campos y adaptador var fields = [ { name: "NoEmpleado", type: "int" }, { name: "Nombre", type: "string" }, …
1
vote
1 answer

jqxGrid enable & disable cells edit by dropdown

var rowEdit = function (row) { if (row == 0) return True; } I have jqxGrid with 6 Columns (Unique Number,Verified "Yes or No",Tracking Number,Serial Number,Condition,Remarks) Verified "Yes or No" is a dropdownlist. problem: base…
M-Fulu
  • 91
  • 1
  • 10
1
vote
0 answers

How to change all values of a particular column in jqxGrid?

I'm using jqxGrid. I have a column which has columntype as dropdownlist. I want to change all values of this column If the user tries to change dropdown value in any row. So I have dropdown which has value as yes and no. If the user changes any…
Vivek Nuna
  • 25,472
  • 25
  • 109
  • 197
1
vote
0 answers

Prevent vertical lines border display while scrolling jqxgrid horizontally?

How to avoid displaying vertical border lines while scrolling jqxgrid horizontally..That is I found that till grid width it is displaying correctly. The above issue displaying after GROUPING done in jqxgrid
1 2
3
17 18