So likely not the best title but that's what I think is going on.
I wrote this question wanting to populate a dropdownlist in my jqGrid so the user could pick from the available selections for filtering. The solution provided works in one instance but not in another. The first type it retrieves the data (for the column header dropdown filter) my stack trace looks like so:
callback() jquery-1.6.2.js (line 7947)
_ = readystatechange
done() jquery-1.6.2.js (line 7183)
status = 200
statusText = "success"
responses = Object { text="["Cake", "Sugar", "Waffle"]" }
headers = "Server: ASP.NET Develop...: 22\nConnection: Close\n"
resolveWith() jquery-1.6.2.js (line 1008)
context = Object { url="/IceCream/AvailableConeTypes", isLocal=false, more...}
args = [ Object { readyState=4, responseTExt="["Cake", "Sugar", "Waffle"]", more...} "success"]
complete() jquery...src.js(line 3591)
res = Object { readyState=4, responseText="["Cake", "Sugar", "Waffle"]", more...}
status = "success"
myBuildSelect() Cone (line 75)
data = Object { readyState=4, responseText="["Cake", "Sugar", "Waffle"]", more...}
the second time when this is called (for the jqGrid toolbar filter dialog that allows you to construct multiple AND/OR filters) the stack trace is slightly different:
callback() jquery-1.6.2.js (line 7947)
_ = readystatechange
done() jquery-1.6.2.js (line 7168)
status = 200
statusText = "success"
responses = Object { text="["Cake", "Sugar", "Waffle"]" }
headers = "Server: ASP.NET Develop...: 22\nConnection: Close\n"
resolveWith() jquery-1.6.2.js (line 1008)
context = Object { elem=, options={...} }
args = [ "["Cake", "Sugar", "Waffle"]", "success", Object { readyState=4, responseText="["Cake", "Sugar", "Waffle"]", more...} ]
success() jquery...src.js(line 5099)
data ="["Cake", "Sugar", "Waffle"]"
status = "success"
myBuildSelect() Cone (line 75)
data = ="["Cake", "Sugar", "Waffle"]"
I'm confused as to what's going on here. Looking at the jquery-1.6.2.js file at the referenced lines, I see that in the first instance it is executes the line:
deferred.resolveWith { callbackContext, [success, statusText, jqXHR] ); (line 7168)
and in the second instance it executes the line:
completeDeferred.resolveWith( callbackContext, [ jqXHR, statusText] ); (line 7183)
Seems like things are being cached or handled differently when the call is made to that controller action the second time. I can post additional code if that is helpful, but it is essentially what I wrote in my earlier question along with Oleg's solution. Ideas?