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
2 answers

Jqxgrid checkbox column size

I have a jqxgrid with a column that has columntype:'checkbox'. I would like to make the size of the checkbox bigger. I tried with javascript with something like $(".jqx-checkbox-default").children().css("width","19px"); but it doesn't work as i…
user3195199
  • 81
  • 10
1
vote
0 answers

jQuery dynamic formdata not updating

I am using the jqxgrids plugin with the context menu option enabled in order to display some data and using the context menu option, I want to add an option where the user can upload a document for the selected row but I want to be able to send the…
Chris19
  • 210
  • 7
  • 17
1
vote
0 answers

jqxgrid loading twice when using d3.js chart

I am using latest d3.js library along with jqxgrid for analysis in a django application for one of my client. The graphical representation of data is done through d3.js while actual data is displayed using jqxgrid. My issue is that when I filter the…
user12757
  • 39
  • 1
  • 9
1
vote
2 answers

Cant trigger Alert(); on Jqxgrid Checkbox

i am following this http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/index.htm?%28arctic%29#demos/jqxgrid/checkboxcolumn.htm what i wanna do is that i am trying to capture change on checkbox so far i have done this something like this but…
noobie-php
  • 6,817
  • 15
  • 54
  • 101
1
vote
0 answers

Protractor e2e test has error : TypeError: Object [object Object] has no method 'jqxGrid'

I am writing AngularJS e2e testcases using Protractor. My Applciation uses jqxGrid(from jqxWidgets). In my testcase i need to test size of jqxGrid which in js is done by gridSelector.jqxGrid('getrows').length Testcase is as it('should check grid…
Ravesh
  • 11
  • 3
1
vote
0 answers

addrow jqxgrid with ajax

I'm trying to display the database in jqxgrid on page load using jquery, but the screen shows nothing. I have a few pages to apply this technique to, and one of the page I've managed to do it using javascript. Then the second page is done using…
JMS786
  • 1,103
  • 2
  • 11
  • 22
1
vote
0 answers

jqgrid - grouping whit spaces column

I wonder if there is a way to leave the cluster plugin with JQGrid grid view like this: http://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxgrid/jquery-grid-grouping.htm I'm getting to group, but the column is not with the spacing…
1
vote
1 answer

Select a row by the value of one cell in jqxGrid

I've got a little question about the use of jqxGrid from jqWidgets. I'm trying to select a row of my table dynamically from another page. I explain myself: My first page contains a list of users. I want that when I choose an user on this list, it…
GRosay
  • 444
  • 10
  • 26
1
vote
2 answers

JQX Grid server data response example

I'm trying to implement a jqxGrid, using sorting and paging on the server. I don't have access to the server itself. Taking an example from:…
sellarafaeli
  • 1,167
  • 2
  • 9
  • 24
1
vote
2 answers

How do I wrap my breeze entity within a viewmodel that has a few properties exposed as observable

I have an entity from Breeze that might have 20 or so properties, but then I want to wrap the entity in a viewmodel and expose only those few properties as ko.observable(). How do I manage all to do the property change notification? In c#, I would…
Josh H
  • 13
  • 3
1
vote
2 answers

jQWidget - jqxGrid multiple header rows such as jqGrid

I would like to display multiple header rows such that I the top header row group would span a set of lower header row column names. I know you can do this in jqGrid. An example of it is: jQuery("#samples").jqGrid('setGroupHeaders', { …
Larry
  • 11
  • 1
  • 4
1
vote
3 answers

jqWidget CheckBox in grid capture checkbox change

I have a jqxGrid which I have a few checkboxes in. What I need to do is find an event which fires when the checkbox is changed. I have tried: changed cellbeginedit cellendedit cellvaluechanged cellvaluechanging . All to no avail. I do not want to…
Phil
  • 498
  • 6
  • 14
1
vote
1 answer

Manually trigger jqxGrid Loading Icon

I'm using jqxGrid and the Loading overlay only appears when the page is first loaded - not when sorting/filtering/paging. This thread (jqGrid trigger "Loading..." overlay) had some good suggestions, but they didn't work. If anyone has some more…
shimmoril
  • 682
  • 1
  • 11
  • 22
0
votes
0 answers

In jqxGrid click on cell is deleting the saved value

In my jqxGrid my columns format is custom. When I click on cells if there is saved data on that cell grid is deleting it, when i click Esc key on my keyboard the value comes back, when i click with mouse on some part of the grid table the value…
0
votes
0 answers

Add jqxGrid dropdownlist that checks if string is contained in a row rather the Value and Label Logic

We currently use JQWidgets jqxGrid to render our grids. We have been asked if it's possible to add a DropDownList filter in a column that checks if that row contains the value of the selected item in the list. Example: DropDownList: { Label:…