Controller.prototype.editItem = function (id) {
        var that = this;
        that.model.read(id, function (data) {
            that.view.render('editItem', {id: id, title: data[0].title});
        });