Thank you dimdar74 and adamatvips. You are the best. This solved out never-ending problem with windows touch screen devices that also have a mouse :)
Type: Posts; User: drinovc
Thank you dimdar74 and adamatvips. You are the best. This solved out never-ending problem with windows touch screen devices that also have a mouse :)
I need Architect 3.2 build 75. I can't find it anywhere.
Upgrading currently stable project is not an option for me.
There is no Architect download links on the support portal.
Same here. I am not even running test or prod build. I can reproduce this on iPod Touch 5 (iOS 8.3) and iPad Air 2 (iOS 8.4). It's a simple HTML 5 app made in Sencha Touch 2.3.0. using Sencha...
The most elegant way I've came up with:
Ext.define("App.override.data.Field", {
override: "Ext.data.Field",
getDateFormat: function() {
return this.callParent() || "c";...
How to apply this date format globally? Overriding config of Ext.data.Field is working for me but only in debug. When I build application it's not working anymore.
Found a solution. I had to pass Element.ALLOW_KEYBOARD_INPUT to function webkitRequestFullscreen.
document.documentElement.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT);
Touch version tested:
Touch 2.3.0
Browser versions or Packager version tested against:
Chrome for Android
Chrome Version 39.0.2171.99 m
Device and OS tested against:
PC - Windows 8.1...
I'm using the same thing. Bug is still present in Sencha Touch 2.4.
I found cause for my error. I was adding property "xtype" by hand so there were two.
{ xtype: "textfield", xtype: "multilinetextfield"}
I removed that an it works now.
I have the same problem in Architect 3.0.4.1386 on Sencha Touch 2.3.1 project. Design view is useless if I can't see anything.
We found the problem. It is a bug. Please fix this in next version of touch. This bug also appears in infinite list but it does not crash. But the grid does. The fix:
...
I will make one when I will find the time. It occurs in two of our projects, but not all the time.
Touch version tested:
Touch 2.3.0
Browser versions or Packager version tested against:
Chrome
Device and OS tested against:
Windows 8.1
Nice to hear.
Will Sencha Architect ever have a text search function which searches through all source code like all of normal IDEs and text editors? Or even search trough all Controllers / Views / Resources would...
var controller = MyApp.getController("CApp");
var functions = Object.getOwnPropertyNames(Object.getPrototypeOf(controller)).filter(function(property) {
return typeof controller[property] ==...
Hi. I am trying to retrieve all names of functions in some controller. I would like to move bunch of functions which are directly on Application into some controller (CApp) because they are taking...
I added theme and scss resource to it. I am able to add icon:
@include icon('heart', 'k');
Just use iconCls: 'heart' and it's working.
However this is not working:
@include...
I have the same problem. Scrollbars stop working after some time. And I get blank row under under grid header sometimes. When will be this fixed?
Same thing happened to me. Browser: Chrome 13.0.782.220 / Windows 7.
Hi. Can someone please help me with my problem. I am using tree panel - tree grid. I want to change store dinamicaly, but I always get the same error.
RowModel.js:398
Uncaught TypeError: Object...