question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

dyanamically data is fetched through Js-grid,but filtering is not working?

See original GitHub issue

MY 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:closed
  • Created 6 years ago
  • Reactions:1
  • Comments:53 (23 by maintainers)

github_iconTop GitHub Comments

2reactions
saikiran214333commented, Apr 10, 2017

Thanks you @tabalinas @maurorulli @Venkatramanaryams we got it… #thanksAlot

1reaction
Venkatramanaryamscommented, Apr 4, 2017

I have also that same problem,filtering is not working… your help would be greatly appreciated Thanks in advance

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found