I lost my store.byValue when I added a second form to viewport with a selectfield bind to same store as a selectfield on form already in viewport. Solved it by removing store from second form config...
Type: Posts; User: fappels
I lost my store.byValue when I added a second form to viewport with a selectfield bind to same store as a selectfield on form already in viewport. Solved it by removing store from second form config...
I'm unable to reproduce on fiddle.
This is my fiddle to show what I'm doing.
https://fiddle.sencha.com/#fiddle/hq5
I also had an encoding issue after upgrade to 5.1.1.39
Had to change my source from:
afsCodes: {
a:'[\u0061\u00e0\u00e1\u00e2\u00e3\u00e4\u00e5\u00e6]',
...
touch 2.4.1
Cannot update the record in a form containing a datepicker with value from Date to null.
Fixed it by changing picker/Date.js:
From
You need to add a layout to your Panel not form.Panel:
var frm = Ext.create('Ext.Panel', { //i am populating the list
title: 'Canteen 2',
layout: 'vbox',
items: [
{
...
When passing an undefined menu to setMenu, wrong error text is logged to console on touch 2.3.1.
if (!menu) {
Ext.Logger.error("You must specify a side to dock the menu.");
...
Hi,
If you did not find a solution yet:
I had the same problem, solved it by using setDestroyRemovedRecords(true) and setSyncRemovedRecords(true) methods, using the store configs doesn't seem to...