I am creating a search form in Sencha Touch 2. The form is created, the fields are all there. But how do I call the /users/{param} url? I've got a store, and it can load "all" users, but I'd like to load specific data .. Thx.
Edit:
Ext.define('TCM.store.Users', {
extend: 'Ext.data.Store',
config: {
model: 'TCM.model.User',
sorters: 'name',
proxy: {
type: 'rest',
url: 'http://local.test.eu/app_dev.php/api/users'
}
}
});