Bug Tracker

Changes between Initial Version and Version 1 of Ticket #8279


Ignore:
Timestamp:
02/15/11 11:54:32 (2 years ago)
Author:
jitter
Comment:

The jQuery bug tracker is not for support requests. Please try the  #jquery irc channel on freenode or use the  jQuery Forum for support requests which aren't related to jQuery core directly.

If you can indeed narrow this down to a bug in jQuery.load/jQuery.ajax please report back with a reduced test cases which reproduces the issue you are experiencing, on  http://jsfiddle.net.


 How to report bugs

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  
    33 
    44code in my js file: 
     5{{{ 
    56dvLoadGrid.load('MyModelMethod', { 'names': ["name1", "name2"] }, function (data) { }); 
     7}}} 
    68 
    79method in controller 
     10{{{ 
    811public ActionResult MyModelMethod(string[] strArrArgs) 
    9         { 
    10             return View("myPartialView"); 
    11         } 
     12{ 
     13    return View("myPartialView"); 
     14} 
     15}}} 
    1216 
    1317The above method gets called but the parameter 'strArrArgs' is null. The same works with jQuery.ajax.