I want to change the third record to the first record,I can use
but My store is crud store,If execute function store.remove and store.insert,it will do delete and insert on database.Code:var revord = store.getAt(3); store.removeAt(3); store.insert(0,record);
Can someone tell me a good way to do it but not do remove and insert to database.
thanks in advance.
jerome