tags:

views:

149

answers:

1

When using a Restful Store the remove command is throwing an error (Line 1717 of ext-base-debug Error: Invalid argument) when it tries make the DELETE ajax request. Specifically the error is occurring in the asyncRequest method in ext-base when o.conn.send(postData || null); is called. I created a standard Ajax request and used the DELETE method along with the same URL and it worked fine. All other actions in the Store (Create, Read, and Update) work fine.

The EXT JS example RESTful store throws an error as well located here: http://www.sencha.com/deploy/dev/examples/restful/restful.html

A: 

It looks like :

http://stackoverflow.com/questions/2456820/problem-with-jquery-ajax-with-delete-method-in-ie

Drasill
No, the request isn't making it to the server at all. The javascript error occurs before actually making the request.
sdavids
Which is exactly what is described and explained by this SO question.
Drasill