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
5
votes
1 answer

How can I override a child element's style settings?

I'm working with a javascript grid plugin (jqWidget's grid). It allows me to apply a custom style to a cell when defining its columns: { "text": i, "width": 1, "cellclassname": "custom-column" } This is useful to me because I am trying to reduce…
Sailing Judo
  • 11,083
  • 20
  • 66
  • 97
5
votes
1 answer

JqxGrid: Change color of row based on value of column

I referred few answer from this forum http://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxgrid/jquery-grid-cellsrendering.htm http://www.jqwidgets.com/community/topic/change-row-color-of-gridview/ Both are done using the…
prvn
  • 406
  • 3
  • 7
  • 24
4
votes
1 answer

why jqxgrid unchecked checkbox or radiobutton column in scroll grid?

I use jqxwidgets grid (jqxgrid) by a renderer column that is radiobutton and checked true or false by rowdata value, when checked multiple radio and scroll grid ,unchecked checked radio buttons(change state). cellsrenderer:function(,,rowdata){ …
Mohsen
  • 231
  • 5
  • 17
4
votes
0 answers

How to observe jqgrid data using knockout.js?

I am using knockout.js to create jqgrid and populate the data using observableArray. (using Knockout-jqGridBinding plugin) Array for jqgrid data: var initialData = [{ id: ko.observable(1), name: ko.observable("Well-Travelled Kitten"), …
Deepak K
  • 329
  • 3
  • 11
3
votes
2 answers

dropdown for Year not showing unless I click on each cell

I am using jqwidgets JS library and having one issue in displaying the dropdown under Year column. As can be seen in the code below, the Year column is not displaying the jqxDropdownList unless I click on it. For example, when I clicked on the first…
Tan
  • 1,433
  • 5
  • 27
  • 47
3
votes
1 answer

Trying to delete divs if a new row of the grid/table is clicked

In the following code, when I click on any of the row of jQXgrid (basically this line $(".clickable").on("rowselect", handleClick); is executed), I see a text below the grid click me to display jQXGrid!. When I click on this text, I see this text…
Coder
  • 6,381
  • 2
  • 9
  • 10
3
votes
1 answer

Use jQuery to remove tabindex everytime it is added to an element

I feel dirty even asking this question. But here it is: I am using jqxGrid from jqWidgets. It adds tabindex="1" automatically to its grid. No mater what. And it puts it back if you so much as mouse over the thing. Crazy stuff. I am hoping that…
Vaccano
  • 78,325
  • 149
  • 468
  • 850
3
votes
1 answer

How to create dynamic columns in jqxGrid jquery

I have a jqxGrid and I need to populate it with some object. The object is completely random that some data fields may be empty. I need to show a particular coloumn only if that data is present in that object. columns: [ { text:…
3
votes
0 answers

Export CSV using jqxgrid in Safari browser and iOS is not working

In my web application i have an option to export "jqxgrid" data to ".CSV" format. It is working as expected in Chrome & Firefox browsers. But, if, I tried the export option in 'Safari' browser it is opening it is in another tab, instead of download…
3
votes
2 answers

How to make a cell in a jqxGrid dynamically editable depending on the content of the row

I am trying to make a cell in a jqxGrid editable depending on the value of another column in the row (with the name Editable). { text: "Percentage", datafield: "Percentage", columntype: 'numberinput', width: 100, cellsformat: 'p2', editable:…
phn
  • 1,720
  • 1
  • 14
  • 10
3
votes
1 answer

JQWidgets - Jqxgrid "no data to display", JSON Parse error

I follow the steps of this example(http://www.jqwidgets.com/jquery-widgets-documentation/documentation/java-integration/bind-jquery-grid-to-mysql-database-using-jsp.htm), but there’s no data to display. jqxgrid.jsp file: ResultSet result =…
Rebecca_chu
  • 71
  • 1
  • 7
3
votes
2 answers

In jqxGrid, how do I add a new calculated column from JSON data?

In jqxGrid, how do I add a new calculated column from JSON data? My JSON data has fields baseQuantity and unitCost. I want to add a new field called totalCost which would be baseQuantity * unitCost. I'm trying to add the data using loadComplete, but…
geffchang
  • 3,279
  • 2
  • 32
  • 58
2
votes
0 answers

jqx-grid - select condition on a different table

Using angular 1.x and jqx-grid, I have two separate tables on the same page (same scope). The tables have a one-to-one relationship with one another. A Commodity table and a CommodityDetails table. The Commodity table has a CommodityDetailsId column…
mche
  • 616
  • 10
  • 16
2
votes
1 answer

Get Filtered Datas in dataAdapter in JQXGrid

I have used JQXGrid in my application. In Initial Load, datas are retrieved from server and loaded into dataAdapter and that dataAdapter is used as source for grid. When I filter any column in the grid i need to have those filtered datas alone in…
vinu
  • 73
  • 9
2
votes
1 answer

How to show Dropdownlist on page load in Jqxgrid

I'm using Jqxgrid of jqwidgets. I have taken a dropdown list in a grid. I want to show dropdown list in editable mode by default on page load. please have a look this screen shot where first dropdown showing as 'Please Choose' , it's coming on click…
Prashant Mehta
  • 484
  • 2
  • 11
  • 30
1
2 3
17 18