Changes between Initial Version and Version 1 of Ticket #8279
- Timestamp:
- 02/15/11 11:54:32 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8279
- Property Priority changed from undecided to low
- Property Status changed from new to closed
- Property Component changed from unfiled to ajax
- Property Resolution changed from to invalid
-
Ticket #8279 – Description
initial v1 3 3 4 4 code in my js file: 5 {{{ 5 6 dvLoadGrid.load('MyModelMethod', { 'names': ["name1", "name2"] }, function (data) { }); 7 }}} 6 8 7 9 method in controller 10 {{{ 8 11 public ActionResult MyModelMethod(string[] strArrArgs) 9 { 10 return View("myPartialView"); 11 } 12 { 13 return View("myPartialView"); 14 } 15 }}} 12 16 13 17 The above method gets called but the parameter 'strArrArgs' is null. The same works with jQuery.ajax.
