Search Type: Posts; User: janelle
Search: Search took 0.02 seconds.
-
14 Aug 2012 4:43 PM
- Replies
- 1
- Views
- 389
I have a list, and each list item has a picture with some icons on it. When I click on one of the icons, I want a modal panel to pop up with more icons above the icon I pressed.
I made a panel... -
6 Jul 2012 1:54 PM
- Replies
- 8
- Views
- 1,060
For this app I am using phone gap, but for other apps I might not want to use PG.
I get this output when I build:
sencha package build iphone.json
[INFO] The application was successfully... -
6 Jul 2012 12:17 PM
- Replies
- 8
- Views
- 1,060
I had generated the app, and i did change the logger setting to false and it still didnt work.
I got the white screen when using phonegap because of a lowercase character in a filename that should... -
5 Jul 2012 3:46 PM
- Replies
- 8
- Views
- 1,060
I never got it to build and run on the phone with the sencha compiler. It always fails to load.
But i installed phonegap and used xcode to compile. When it would load onto the device I would get... -
5 Jul 2012 10:06 AM
- Replies
- 8
- Views
- 896
I made an object to hold my templates. For my list itemTpl I create an instance of my object and grab the template. Putting it in statics was causing errors, but it works when you put it in the...
-
4 Jul 2012 3:50 PM
Jump to post Thread: Native iOS Packaging by janelle
- Replies
- 7
- Views
- 1,062
if you add this to your packager.json, the error goes away, tho my app (or a simple test app) still wont load onto a device or the simulator
"certificateAlias":"", -
4 Jul 2012 3:44 PM
- Replies
- 8
- Views
- 1,060
If I add in this to the packager file, it no longer gives me an error, but it still wont run on a device
"certificateAlias":"", -
28 Jun 2012 2:31 PM
- Replies
- 8
- Views
- 1,060
If I change the platform to "iOS" i get this error:
Assertion failed: (type_ == stringValue), function asCString, file src/json_value.cpp, line 679.
There must be something wrong with the... -
28 Jun 2012 2:28 PM
- Replies
- 8
- Views
- 1,060
My app wouldnt load onto the simulator or phone, so i generated a new app using sencha command. The only change i made was to the packager file. This simple app will not load onto the iOSSimulator...
-
28 Jun 2012 11:58 AM
Jump to post Thread: Native iOS Packaging by janelle
- Replies
- 7
- Views
- 1,062
I am having this problem too
Only when I build for iOS
If I build for IOSSimulator it has no errors, tho i get "Download Failed Safari cannot download this file" when I try to run it on the... -
27 Jun 2012 2:59 PM
- Replies
- 8
- Views
- 896
I got this to work by doing this:
// in my list config
itemTpl: Ext.create('app.tpl.ImageList').template,
// template object
Ext.define('app.tpl.ImageList', {
requires: [ -
27 Jun 2012 2:55 PM
- Replies
- 4
- Views
- 1,378
Thanks, calling by the storeid works.
I cant believe I didnt think of that! -
27 Jun 2012 9:47 AM
- Replies
- 8
- Views
- 896
I am getting this warning "Synchronously loading 'Ext.XTemplate'; consider adding 'Ext.XTemplate' explicitly as a require of the corresponding class"
But I HAVE put a require in, but that error... -
27 Jun 2012 9:20 AM
- Replies
- 4
- Views
- 1,378
None of my stores work. And storemgr.lookup is the same thing as getstore, and does not work either.
Ext.define('app.store.FavoritesList', {
extend: 'Ext.data.Store',
config: {
... -
26 Jun 2012 6:27 PM
- Replies
- 4
- Views
- 1,378
My app was converted over to ST2, and it was working totally fine in the browser.
Then I moved it over to my mac to start wrapping it up, and I switched it to include microloader/development.js... -
22 Jun 2012 11:22 AM
- Replies
- 14
- Views
- 4,681
In another place in my code, I am updating the data in one of the related items.
The sync function was not working, and after looking at the objects, the dirty flag (before sync) was false. So I... -
21 Jun 2012 3:12 PM
- Replies
- 14
- Views
- 4,681
Here it is wrapped in an override so you dont have to change your ST library
Put this in app/ux/WebStorage.js
Ext.define('app.ux.WebStorage', {
override: 'Ext.data.proxy.WebStorage',
... -
21 Jun 2012 2:07 PM
- Replies
- 2
- Views
- 424
It wont work passing the function in to the config :(
I had to put it in the mainlist object and put a check on the id to see which instance is currently being used. mainlist is used by a number... -
21 Jun 2012 12:21 PM
- Replies
- 2
- Views
- 424
I have a list, and I need to be able to access associated items from the template.
So I tried using prepareData, but it doesnt seem to do anything.
var mainlist = {
xtype: 'mainlist',... -
21 Jun 2012 8:49 AM
Jump to post Thread: Bugs wtih tabbar? by janelle
- Replies
- 2
- Views
- 350
I want to hide the tabbar when the orientation is changed to landscape because there is not enough room on the screen to be usable with the tab bar there.
-
20 Jun 2012 4:09 PM
- Replies
- 14
- Views
- 4,681
Adding new products to existing cart works totally fine too
// add new products to existing cart
existingCart = cart.data.items[0];
... -
20 Jun 2012 4:03 PM
- Replies
- 14
- Views
- 4,681
When creating a new item (cart), internally it is calling load, and then read (when newCart.products() is first called). The read function is sent a filter with the new items uuid, but that filter...
-
20 Jun 2012 12:49 PM
- Replies
- 14
- Views
- 4,681
I took kostysh's ideas and made it almost work. The problem is that the products store is acting global, so anytime you add a new cart, all products previously saved are now associated with...
-
19 Jun 2012 1:09 PM
Jump to post Thread: Bugs wtih tabbar? by janelle
- Replies
- 2
- Views
- 350
I have an app with a tab bar docked to the bottom.
I added a function to run when the orientation changes, and it hides the tab bar when the orientation is landscape.
And it seems to work, BUT... -
19 Jun 2012 11:51 AM
- Replies
- 4
- Views
- 570
My problem is that there is no function to get the associated data.
None of these exist:
record.rel()
record.rels()
record.getRel()
record.getRels()
The documentation says that that...
Results 1 to 25 of 60
