Search Type: Posts; User: wildaker
Search: Search took 0.02 seconds.
-
2 Mar 2012 1:23 AM
Jump to post Thread: Sencha selling my data by wildaker
- Replies
- 5
- Views
- 1,071
Thanks for your comprehensive response and explanation of what seems to be a genuine mistake (and that on Gartner's part). I'm very happy to be a reference for Sencha. I'm simply not happy dealing...
-
29 Feb 2012 3:38 PM
Jump to post Thread: Sencha selling my data by wildaker
- Replies
- 5
- Views
- 1,071
I'm being e-mail spammed, unacceptably, by the Gartner idiots, because " Your Mobile Enterprise Application Platform vendor (Sencha) provided us with your contact information". I never gave you the...
-
7 Jun 2011 4:06 AM
- Replies
- 14
- Views
- 4,665
It seems to be scroller/animation-related.
During a panel-switch animation (e.g. a slide from one tab to the next) the TabBar icons disappear and then reappear (set cardSwitchAnimation: false and... -
7 Jun 2011 12:37 AM
- Replies
- 14
- Views
- 4,665
See the User Interface->Icons page of the Kitchen Sink demo for a straightforward example.
In my real world apps, the icons sometime show and sometimes don't, with no apparent logic to their... -
3 May 2011 1:40 PM
- Replies
- 2
- Views
- 2,197
Hey - then we were all working with (very) flaky/variable Beta code and docs that were massively out of sync with the actual code base. And core files that broke every time you moved up a (Beta)...
-
3 May 2011 9:48 AM
- Replies
- 2
- Views
- 2,197
I've finally got around to putting the sources for TravelMate (one of the three winners in Sencha's app contest last year) on GitHub - until now I've just been mailing out a .zip file to anyone who...
-
4 Apr 2011 11:56 AM
- Replies
- 3
- Views
- 2,034
Is this something that can be handled by a plugin? It would be hugely useful...
-
18 Nov 2010 11:12 PM
- Replies
- 2
- Views
- 911
In some circumstances (and the Forms example shows this) a textareafield being edited within a complex form loses its default behaviour in iOS and desktop Safari.
Even with
style: {
... -
18 Nov 2010 11:00 PM
- Replies
- 5
- Views
- 1,372
Hmm... Actually, it can be made to work just fine. I was using (and hacking) the Forms example code, and getting the problems above. Interestingly, the problems extend to desktop Safari, where the...
-
18 Nov 2010 8:42 AM
- Replies
- 5
- Views
- 1,372
I try to avoid inline styling, but (as an FYI) your code would need to be:
style: {webkitUserSelect: 'text'}
to get the magnifying glass - except that still doesn't work because of the default... -
18 Nov 2010 8:09 AM
- Replies
- 2
- Views
- 591
This thread duplicates http://www.sencha.com/forum/showthread.php?114624
-
18 Nov 2010 7:22 AM
- Replies
- 2
- Views
- 624
Quick thoughts:
When you inspect the element in the Safari (or Chrome) Web Inspector is that 54px height surviving, or is it maybe being overridden? Sencha Touch can assign multiple classes to an... -
18 Nov 2010 6:53 AM
Jump to post Thread: Image buttons in Sencha Touch? by wildaker
- Replies
- 10
- Views
- 39,044
Er... you're using a 60x60 pixel background on a 40x40 pixel button. It will fall off the bottom and sides unless you use size it:
.btnAction {
background: url(../action.png) !important;
... -
18 Nov 2010 5:37 AM
Jump to post Thread: Image buttons in Sencha Touch? by wildaker
- Replies
- 10
- Views
- 39,044
The answer can be found by walking the DOM using Web Inspector - your CSS isn't quite where you'd expect (or, arguably, it should) be in the cascade and so is being overridden.
But, change ... -
18 Nov 2010 3:38 AM
Jump to post Thread: Map, Help needed by wildaker
- Replies
- 23
- Views
- 2,159
Seeing the "adjustments" may help people work out why they're not working...
-
18 Nov 2010 2:05 AM
Jump to post Thread: Image buttons in Sencha Touch? by wildaker
- Replies
- 10
- Views
- 39,044
There are several approaches that work. However, the cleanest way would probably be to use an Ext.Button, assign a class to it ("cls: 'myBtnClass',", say), and then style it via your app-specific CSS...
-
18 Nov 2010 1:54 AM
- Replies
- 6
- Views
- 2,666
While the Sencha Touch API doesn't have any built-in "native" handling of SQLite, it's important to clarify that there's nothing to stop you using it in a Sencha Touch-powered app, and for certain...
-
17 Nov 2010 9:42 AM
Jump to post Thread: Messagebox height by wildaker
- Replies
- 12
- Views
- 5,836
I'm not convinced it's really a bug, actually. After all, Ext.Msg is simply "A global shared singleton instance of the Ext.MessageBox class" (my emphasis).
If you want to avoid the inherent... -
17 Nov 2010 8:53 AM
Jump to post Thread: Messagebox Size Issue by wildaker
- Replies
- 1
- Views
- 1,437
Try the kludge I've posted to http://www.sencha.com/forum/showthread.php?116076 - a very small maxHeight followed by a very large one, with doLayout() calls in-between will do the trick of (in...
-
17 Nov 2010 8:51 AM
Jump to post Thread: Messagebox height by wildaker
- Replies
- 12
- Views
- 5,836
This behavious is easy to reproduce and (in a kludgy way) easy to fix. The heart of the matter is that you're dealing with the same "Ext.Msg" object.
As follows - code modified from the... -
17 Nov 2010 2:50 AM
Jump to post Thread: [FIXED-471] 0.98 Wrong debug css by wildaker
- Replies
- 7
- Views
- 1,719
While it's being fixed, it's a good idea bang the minified version through ProCSSor to get a prettified (and readable) version.
-
17 Nov 2010 2:39 AM
- Replies
- 2
- Views
- 2,585
Everybody does, unfortunately (it's a known and noted bug elsewhere).
While it's being fixed, it's easy enough bang the minified version through ProCSSor: http://procssor.com to get a prettified... -
5 Nov 2010 12:18 AM
- Replies
- 9
- Views
- 5,669
The Top 10 are now rotating at the top of the main contest page http://www.sencha.com/contest/.
I'm extremely proud to be there - and seriously impressed by the other nine! -
31 Oct 2010 2:14 AM
Jump to post Thread: How to set id of a component? by wildaker
- Replies
- 4
- Views
- 985
Yup, "id" is supported, and here's an easy way to show it:
Just open up examples/toolbar/index.js, add
id:'testId', after line 14's
var buttonsGroup1 = [{ save the file, open it in Safari (or... -
29 Oct 2010 11:36 AM
Jump to post Thread: How to set id of a component? by wildaker
- Replies
- 4
- Views
- 985
Doesn't
{ text: 'button 1', flex: '1', id: 'myBtn1'}
work for you?
Results 1 to 25 of 30
