Search Type: Posts; User: won.rhee
Search: Search took 0.06 seconds.
-
26 Sep 2012 12:29 PM
- Replies
- 3
- Views
- 645
Thanks for the quick reply and your input.
Part of my problem was I was missing PhoneGap 1.2 on this mac. Thankfully phonegap download section has them.
It does seem to work on iOS 5.1. But... -
26 Sep 2012 9:29 AM
- Replies
- 3
- Views
- 645
Hello guys,
I have an old app based on ST1.1 and PG1.2.
I know a lot has changed since then, but I'm trying to port it over to iOS 5.
Could someone steer me to right direction?
Thank you. -
4 Apr 2012 4:20 PM
Jump to post Thread: Fit to parent by won.rhee
- Replies
- 123
- Views
- 71,849
+1 for this
-
29 Dec 2011 12:03 PM
- Replies
- 4
- Views
- 779
thank you again. it worked nicely.
-
29 Dec 2011 11:47 AM
- Replies
- 4
- Views
- 779
focus and blur events do fire as expected and add panel just fine.
It's just that removing that panel doesnt do the trick.
So I remove a panel with
this.searchPanel.remove(this.newPanel); And... -
29 Dec 2011 9:49 AM
- Replies
- 4
- Views
- 779
Hello,
So I have two listeners (focus and blur) on a textfield. focus() and blur() listeners will call different controller method.
focus() will create a newpanel, add(newpanel), then... -
20 Dec 2011 11:17 AM
- Replies
- 2
- Views
- 1,249
I've used navigator.geolocation.stop()
This will stop gps locations calls when used with phonegap.
... -
16 Dec 2011 5:05 PM
- Replies
- 2
- Views
- 1,249
This is driving me crazy... Same code works just fine on web browser but does not disconnect gps location calls when used with PhoneGap.
So basic controller code :
index:... -
16 Dec 2011 2:41 PM
- Replies
- 3
- Views
- 1,333
What do you know... as soon as i post that it doesnt work, I find something that works.
following this direction & this post :
http://www.sencha.com/forum/archive/index.php/t-152094.html?
... -
16 Dec 2011 2:34 PM
- Replies
- 3
- Views
- 1,333
hmmm... not sure what to do.
http://www.sencha.com/forum/archive/index.php/t-134893.html? post seems to address the same topic. I've followed it using type:'scripttag' as well, but just hangs... -
13 Dec 2011 5:51 PM
- Replies
- 3
- Views
- 1,333
Hello, this is probably just a confirmation question but couldnt find an exact "yes" on the web.
So I have a Ext.data.Store call with url set to some remote php file that serves up json.
I've... -
7 Dec 2011 2:06 PM
Jump to post Thread: Google Maps Listener on click by won.rhee
- Replies
- 9
- Views
- 4,821
'mouseup' worked for me without using above fix.
-
2 Dec 2011 2:09 PM
- Replies
- 5
- Views
- 902
Ok, so this is what I did to resolve :
var id = parseInt(index);
var filtered = MyApp.stores.mydata.getAt(id);
var data = { -
2 Dec 2011 1:07 PM
- Replies
- 5
- Views
- 902
Yes, it does return correct data record.
When I use it as store : record.data (or filteredStore in my example), it gives me
Uncaught Attempting to create a component with an xtype that has not... -
2 Dec 2011 12:54 PM
- Replies
- 5
- Views
- 902
It's an instance of Ext.data.Store.
MyApp.stores.mydata = new Ext.data.Store({
model: 'somemodel',
proxy: {
.... -
2 Dec 2011 12:32 PM
- Replies
- 5
- Views
- 902
[RESOLVED]
Should be simple but cant seem to get it right.
I want to "filter" out a store data with getAt() and use that for xtemplate.
var id = parseInt(index);
var filteredStore =... -
1 Dec 2011 11:23 AM
- Replies
- 7
- Views
- 2,004
'p' just points to 'this' so in my example, it's just referring to this.mapPanel :
from Sencha Doc API 1.1
deactivate( Ext.Component this )
Fires after a Component has been visually deactivated.... -
29 Nov 2011 5:05 PM
- Replies
- 3
- Views
- 792
navigator.geolocation.getCurrentPosition(Ext.util.Functions.createDelegate(function(pos){
initialLocation = new google.maps.LatLng(pos.coords.latitude, pos.coords.longitude);
... -
29 Nov 2011 4:57 PM
- Replies
- 7
- Views
- 2,004
After trying out several things, I believe following fixed this issue for me.
I had to destroy the map panel then render it again.
this.mapPanel = this.render({
... -
29 Nov 2011 3:03 PM
Jump to post Thread: Round and Format itemTpl by won.rhee
- Replies
- 1
- Views
- 622
Quick question:
items : [{
xtype:'list',
itemTpl:'{StoreCode} : {StoreName} ({distance})',
store: MyApp.stores.mydata
}] -
28 Nov 2011 10:36 AM
- Replies
- 6
- Views
- 893
panel.mon(panel.body, {
scope : panel,
delegate : 'a',
tap : function() {......}
});
Where can I find mon() in Secha Docs API? -
28 Nov 2011 10:22 AM
Jump to post Thread: Map not rendering correctly by won.rhee
- Replies
- 5
- Views
- 1,345
I remember I had similar problems using TabPanel.
Now I am attaching the bottom "tabbar" wrapped in Ext.Panel in my Viewport, using card layout.
Then using setActiveItem, I render views I want,... -
28 Nov 2011 9:54 AM
- Replies
- 7
- Views
- 2,004
So when "showmap" method is dispatched, it works and shows map just fine.
29631
But when "showmap" is dispatched 2nd time, it shows like this: (DOES NOT SHOW MAP)
29632
I was thinking... -
25 Nov 2011 12:45 PM
- Replies
- 3
- Views
- 639
Hello, I have following in controller :
this.mapPanel = this.render({
xtype: 'LocationsMapView'
});
this.application.viewport.setActiveItem(this.mapPanel);
//then get DOM of... -
25 Nov 2011 12:03 PM
- Replies
- 7
- Views
- 2,004
RESOVLED
Hello,
I just cannot seem to figure out why following code does not work 2nd time :
in controller :
showmap: function(options){
Results 1 to 25 of 52
