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

JQxGrid , Knockout.js Delete issues

We are using JqxGrid with Knockout.js. A button "Delete" is bound with each row in a grid. and using the following code to delete a row: var DeleteReportRecord = function () { var rows = $('#jqxgrid').jqxGrid('getrows'); …
Anirban Ghosh
  • 125
  • 2
  • 14
0
votes
1 answer

How to show filter toolbar in in 2 rows?

I have requirement where I need to show filter controls(like textbox, checkbox, dropdonw box) in grid. Here is the sample image Currently I am using datatable plugin. From this only 1 filter control column is added, but it need be more than one…
niran
  • 1,920
  • 8
  • 34
  • 60
0
votes
1 answer

Exception in fetching data from json file

I am using following code : var source1 = { datatype: "json", datafields: [ { name: 'x' }, { name: 'y' } ], url: '..\sampledata\status.txt' }; …
user1260967
  • 89
  • 1
  • 2
  • 14
0
votes
1 answer

Find length of json data

I am having this data var initialData = [ { name: "Sweets", details: 352 }, { name: "Spicy", details: "89 juwu jdbjd jd bdjh djh sdjh sjh sdhj sjh sjh shjdsjhsdhjsdhjshjdyrrrrrrrrrrrrrrrrrrr" }, { name: "Salty", details:…
user1260967
  • 89
  • 1
  • 2
  • 14
0
votes
3 answers

Use Textbox or someother element to show data to user

I am using textbox to display the data being fetched from database , but sometime the data is long text .So for the user prospective it's not looking nice . Is there any other options to textbox . Suggestions or solutions needed . Code i am using…
user1260967
  • 89
  • 1
  • 2
  • 14
0
votes
1 answer

Mutiple jqx grid table in single page with JqWidgets

I want to create mutiple jqx grid boxes in single page. can some one please tell me how to do that ? Here is the preview page http://jsfiddle.net/NuUjc/
Danish Adeel
  • 728
  • 4
  • 11
  • 27
0
votes
1 answer

rowdata is undefined

I am struggling to see where I am getting an error of 'rowdata is undefined'? when I run my script and press the delete button. I am using jqxwidgets grid: http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/index.htm If someone could help…
user1532468
  • 1,723
  • 8
  • 41
  • 80
0
votes
3 answers

jqxgrid assign columns value from a json string

am working with jqxgrid to display data in a grid in an html page. For loading data from a local json data, jqxgrid says the following code will work. var source ={ datatype: "json", datafields: [{ name: 'name' },{…
TKV
  • 2,533
  • 11
  • 43
  • 56
0
votes
1 answer

jqxGrid with SQL Binding and LargeJsonResult is empty

I'm having an issue getting a jqxGrid to work with my SQL data binding and a largejsonresult. Here is my current code. Controller: public LargeJsonResult GetCustomers() { var dbResult = db.CPTs.ToList(); var customers = from…
Todd Skelton
  • 6,839
  • 3
  • 36
  • 48
0
votes
1 answer

CheckBox Image as a column in jqxGrid

I am using jqxGrid plugin to display the data in a Grid. I have 4 columns in which one of them is a CheckBox image column... This is my column settings for the checkbox Image columns: [ // Column names {text: '', datafield:…
Sushanth --
  • 55,259
  • 9
  • 66
  • 105
-1
votes
1 answer

JqxGrid Virtual scrolling and pagination

As the user scrolls up, in this scenario should request go again and get new data or it shows previously loaded data? In my case every time a new request has gone to the server. How I handle it?
Vikram Shekhawat
  • 627
  • 2
  • 8
  • 12
-1
votes
1 answer

To uncheck all checkboxes of an column in jqxGrid

I have small table built using jqxGrid. The 1st column contains checkboxes like below: Expected result: On click of Uncheck All, need all these check-boxes to be un-checked like this: On click of remove need to get data of checkbox selected…
Shankar
  • 2,565
  • 8
  • 29
  • 56
-1
votes
1 answer

Return Json from Action method prints the json on page instead of showing on grid control

I am trying to run the demo of JQWidgets by following the instructions in this link. But when I run the demo, I simply get the json printed on the webpage like this. Here is my HomeController.cs using JQWidgetGrids.Models; using System; using…
WAQ
  • 2,556
  • 6
  • 45
  • 86
-1
votes
1 answer

How to get the cell position in JQXGrid

I want to get a cell position. I am having field's name and row index. How to get the cell position (x, y) in the screen to place the JQXWindow ?
Earth
  • 3,477
  • 6
  • 37
  • 78
-1
votes
1 answer

initially load jqxgrid with blank data(but columns intact), load the data on click of any filter/reset filter

I want to initially load a jqxGrid with a message(eg.- "This grid contains huge data. Put filter according to your choice to show the data."). At this time the columns will be shown with filters, but no rows. Also initially there should be no…
Rahul Dawn
  • 19
  • 5
1 2 3
17
18