dyanamically data is fetched through Js-grid,but filtering is not working?
See original GitHub issueMY Jsp code for js Grid
$(function() {
$.ajax({
type : "GET",
url : "/Final/Reports?value=2016-03-03&value2=2017-03-03"
}).done(function() {
$("#jsGrid").jsGrid({
height : "auto",
width : "100%",
filtering: true,
sorting : true,
paging : true,
autoload : true,
pageSize : 3,
controller : {
loadData : function(filter) {
return $.ajax({
type : "GET",
url : "/Final/Reports?value=2016-03-03&value2=2017-03-03",
data : filter
});
},
},
fields : [ {
name : "patientId",
type : "text",
width : 150
}, {
name : "patientName",
type : "text",
width : 150
}, {
name : "genderId",
type : "number",
width : 150
}, {
name : "mobile",
type : "number",
width : 150
}, {
type : "control"
} ]
});
});
});
can any help us? any help would be greatly appreciated
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:53 (23 by maintainers)
Top Results From Across the Web
dynamic jqgrid with dynamic data loading - Stack Overflow
The dwr call returns a set of data which will have any number of specific columns. For example name, id, address. The address...
Read more >Jquery grid not loading data even though Json is returned
I am having an issue which I am hoping is obvious but that I haven't been able to figure out. I have a...
Read more >Get started with React Data Grid in 5 minutes - AG Grid Blog
A five minute tutorial guide to getting started with React Data Grid using AG Grid to visualise data in an interactive table.
Read more >Basic Grid - Guriddo jqGrid JS
Property Type Default Can be Changed?
addOptions object empty No
ajaxCellOptions object empty object Yes
ajaxGridOptions object empty object Yes
Read more >Dynamic Data Is Fetched Through Jsgrid But Filtering Is Not ...
Integration of dynamic jQGrid in asp.net full tutorial c# Which means only 10 data is fetching at a time from database this will...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Thanks you @tabalinas @maurorulli @Venkatramanaryams we got it… #thanksAlot
I have also that same problem,filtering is not working… your help would be greatly appreciated Thanks in advance