Skip to content

Instantly share code, notes, and snippets.

@cmilfont
Created November 28, 2012 01:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmilfont/4158318 to your computer and use it in GitHub Desktop.
Save cmilfont/4158318 to your computer and use it in GitHub Desktop.
Ext.define("Book", {
extend: "Ext.data.Model",
fields: ["id", "title",
{name: "author", mapping: "author.name"},
{name: "texto", convert: function(v, record){
var texto = record.raw.pages_content_highlighted;
return texto;
}},
],
proxy: {
format: "json",
type: "rest",
url: "/books"
},
actions: {
search: "/books/search"
}
})
store = Ext.create("Ext.data.Store", {
model: "Book"
})
Book.search({ params: {query: "kent beack"}, callback: function(){}})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment