Search Type: Posts; User: SebasSP
Search: Search took 0.78 seconds.
-
6 Nov 2012 12:57 AM
- Replies
- 6
- Views
- 2,387
You can run a server-side script which acts as a proxy for all calls.
-
11 Oct 2012 4:00 AM
- Replies
- 2
- Views
- 220
this.up('page_videoplayer').getData()
-
11 Oct 2012 3:48 AM
- Replies
- 7
- Views
- 3,765
Even if MS delivers a HTML5 browser, ST still relies on webkit specific functionalities.
-
9 Oct 2012 11:38 PM
- Replies
- 4
- Views
- 771
I believe the private method refreshTitlePosition() does what you want. In my case i had to call it with a small delay after showing the titlebar. Please mind that the use of private methods of ST is...
-
8 Oct 2012 12:28 AM
- Replies
- 7
- Views
- 1,210
A singleton class might help you:
http://www.sencha.com/forum/showthread.php?196571-Global-Variables -
4 Oct 2012 5:26 AM
- Replies
- 9
- Views
- 1,848
You can add it to the launch function of app.js.
-
4 Oct 2012 4:10 AM
- Replies
- 2
- Views
- 524
You can query down from Ext.Viewport
Something like this:
var navviews = Ext.Viewport.query('navigationview');
for(var i=0, l=navviews.length; i<l; i++){
... -
4 Oct 2012 3:43 AM
- Replies
- 9
- Views
- 1,848
Only Ext.Ajax.request if I recall correctly
-
2 Oct 2012 3:19 PM
- Replies
- 7
- Views
- 1,210
Your list object doesn't exist (yet). You may want to call setHtml() after the initlialize event of the list.
-
2 Oct 2012 3:09 PM
- Replies
- 4
- Views
- 543
Check your browser console to see if there are any javascript errors.
-
2 Oct 2012 2:59 PM
- Replies
- 3
- Views
- 855
Check if your firewall isn't blocking connections. Also confirm that you can access the default pages of your webserver. Consult the documentation that came with it.
-
2 Oct 2012 1:55 AM
- Replies
- 3
- Views
- 855
Enter the local IP address of your laptop in your mobile browser.
-
2 Oct 2012 1:11 AM
- Replies
- 5
- Views
- 601
Is your webserver working properly (can it serve other pages)?
-
2 Oct 2012 1:08 AM
- Replies
- 4
- Views
- 287
.focus() is usually not allowed in mobile browsers because the big onscreen keyboard could be annoying.
-
1 Oct 2012 1:55 AM
Jump to post Thread: Urgent - Buttons Unresponsive by SebasSP
- Replies
- 6
- Views
- 721
roycyang has extended Ext.Button for better responsiveness in this thread:
http://www.sencha.com/forum/showthread.php?197409-Extending-Ext.Button-for-better-UX-and-responsive-tap -
1 Oct 2012 1:49 AM
- Replies
- 4
- Views
- 781
You can use a CSS shadow to achieve that effect. You might have to set some z-indexes to 2. Note that this is discouraged because ST handles z-indexes, but it will work.
-
1 Oct 2012 1:35 AM
Jump to post Thread: Ajax.request Request URL Problem by SebasSP
- Replies
- 1
- Views
- 485
The extra string is added to prevent usage of the cached response by the browser. You can change it by setting the disableCaching config to false....
-
25 Sep 2012 2:09 AM
Jump to post Thread: ListPaging Plugin by SebasSP
- Replies
- 2
- Views
- 267
Try adding this to sdk/src/plugin/ListPaging.js in the onStoreLoad function after "this.getLoadMoreCmp().show();"
if(this.storeFullyLoaded()){
this.getLoadMoreCmp().hide();
} -
25 Sep 2012 1:37 AM
- Replies
- 7
- Views
- 958
I get a syntax error in app.js as well: "Expected an identifier but found ')' instead"
ST v2.0.1.1
Sencha Command v2.0.2 -
5 Sep 2012 7:29 AM
- Replies
- 38
- Views
- 7,355
I now use custom setters like you described to update the data used for the tpl and it works well.:)
-
5 Sep 2012 12:44 AM
- Replies
- 38
- Views
- 7,355
The XTemplate solution works well for displaying data when the view is initialized, but when records change the view will not update.
-
3 Sep 2012 4:58 AM
- Replies
- 8
- Views
- 1,930
Hey guys,
I was facing the same issues. I worked around most of them by listening to the window.onresize event. When that event fires, I call window.scrollTo(0, 1) in a setTimeout with a few 100... -
27 Aug 2012 3:43 AM
Jump to post Thread: ST2 Icons not show in fieldset? by SebasSP
- Replies
- 4
- Views
- 592
You can use 'inspect element' in your browser to look up the required css selectors. Also don't forget to set position to relative or absolute so the z-index will work.
-
27 Aug 2012 12:28 AM
Jump to post Thread: ST2 Icons not show in fieldset? by SebasSP
- Replies
- 4
- Views
- 592
Try setting z-index to 1.
http://www.sencha.com/forum/showthread.php?192463-Blank-icons-in-tabbar-if-container-has-scrollable-set-to-true -
9 Jul 2012 6:16 AM
Jump to post Thread: Sass breaks loading mask spinner by SebasSP
- Replies
- 6
- Views
- 2,397
Just for reference, this is the include code:
@include sencha-loading-spinner;
Results 1 to 25 of 75
