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

jQwidgets - Grid View button-cell clicked but that doesnt trigger a row selection

So i'm creating a jQwidgets grid view and i'm filling it with some data. I have a cell which is made as a Button : { text: 'Action', datafield: 'Action', width: widthInStr, cellsrenderer: editButtonFunc } Here is the editButtonFunc : var…
1
vote
0 answers

How to add a NumericUpDown In JqxGrid?

Does anyone can help me in how can I add a NumericUpDonw field in JqxGrid ? Here's my column: columns: [ { text: 'Ano', datafield: 'Ano', width: '4%', filter: fdata, cellsalign: 'center', columntype: 'number' }, ] So I…
1
vote
1 answer

Website URL for jqwidgets appears momentarily in the grid after page load

I am using jqxgrid for displaying tabular data. However whenever the page loads, the website URL http://www.jqwidgets.com momentarily flashes within the grid and fades out after about 5 seconds. I would like to hide that URL from displaying. Is it…
Aniket V
  • 3,183
  • 2
  • 15
  • 27
1
vote
0 answers

How to get two json object data in one jqxgrid?

I am working in ajax i want to achieve two Json object data into one single JqxGrid.I can display two function data in separate grid,Can any body help how to achieve this in single grid?Is there any way to achieve this? My function is like…
indu
  • 43
  • 11
1
vote
1 answer

Finding a row with specific column value in jqxGrid

I am trying to get the data for a row by matching a column value. For example if we have the following data in the grid, I want to get the data of the row which has a CombinedID = 2015-01-02-0222. [ {"Name":"Test 1",…
1
vote
0 answers

How to automatically select corresponding grid rows in Jqxgrid spreadsheet?

The demo of spreadsheet is awesome, looks like it is as strong as excel.:) Two questions for spreadsheet, 1) How to automatically select corresponding grid rows in spreadsheet? when user click on first grid cell of the first pinned column by…
beyond8848
  • 103
  • 7
1
vote
2 answers

JqGrid export functionality not working when custom url is provided

I have one jqxGrid , that I want to export. By default jqWidget uses it own server url instead of that I want to use my url.But for custom url export is not workking. code var url=window.location.href $("#jqxgrid").jqxGrid('exportdata',…
sar
  • 1,277
  • 3
  • 21
  • 48
1
vote
1 answer

jqxgrid and angular form

I'm using jqxgrid inside angular form. When you change something in grid, an angular form does not become dirty. I decided to bind to grid cellvaluechaned event in which I call $setDirty() for my angular form. It works. But I do not want in each…
pavel06081991
  • 629
  • 1
  • 8
  • 14
1
vote
2 answers

Unable to use Post method with JQXGRID(jqwidgets)

I am basically trying to send data from my SQL SERVER database to JQXGRID using a Bottle python web service. The JS code for the grid is below: var source = { datatype: "json", pagesize: 100, type:…
Tauseef Hussain
  • 1,049
  • 4
  • 15
  • 29
1
vote
1 answer

sort only single column in jqxgrid programatically

I have the following code for jqxgrid and I want to set a single column ('Col1') sortable dynamically. How could i achieve this. Thanks for your solution and advice in advance. $("#jqxgrid").jqxGrid({ source: data,`enter code here` …
Fazal Shah
  • 73
  • 1
  • 9
1
vote
1 answer

How to reload jqxGrid data with new data from another url

I have a jqxGrid form JqWidgets library , I have bound the data to the jqxGrid like so.. var url = "getConsignments.php?type="+$('#selectIsDelevered').val(); var consignmentsource = { datafields: [ { …
rabar kareem
  • 630
  • 9
  • 28
1
vote
2 answers

jqxGrid dropDown issue

I am trying to load gjqxGrid with DropDown column , I tried with sample json in jsfiddle : here , it worked fine . But When I try to use same code in my project files , DropDown column is empty , I have checked the data format , it's fine. Below is…
Bhupendra
  • 1,196
  • 16
  • 39
1
vote
1 answer

JqxGrid selectionmode checkbox : How to uncheck a checked checkbox

I am using JqxGrid with selectionmode:checkbox. I am able to alert when the checkbox is checked and unchecked using the rowselect and rowunselect functions. Problem is I need to only allow the user 4 selections. Hence when he checks the 5th checkbox…
Curious Explorer
  • 357
  • 2
  • 14
1
vote
1 answer

Is it possible to find out which select option has focus in IE before it is selected?

I'm trying to enable custom keyboard navigation of a jqxGrid. I've got it working 99.9% of the way, but I can't get IE to select the highlighted/focused options in a select box. I wanted to see if there was a way to detect the option that's being…
Jason
  • 57
  • 1
  • 8
1
vote
1 answer

Setting the Editable property of a column in JQXgrid

JS: http://jsfiddle.net/tzHXR/ var data = generatedata(500); var source = { localdata: data, datafields: [{ name: 'firstname', type: 'string' }, { name: 'lastname', type: 'string' }, { …
S J
  • 3,210
  • 1
  • 22
  • 32