Search Type: Posts; User: khangwei
Search: Search took 0.04 seconds.
-
27 Apr 2012 8:19 AM
Jump to post Thread: Ext.data.Store as a storage? by khangwei
- Replies
- 14
- Views
- 1,026
Thanks so much for the all the help rendered! It was really great!
-
26 Apr 2012 2:36 PM
Jump to post Thread: Ext.data.Store as a storage? by khangwei
- Replies
- 14
- Views
- 1,026
Hello mitchellsimoens,
This is how I implemented it, it is working perfectly. However, am i creating a new overlay each time? There is nothing that I created outside of this scope (You said... -
26 Apr 2012 8:20 AM
Jump to post Thread: Ext.data.Store as a storage? by khangwei
- Replies
- 14
- Views
- 1,026
I'll try this. Thanks so much. You're of great help! Really appreciate it! :)
-
26 Apr 2012 8:01 AM
Jump to post Thread: Ext.data.Store as a storage? by khangwei
- Replies
- 14
- Views
- 1,026
Thanks so much for the quick response and guide. I will try that.
I went to look at the api reference. When you say hide and show, do you mean I can just call the container's method without... -
26 Apr 2012 7:40 AM
- Replies
- 2
- Views
- 833
Hi mitchellsimoens,
I solved this. The problem was because right after the request, I pushed the result to a navigation view. I moved the pushing into the success(). I think it was because this... -
26 Apr 2012 7:38 AM
Jump to post Thread: Ext.data.Store as a storage? by khangwei
- Replies
- 14
- Views
- 1,026
Thanks so much again, mitchellsimoens.
How should I display it? Just add it to viewport? and if I click on back, I should go back and then destroy that container? -
25 Apr 2012 11:59 AM
Jump to post Thread: Ext.data.Store as a storage? by khangwei
- Replies
- 14
- Views
- 1,026
I tried and I realized I can have 2 event listeners to the same marker.
Should I create the container within the function and show it? Or should I create 1 instance of the container outside and... -
25 Apr 2012 11:51 AM
Jump to post Thread: Ext.data.Store as a storage? by khangwei
- Replies
- 14
- Views
- 1,026
Thanks for the quick reply again. Currently, I am looping through a JSON to plot the markers and add the listeners.
Can I add 2 event listeners to the same marker?
As mentioned in your... -
25 Apr 2012 11:47 AM
Jump to post Thread: Synchronously loading error by khangwei
- Replies
- 2
- Views
- 533
Works great.
Thanks so much again!
Khang Wei -
25 Apr 2012 11:37 AM
- Replies
- 2
- Views
- 482
Thanks so much!
-
25 Apr 2012 11:07 AM
- Replies
- 2
- Views
- 418
I am trying to use a google marker listener to fire a custom event and let my application listen to it so that I can create a new container?
Essentially, what i am trying to achieve is to click on... -
25 Apr 2012 11:06 AM
Jump to post Thread: Ext.data.Store as a storage? by khangwei
- Replies
- 14
- Views
- 1,026
Hi Mitchell,
Thanks for the reply. I solved it by instantiating the store at the beginning of the view before binding it.
On another note, can you guide me or point me to references where I am... -
24 Apr 2012 10:27 PM
- Replies
- 2
- Views
- 418
Currently, when i click on the markers, their respective infowindow opens. I want to have container opened using a button in the infowindow, or by clicking on the marker.
Any guidance is greatly... -
24 Apr 2012 6:58 PM
- Replies
- 2
- Views
- 418
Hi, is it possible to click on google map markers (which are generated dynamically) and create a new view when click on any of them?
-
24 Apr 2012 6:47 PM
Jump to post Thread: button in google maps infowindow by khangwei
- Replies
- 2
- Views
- 1,614
hey Rickert, did you manage to solve this? I am looking at a similar problem
-
24 Apr 2012 2:17 PM
- Replies
- 2
- Views
- 833
Hi all, I need major help! Please help!
I have 2 JsonP request and both of them have no callbackkey. I leave it to sencha to auto generate it. The first one I built was successful without any... -
24 Apr 2012 2:16 PM
- Replies
- 1
- Views
- 363
Sorry, I posted it at the wrong place. Can the admin please delete this? Thank you.
-
24 Apr 2012 2:12 PM
- Replies
- 1
- Views
- 363
Hi all, I need major help! Please help!
I have 2 JsonP request and both of them have no callbackkey. I leave it to sencha to auto generate it. The first one I built was successful without any... -
24 Apr 2012 9:55 AM
- Replies
- 1
- Views
- 488
Does the back button generated automatically have the .pop function in it when i cick on it?
navigationview.push({
title: 'New views title',
html: 'Some content'... -
24 Apr 2012 12:33 AM
Jump to post Thread: Synchronously loading error by khangwei
- Replies
- 2
- Views
- 533
Hello,
I have this chunk of codes
var busstore = Ext.create('TripPlanner.store.BusStore');
Ext.define('TripPlanner.view.schedule.index', {
extend: 'Ext.navigation.View',
xtype:... -
23 Apr 2012 11:02 PM
- Replies
- 2
- Views
- 482
Hi, I am wondering if there is a way to customize the displayField to have more than 1 field from the model.
I tried this
displayField: '{route_short_name} - {route_long_name}'
and got the... -
23 Apr 2012 7:38 PM
Jump to post Thread: Ext.data.Store as a storage? by khangwei
- Replies
- 14
- Views
- 1,026
Hello all,
I have a json file that contains some busstops and I am wondering if i could use Ext.data.Store to keep these records? I am intending to loop through it and place these busstops on a... -
22 Apr 2012 3:42 PM
Jump to post Thread: Getting object reference by khangwei
- Replies
- 5
- Views
- 639
Thanks so much again (:
-
22 Apr 2012 3:08 PM
Jump to post Thread: Getting object reference by khangwei
- Replies
- 5
- Views
- 639
Hello, another quick question:
What is it is a tabpanel within a container? Can I do homeContainer #idname as a reference?
Ext.define('TripPlanner.view.home.index', { extend: 'Ext.Container',... -
22 Apr 2012 10:05 AM
Jump to post Thread: Plotting nearby busstops by khangwei
- Replies
- 1
- Views
- 452
So I have a xtype: map where I am trying to get my current location and plot the nearby bus stops in where I am. I have a .txt file of bus stops with lat and longs. I am wondering what is the best...
Results 1 to 25 of 40
