Sorry but there is a bug when you start with a value.
1- set value "User_1"
2- Expand grid picker
The grid picker must have the row "User_1" selected.
Thanks
Type: Posts; User: ebett
Sorry but there is a bug when you start with a value.
1- set value "User_1"
2- Expand grid picker
The grid picker must have the row "User_1" selected.
Thanks
Try with --scope=@extjs
I followed the 6.5 guide and it works!
npm install -g yo @extjs/generator-ext-react
yo @extjs/ext-react
...
npm start
I have the same problem
c:\TEMP\app>npm start
> app@0.0.1 start c:\TEMP\app
> npm run dev
> app@0.0.1 dev c:\TEMP\app
> webpack-dev-server --env.verbose=no --env.environment=development
if we iterate the store records, Is there a way to obtain the widget ?, For example:
store.getRange().forEach(function(record){
var gridForm = //How to obtain the widget here?
...
Ok, but why ExtJS persists old widgets in memory? It could be confuse if you use references or itemId and later search them. Wich instance I will get?
To be more clear. What I need to do is validate all forms in the grid.
validateGrid: function(){
var me = this,
vm = me.getViewModel(),
forms = Ext.ComponentQuery.query('gridForm'),...
If I do store.removeAll(); I'll expect Ext.ComponentQuery.query('gridForm'); to be empty. Because if I need to validate each record (form) , these records don't exists in the grid.
Premises:
- I have a grid with a columnwidget (form panel).
-The form panel has fields bindigs to the record.
-The store has memoryproxy.
Steps to reproduce:
- Add two records to the grid.
-...
My solution was override the method
if (!node || map[node.internalId]) {
break;
}
Hi, when I remove a tree node from the tree list:
var parentNode = node.parentNode;
treeList.setSelection(parentNode.childNodes[0]); //before remove it, select another node (the first)...
We're currently using our custom font icons.
Follow this steps
- Create svg images
- Use Grunt and webfont plugin for compile svg images to a font files
- Create a sencha code package
- Put...
Yes, I use tomcat web server. I found this configuration for compression.
<Connector
port="9080"
connectionTimeout="20000"
redirectPort="9443" ...
Thank you, I used differents compressors in my small application.
These are the results of app.js size:
yui 1638575 (1.56 mb)
clousure 1614902 (1.54 mb)
uglify ...
Hi, I need to compile a smaller app.js, only with the dependencies that my program uses. Is there any way to optimize the app.js size?Thanks!
Hi, I need to compile a smaller app.js, only with the dependencies that my program uses. Is there any way to optimize the app.js size?Thanks
I've attached a fix for sencha 5.1.0...
Hi my friends. This is a ExtJS 5.1.0 version (see attachments).
A summary of changes,
- In class DateTimeField:
//Fix auto-close picker
collapseIf: function(e) {
var me =...
Thank you, I'll try it. But, what if formulas is undefined?, Can I create json object and then setFormulas?
Yes,
formulas = viewModel.getFormulas() || {};
:)
¿Can I add formulas dynamically to the view model?
Tested in ExtJS 5.1.0.107 GPL
Hi, i have a form with this configuration:
fieldDefaults: {
labelAlign: 'top',
labelSeparator:'',
labelStyle:'color:#231F20',
...
App.model.PermissionOwner.load(0, {
scope : me,
success : function (record, operation) {
//this.permissionOwner = record; THIS WAS THE ERROR!!
//I have to use raw data.
...
I suppose that with writeAllFields the Ext.encode function try to encode not only data but success and scope functions also.
If I set writeAllFields to false, data only has id field without success...
For the moment, de model has this values
{"id":0,"userLoginName": "ADMIN","lastAcquisitionDate": "07/10/2014 02:44:30"}
The bug is here, in the method "setOptions"of Ext.data.Connection class....
I have this error when I try to erase a model with writeAllFields:true.
Uncaught RangeError: Maximum call stack size exceeded ext-all-debug.js:31545
Ext.JSON.encodeString ext-all-debug.js:31545...