I have an asp.net mvc 4 project. I need to use Footable plugin(http://fooplugins.com/plugins/footable-jquery/) as data table in my project. How can I set footable data source from controller? Is there any tutorial for usage footable in asp.net mvc platform?
Asked
Active
Viewed 1,402 times
-2
-
FooTable is a jQuery plugin, which means it's only Html and JavaScript, so it has nothing to do with Asp.Net. You need to output a `View` with the respective Html. – Matan Shahar May 09 '14 at 21:21
-
Why do you want to use Footable? What feature do you want? – Jeff May 29 '14 at 15:50
1 Answers
-1
You are trying to do webforms in MVC, but they are different.
- Read the following documentation on how to create tables using MVC. Not the best docs, but should get you started on creating tables.
- After you created the table read the FooTable docs.

Captain0
- 2,583
- 2
- 28
- 44