Search Type: Posts; User: redmagic
Search: Search took 0.03 seconds.
-
15 Mar 2013 6:04 AM
- Replies
- 3
- Views
- 133
Thank you for your response.
Nothing else is being required but the Ext.MessageBox.
It is the scaffolding as created by Cmd, after that I deleted the Main view and all references to it.
The... -
13 Mar 2013 2:32 AM
- Replies
- 3
- Views
- 133
Hi,
I've created an app using Sencha Cmd. In the app.json is the following snippet:
"js": [
{
"path": "../cordova-2.5.0.js"
}, -
29 Aug 2012 12:05 AM
- Replies
- 4
- Views
- 638
Thanks Scott,
I'll give it a try. -
6 Aug 2012 12:34 AM
- Replies
- 4
- Views
- 638
Hi,
Thanks for your reply.
I still have the problem that my local record is not automatically updated with the server response values.
A workaround I use now is to do it manually:
... -
1 Aug 2012 4:48 AM
- Replies
- 4
- Views
- 638
Hi,
I've got a store with a rest proxy to communicate with the server.
My question is how do I update a added record with the id given to it by the server?
First, the record is added:
... -
31 Jul 2012 3:05 AM
- Replies
- 2
- Views
- 530
Hi,
Thanks for your fast reply!
Leaving the id out worked.
For me, it was not entirely clear from the documentation though.
Regards,
Arjen -
31 Jul 2012 2:51 AM
- Replies
- 2
- Views
- 530
Hi,
I've got a Store, add models to it.
It won't sync because the store does not see the added records. In the add event listener, getUpdatedRecords() returns an empty array.
This is fixable... -
29 May 2012 3:58 AM
- Replies
- 10
- Views
- 2,119
Hi,
I've noticed that Architect overwrites the 'override' files on each save. Should it not just read these files and not save them?
I would like to have these files open in my IDE and not have... -
5 Mar 2012 1:59 PM
- Replies
- 4
- Views
- 616
Hi Tommy,
Thanks for your reply. The example in the http://docs.sencha.com/touch/2-0/#!/guide/history_support under the restoring state section implies that it should be possible using Model.load.... -
21 Feb 2012 2:16 PM
- Replies
- 4
- Views
- 616
You're welcome, I hope you can find a fix or workaround.
The documentation of the load method states an int as parameter, so I tried a parseInt(id), but that did not help.
Doing a store.getById... -
21 Feb 2012 1:30 PM
- Replies
- 4
- Views
- 616
REQUIRED INFORMATION
Ext version tested:
Touch 2.0 rev beta 3
Browser versions tested against:
Safari 5.1.2
DOCTYPE tested against: -
21 Feb 2012 1:03 PM
- Replies
- 13
- Views
- 1,549
Hi,
I just gave it a go with beta 3, unfortunately with the same result.
My workaround to use parameters 2 and 3 and ignore the first will tide me over until 2.1, no worries.
Kind regards,
... -
21 Feb 2012 2:33 AM
- Replies
- 13
- Views
- 1,549
Hi,
I'm not sure if I ran into the same bug, but it is surely related:
routes: {
':pagename': {
action: 'showPage',
conditions: {
':pagename':... -
8 Feb 2012 1:31 PM
Jump to post Thread: One store, multiple views by redmagic
- Replies
- 1
- Views
- 417
Hi,
I've searched through the documentation and forums, but can't seem to find the proper approach to this issue:
Suppose I have a store containing different shaped objects with a 'shape'... -
7 Feb 2012 8:36 AM
- Replies
- 64
- Views
- 16,724
Hi,
Is there a way to throttle/discard some of the touch events in order to migitate this issue? May there's a listener I can override for android and throttle that one?
Thanks,
Arjen -
17 Jan 2012 8:03 AM
Jump to post Thread: Entire app in a div by redmagic
- Replies
- 5
- Views
- 610
Thanks for that.
There were more things wrong, the spelling of autoCreateViewport should be lowercase 'port' according to the docs. Also, in the renderTo I had to use a document.getElementById... -
17 Jan 2012 7:16 AM
Jump to post Thread: Entire app in a div by redmagic
- Replies
- 5
- Views
- 610
Hi,
The DOM looks like this:
<body id="ext-element-3" style="width: 100% !important; height: 100% !important; " class="x-desktop x-macos x-landscape">
<div id="hi-wrapper">
</div> -
17 Jan 2012 3:32 AM
Jump to post Thread: Entire app in a div by redmagic
- Replies
- 5
- Views
- 610
Hi,
I would like to wrap the touch application in a div but can't seem to get it working. I've tried autoCreateViewPort set to false and specify renderTo on my outmost component. Can't pull it... -
23 Dec 2011 1:00 AM
Jump to post Thread: Panel method missing? by redmagic
- Replies
- 3
- Views
- 541
That was enlightening, thank you.
-
21 Dec 2011 4:40 AM
Jump to post Thread: Panel method missing? by redmagic
- Replies
- 3
- Views
- 541
Update: got it working by replacing
var feedback = Ext.ComponentQuery.query('#feedback', this);
with
var feedback = this.down('#feedback'); -
21 Dec 2011 4:10 AM
Jump to post Thread: Panel method missing? by redmagic
- Replies
- 3
- Views
- 541
Hi,
I have created a view as follows:
Ext.define('Importer.view.mmbase.UserControls', {
extend: 'Ext.Panel',
alias: 'widget.mmbase-usercontrols', -
20 Dec 2011 5:12 AM
- Replies
- 1
- Views
- 424
Hi,
I've been using aliases in my code to use xtypes in my views.
To help keep things organized, I've used an extra dot in the alias.
Ext.define('Importer.view.mmbase.UserControls', {... -
14 Dec 2011 4:55 AM
- Replies
- 11
- Views
- 1,751
Hi,
I've been able to trace back the problem to the (sencha generated)
<div class="x-inner" id="ext-element-4">
Once I' give this div an explicit height will the height:33% of the... -
13 Dec 2011 12:04 PM
- Replies
- 11
- Views
- 1,751
Hi,
I've almost got this working, but am also running into height issues. I would like to style the divs with height and width set to 33% to make them fill up the 3x3 grid. The surrounding div... -
13 Dec 2011 11:23 AM
- Replies
- 11
- Views
- 1,751
Hi,
Thanks for your quick replies. I have not yet worked them into my code, but they have given me enough information to get going.
Kind regards,
Arjen
Results 1 to 25 of 26
