When I define a model “TeMdl” and then use Fn TeMdl.load(1),it will send a request with param id=1.
so..How to Change the id param so the request can like this:”……\?uid=1″?
i am a fresh to extjs!
When I define a model TeMdl and then use Fn TeMdl.load(1),it will send a
Share
From the comments in the Ext documentation:
The load() method will not honor the idProperty of the Model, and will assume it’s “id”.
The following subclass fixes this behaviour by using idProperty instead of id.