Questions tagged [senchatouch-2.4]

30 questions
1
vote
1 answer

Extjs 6.5 - finding an association type (hasOne, hasMany, belongsTo, etc)

I upgraded my application from Sencha Touch 2.4 to ExtJs 6.5.3. On Sencha Touch 2.4, there is a function for the Association (Ext.data.association.Association) by the name of getType() that returns the association-type as a string, for example:…
Aviv
  • 193
  • 2
  • 11
1
vote
1 answer

Sencha 2.4.2 cordova app stuck at "Device Ready" Screen on device

I am new to sencha and creating a app which is coming up on browser but not device. I have followed basic steps as mentioned in tutorial : https://docs.sencha.com/touch/2.4/getting_started/building_your_first_app.html To simulate the case, here are…
Sadgati
  • 11
  • 2
1
vote
1 answer

Created app not accessible via http://localhost:1841/MyApp

I'm using Mac and Sencha touch 2.4 along with sencha cmd 6. I'm able to create the app named MyApp as per the instructions given in the site with slight modifications (added a '.' in the end to tell the cmd to create the MyApp in the current…
1
vote
1 answer

IBM MobileFirst 7.0 with Sencha Touch in Windows Phone 8.1 showing errors

I am using weinre is WEb INspector REmote for debugging IBM Worklight 7.0-sencha touch 2.4 App. Tested in Windows Phone Emulator 8.1 WVGA 4 inch 512MB. When Application Starts it Shows : Local storage capacity reached. Client logs will not be…
1
vote
3 answers

Tap event on textfield in Sencha Touch

I can add tap event to textfield like this: { xtype : 'textfield', name : 'GIVEN_NAME', label : 'Given Name', disabled: false, listeners : { element : 'element', tap : function() { …
1
vote
1 answer

How to create a striped Ext.Dataview

Ext.dataview.Dataview unlike Ext.dataview.List does not have a striped attribute. Is there a straightforward way of simulating that? I've tried using itemTpl in my DataView, but no luck. itemTpl: '' + '
pushkin
  • 9,575
  • 15
  • 51
  • 95
1
vote
1 answer

Get button from dataview on tap in Sencha 2

In my Sencha Touch 2.4.1 application, I have a dataview where each row has some text, and two buttons. In my dataview, I have the following listener: listeners: { itemtap: function(dataview, index, target, record, e) { // for testing …
pushkin
  • 9,575
  • 15
  • 51
  • 95
1
vote
1 answer

Way to load/access all stores in Sencha project

I need to retrieve a security token and use it in all my stores to load them. I could put autoLoad to false, make an event that gets each of my stores and calls the load event: Ext.getStore('one').load(); Ext.getStore('two').load(); But I'd rather…
MrFox
  • 4,852
  • 7
  • 45
  • 81
1
vote
1 answer

Get contacts from iphone using sencha touch 2.4.1

I am trying to get contacts from iphone4s (ios 8.1.2) using the following code snippet. if (Ext.os.deviceType == 'Phone'){ var contactsConfig = { success: function( contacts){ …
Nikhil S
  • 1,179
  • 1
  • 9
  • 19
1
vote
1 answer

FileSystem root.fullPath return undefined and root.getFile gives "processMessage failed error" in phonegap.js

this is my first question here, so sorry if I'm writing bad my request. I'm creating a project with Sencha Touch 2.4.1 and PhoneGap (my main target is Android), using the command sencha app build native to package. To be short, I need to request…
1
vote
0 answers

BUILD FAILED with Sencha CMD

I installed Sencha CMD tool in order to build production app. I went through sencha guidelines: http://docs.sencha.com/cmd/5.x/touch/cmd_app.html and upgraded to new version 2.4. I'm running Sencha Touch 2.4.0.487, Sencha Cmd 5.0.2.270 with Ruby…
Abdu
  • 21
  • 4
  • 8
1
vote
3 answers

Ext.toast position configuration

Sencha Touch 2.4 has this new toast class(Ext.Toast), which looks nice. But, by default, the location of the toast is centered in the viewport. Is there any way I can push it towards the bottom? I looked at the top config, but it doesn't work well.…
Kumar Bibek
  • 9,016
  • 2
  • 39
  • 68
0
votes
0 answers

Sencha touch 2.4.1 datepicker issue in Samsung galaxy s8 plus

We are facing one issue with sencha touch date picker. Our application is developed in Sencha touch 2.4.1 and working fine in all devices except in Samsung s8 plus where if we try to select December, it don't get selected. If anyone faced similar…
nitsCoder
  • 21
  • 3
0
votes
2 answers

How do I make Sencha Touch and Cordova work together?

I have a Sencha Touch application and I would now like to package it with Cordova for Android, iOS and browser. I am trying for about a day now to make the two work together. I can get a version onto my device, but anytime I try to update it with…
0
votes
2 answers

Create Sencha Touch Application on Mac

I am trying to create an application on Senhcha Touch on Mac and Use it on XCode. I am using Sencha CMD : 6.0.1.76 Sencha Touch Framework: 2.4.1 Cordova On Mac : 5.2.0 When I am generating new app using terminal it is not…
1
2