Threaded View
-
23 Aug 2011 2:35 AM #1
Answered: problem creating a new record and updating a new record in a store
Answered: problem creating a new record and updating a new record in a store
Dear All,
I am facing one problem.
I want to add new record to my existing store and also want to modify some records in the store. but I am not able to my code is
but it is saying RecTOUp is not a constructor.Code:var RecToUp = Ext.getCmp("transGridId").getStore().recordType; var r = new RecToUp({ T10F2: this.Trans_key, T6F2: this.NameKey, }); r.commit(); store.add(r); store.commitChanges();
So please help me what is wrong here
thanks
-
Best Answer Posted by skirtle
Please indent your code so that it is readable before you post it.
You don't need to create the record yourself. You can just do something like this:
It will create the record for you from the model.Code:Ext.getCmp("transGridId").getStore().add({ T10F2: this.Trans_key, T6F2: this.NameKey });


Reply With Quote