I'm not sure, I think i tried to override but was also unable.
I have just modified "touch\src\env\Browser.js"
Sorry i couldn't be of more help.
Type: Posts; User: adamatvips
I'm not sure, I think i tried to override but was also unable.
I have just modified "touch\src\env\Browser.js"
Sorry i couldn't be of more help.
not sure if its related as you are compiling, and im not sure if the "WebView" has updated its User Agent String but:
...
Touch version tested: * Touch 2.4
Browser versions or Packager version tested against:
Chrome
Sencha Native
Device and OS tested against:
Using Chrome on a Surface Pro, I was having a "double tap" issue on Lists.
Overriding the OnEvent Function in touch\src\event\publisher\TouchGesture.js worked great, thank you dimdar74
...
Can i get an update on this?
Where can I download 2.4.1? I need to get on top of this ASAP the free commercial download still points to 2.4.0?
Do I need paid support and SVN access?, because I could never get SVN access when...
issue playing Audio and Video in safari and Home-screen
our app has the same issues, but it is not publicly available
using the Kitchen Sink
http://Dev.sencha.com/.../kitchensink
go to...
Hi,
as a workaround to this issue, I made some changes to the microloader:
Maybe one of the Sencha people can tell me what this change will do to the "offline" mode.
...
Hi did you resolve this issue. I'm having the same problem.
Is it because I'm using "full" as the update type?
version 2.3 commercial, with cmd 4
Adam
Its also occurring on the iPad 2 both are version 5.1.1 of iOS.
Any ideas on what is causing it?
Doesn't seem to happen with "fixed layouts" e.g. not using flex but specifing width and...
Hi All,
On the older iPhone devices 3GS and 4, if the app has a very long list > 100 items and returns from a detail "card" we sometimes get regions of the screen flickering, changing the phone's...
This Chrome 21 Beta "bug" has made it into the 21 Stable version of Chrome.
You have and empty model instance from the model manager, you need to put some data into it.
then you can use it retrieve the values in the plot point.
I don't think this happend, we still have to override using this:
Ext.data.Types.BOOL.convert = function (value) {
if ((value === undefined || value === null || value === '') &&...
I found the answer:
the "grouper" has a builtin sort now. so buy updating the config:
grouper: {
sorterFn: function (){ return null; },
groupFn: function (record)...
Hi,
When adding a group function the list is being sorted by the group string.
in ST1 and ST2 pre Beta this sort did not occur, can I turn this "auto sort" off?
Thanks
The default behaviour of Sencha Touch for converting to boolean doesn't match that of javascript which caused some issues in our code.
Switching the BOOL function of Ext.data.Type to the code...
I did forget the usenull, so would need to copy that line into my fix.
As for -1 in JS not being true, it isn't == true but it is truthy.
Also, the code doesn't just check if it exists...
Sencha doesn't seem to use the same logic for converting to boolean as JS which leads to some confusion.
Ext.data.Types does the conversion with
if (this.useNull && (v === undefined || v ===...
Setting a list to scrollable:false raises an error on
updatePinHeaders: function (pinnedHeaders) {
var scrollable = this.getScrollable(),
store = this.getStore(),
...
On a Slider field I can use:
slider.labelEl.setHTML('<span></span>');
so try:
myFields["weight"].labelEl.setHTML('<span>Weight (kg)</span>');