Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to setup an environment to work with SenchaTouch in VS2010 and I'm writing some Snippets using Snippet Designer. I wonder if somebody could explain me how to make variable one part of a string: For example:

Ext.define("NotesApp.controller.Notes",

I want the user able to edit the Notes name and the NotesApp name but without changing ".controller")

share|improve this question

1 Answer

up vote 0 down vote accepted

After some research, it was easier than I thought (snippets basic) and I was too lazy the first time:

Ext.define("$appli$.controller.$control$", {

    extend: "Ext.app.Controller",
    config: {
        refs: {            
           // firstView: "firstView",
           // secondView: "secondView"
        },

    // Remainder of the controller’s code 

});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.