-2

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?

Umut Derbentoğlu
  • 1,146
  • 5
  • 18
  • 39
  • 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 Answers1

-1

You are trying to do webforms in MVC, but they are different.

  1. Read the following documentation on how to create tables using MVC. Not the best docs, but should get you started on creating tables.
  2. After you created the table read the FooTable docs.
Captain0
  • 2,583
  • 2
  • 28
  • 44