ExtJS grid filter plugin passes filter data in the array (via POST) with such fields:
filter[0][field] => Id
filter[0][data][value] => 42
filter[0][data][type] => integer
What is the simplest way to retrieve all N filter sets in asp.net (mvc2)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
essentially you make a object which matches the desired structure and names required
class typeA { int value; string type; } class typeB { typeA data; } class typeC { List<typeB> filter }then use typeC as the input for the for the controler.