Search Type: Posts; User: Schildi
Search: Search took 0.05 seconds.
-
7 Feb 2013 10:38 AM
- Replies
- 1
- Views
- 162
Anyone? :-/ :-?
-
4 Feb 2013 1:52 PM
Jump to post Thread: Can't update a production build by Schildi
- Replies
- 17
- Views
- 3,297
Hi guys,
I'm using Sencha Touch 2.1.0-gpl and facing exactly the same issues...can anyone confirm this?
And does anyone have a workaround or even a solution for this?
Best regards,
Schildi -
4 Feb 2013 3:24 AM
- Replies
- 1
- Views
- 162
Hi guys,
a short search in this forum showed, that this isn't really a new issue:
http://www.sencha.com/forum/showthread.php?226680-Can-t-update-a-production-build
... -
28 Jan 2013 11:36 PM
- Replies
- 3
- Views
- 246
Hi Wolfie,
try
config: {
refs: {
productsListSearch: "productslistcontainer toolbar searchfield"
},
control: { -
19 Dec 2012 4:29 AM
- Replies
- 2
- Views
- 472
Hi,
I currently had the same problem.
I know, it's long time ago, but nevertheless good to know ;)
You can do
Ext.getStore('MyStore').filter([
{ -
19 Dec 2012 3:23 AM
- Replies
- 4
- Views
- 263
Thanks for your answers! :)
Because I'm using Windows, it's not possible to define aliases in my case : /
But I found a different way to handle the issue:
In the folders of my ST 2.1.0 apps, I... -
17 Dec 2012 9:41 AM
- Replies
- 4
- Views
- 263
Hey guys,
I have a little problem with Sencha SDK Tools / SenchaCmd.
On my Windows 7-machine I have installed
SenchaSDKTools-2.0.0-beta3 to work with e.g. Sencha Touch 2.0.1
and... -
16 Dec 2012 5:01 AM
Jump to post Thread: Mixing barchart and linechart by Schildi
- Replies
- 6
- Views
- 302
Hi Mitchell,
nice to hear that. Thank you very much! ;)
Is there already a release date for Sencha Touch 2.1.1? :)
Best regards,
Schildi -
15 Dec 2012 9:50 AM
Jump to post Thread: Mixing barchart and linechart by Schildi
- Replies
- 6
- Views
- 302
Hi Mitchell,
thanks for your reply!
Is it enough when I put the code, with which you can reproduce it?
var store = Ext.create("Ext.data.Store", {
fields: ['name', 'value1', 'value2'],... -
13 Dec 2012 12:57 PM
Jump to post Thread: Mixing barchart and linechart by Schildi
- Replies
- 6
- Views
- 302
Hey guys,
I edited the example from the docs, where a bar- and a linechart are mixed together in one chart:
40801
(for the original, see... -
2 Dec 2012 7:22 AM
- Replies
- 2
- Views
- 948
Hi Kapoc,
"uuid" probably has something to do with one of your stores or models. Do you use a store or a model with a localstorage-proxy?
I think requiring the Ext.data.identifier.Uuid class in... -
30 Nov 2012 9:27 AM
- Replies
- 2
- Views
- 361
Hi bothwell,
from the docs (http://docs.sencha.com/touch/2-1/#!/api/Ext.dataview.List-method-select):
So I think you have to set the 2nd parameter to true:
Ext.each(myData,... -
29 Nov 2012 11:48 PM
- Replies
- 17
- Views
- 912
Hmm, I think this messages are correct. Do you receive them everytime you reload the page?
Do the other versions like
sencha app build testing
and
sencha app build package
work?
Best regards,... -
29 Nov 2012 11:41 PM
Jump to post Thread: List getStore()? by Schildi
- Replies
- 3
- Views
- 484
Hi slemmon,
where did you look it up?
In the docs there is a getStore() method on the list component ;)
http://docs.sencha.com/touch/2-1/#!/api/Ext.dataview.List-method-getStore
And it says... -
29 Nov 2012 10:04 AM
- Replies
- 17
- Views
- 912
Hi deepakgarg89,
did you try to clear your local storage?
In Chrome you can do that under Console > Resources > Local Storage.
Or maybe clearing your cache could also work. Does it work in a... -
28 Nov 2012 6:32 AM
Jump to post Thread: On Logout revert back to Viewport by Schildi
- Replies
- 13
- Views
- 1,159
Hmm...this is strange.
What version of Sencha Touch are you using?
I created a quick SenchaFiddle to simulate your app structure. Maybe you can have a look at this and compare it to your code. I... -
27 Nov 2012 12:32 AM
- Replies
- 5
- Views
- 364
Hi Niko,
did you require your model anywhere in your code?
You can do this either in your app.js or in your store. With the help of the "require" you make sure that the given files are loaded and... -
26 Nov 2012 2:23 AM
Jump to post Thread: Z-Index? by Schildi
- Replies
- 2
- Views
- 204
Hi Dbms,
z-index refers to CSS and is actually no Sencha-specific property.
It specifies the order of elements, when they're positioned above each other.
<div style="z-index: 7">element... -
23 Nov 2012 5:35 AM
- Replies
- 9
- Views
- 530
The reason for not being able to mark the text from the list items is, that they have the CSS-property
-webkit-user-select is set to "none".
Maybe you can try to override this property in your... -
23 Nov 2012 12:04 AM
- Replies
- 3
- Views
- 498
Hi,
I'm a bit confused.
What version of Sencha Touch 2.1 are you using?
When you use sencha-touch-2.1.0-commercial, then the folder under src/chart is empty, because charts are not part of the... -
22 Nov 2012 11:55 AM
- Replies
- 3
- Views
- 498
Hi clarose,
I think it is correct that you don't see the lib-files...I tried it myself and I can confirm your observations...but nevertheless the app works and doesn't throw any errors. Did you... -
22 Nov 2012 9:39 AM
Jump to post Thread: On Logout revert back to Viewport by Schildi
- Replies
- 13
- Views
- 1,159
Could you show more parts of your code, that causes this warning? That would be helpful I think :)
Best regards,
Schildi -
22 Nov 2012 9:33 AM
Jump to post Thread: Overlay near mouse click by Schildi
- Replies
- 4
- Views
- 380
Oh, itemtap does give you an event object. ;)
http://docs.sencha.com/touch/2-0/#!/api/Ext.dataview.List-event-itemtap
itemtap: function(list, index, target, record, e, eOpts) {
var x =... -
21 Nov 2012 11:47 PM
Jump to post Thread: Overlay near mouse click by Schildi
- Replies
- 4
- Views
- 380
Hi bhakta,
I quickly developed a senchafiddle: http://www.senchafiddle.com/#P3VCq
Maybe you can use this as a first step and some inspiration (supposed that this is what you asked for)? ;)
... -
17 Nov 2012 9:43 AM
- Replies
- 2
- Views
- 262
Hi csantos,
can't you do this like this?
Ext.define('myProyect.controller.FormController', {
extend: 'Ext.app.Controller',
config: {
refs: {
fieldid :...
Results 1 to 25 of 83
