0

I want to use jquery grid in asp.net MVC in my project, I would like to know what is good and bad point in jquery grid?

As a side note, SEO is very important for my project and if your comment is bad point, please suggest me best grid in asp.net mvc.

tereško
  • 58,060
  • 25
  • 98
  • 150
Saeed
  • 3,415
  • 3
  • 24
  • 41
  • I think this [post](http://stackoverflow.com/questions/177275/grid-controls-for-asp-net-mvc?rq=1) gives you a good start. The question would be easier to answer, if you could tell us which features you need. – developer10214 Oct 27 '13 at 09:53
  • I need use grid in asp.net mvc and I dont konw which grid component is good and flexible. – Saeed Oct 27 '13 at 10:11
  • The post I linked before list 15 grid components and all have their pros and cons. So it depends on what you want, do want need: filters, grouping, aggregations, edit features, how many data do want to display, must it be responsive, how customizable should it be, open source or not, ODATA support etc. We can't make this kind of investigation for you. – developer10214 Oct 27 '13 at 10:25

2 Answers2

0

jqGrid is a JavaScript library, and as we all know, search engines are not executing JavaScript. Not to mention that you are probably using AJAX to fetch data from server.

I'm sorry to tell that but in order to make your web page SEO-friendly you need to create JavaScript-free version displaying the same data. Obviously when user enters that page by accident he should be redirected to JavaScript version.

Saeed
  • 3,415
  • 3
  • 24
  • 41
0

I would suggest to use jTable. Its Free and you could able to modify the code to satisfy your SEO needs. Its a pure javascript prototype model.

Sravan
  • 1,095
  • 4
  • 16
  • 27