Search Type: Posts; User: DonRul
Search: Search took 0.03 seconds.
-
14 May 2012 2:48 PM
Jump to post Thread: Are Themes Available? by DonRul
- Replies
- 3
- Views
- 611
I just noticed the winners of the Sencha theme contest.
When I went to the link for the theme http://senchalearn.github.com/roookies/?style=http://dl.dropbox.com/u/23786470/sencha-touch/basic.css... -
11 May 2012 5:21 PM
Jump to post Thread: Select not updating selection by DonRul
- Replies
- 5
- Views
- 748
Just updated to build 439 and this repros with it.
-
11 May 2012 3:53 PM
Jump to post Thread: Select not updating selection by DonRul
- Replies
- 5
- Views
- 748
I traced this from the very beginning of the process. It appears that _lastSelected is appropriately set in the first call. The problem is when you click on the trigger to open the picker the second...
-
10 May 2012 7:15 PM
Jump to post Thread: Select not updating selection by DonRul
- Replies
- 5
- Views
- 748
Looking at this in the debugger it appears that there are some conditions under which
setLastSelected(record);
Does not update _lastSelected to the value of the current record but sets it to... -
10 May 2012 3:46 PM
Jump to post Thread: Select not updating selection by DonRul
- Replies
- 5
- Views
- 748
This is really becoming a problem. I've tried to create a small reproducable case but the issue doesn't repro. I am systematically removing all events that are caught by the system to see if what...
-
7 May 2012 3:44 PM
Jump to post Thread: Select not updating selection by DonRul
- Replies
- 5
- Views
- 748
I have a number of Select fields where I catch the change event and perform some processing. When I change the selected item and then go back to the Select field, the first item in the list appears...
-
7 May 2012 3:07 PM
- Replies
- 1
- Views
- 337
It finally occurred to me that the selects that are giving me trouble are those where I catch the onSelected event. I am guessing that when I catch the event the normal Select processing does not...
-
4 May 2012 12:33 PM
- Replies
- 4
- Views
- 896
It turns out that I didn't need to refresh the store, I just need to put the data in the right place. Notice in the above:
rec.DrugName = drugRec.data.DrugName1;
should be
rec.data.DrugName... -
4 May 2012 12:17 PM
- Replies
- 1
- Views
- 337
I have two select fields:
xtype: 'fieldset',
title: 'Clinical Decision',
items: [
{
... -
3 May 2012 2:46 PM
- Replies
- 2
- Views
- 390
Good point that this is a framework and not an Architect issue.
Thanks,
Don -
3 May 2012 2:18 PM
- Replies
- 15
- Views
- 1,310
One other thing is to set a refresh on the List to see if for some reason it isn't properly associated with the store.
-
3 May 2012 2:15 PM
- Replies
- 15
- Views
- 1,310
When I have had this problem I first used Fiddler (virtual network scope) to make sure that the URL for the proxy was correct and that the data coming over the wire is in the format that I expect....
-
3 May 2012 2:03 PM
- Replies
- 4
- Views
- 1,052
That is very helpful for a single-table app but doesn't help much with the Master-Detail question. I am confused myself how Associations are used (confused that they are applied to models not...
-
2 May 2012 1:25 PM
- Replies
- 1
- Views
- 303
I also tried this to no avail
pickerSlot.setData( [
{text: 'DrugName1', value: 'Alacort'},
{text: 'DrugName1', value: 'Asprin'},
{text: 'Drugname1', value:... -
2 May 2012 12:40 PM
- Replies
- 15
- Views
- 1,310
Just a guess but would USERS/USER or USERS.USER do it
-
1 May 2012 7:43 PM
- Replies
- 1
- Views
- 303
I have a picker with a single slot that I am trying to bind to a store. I didn't see the store in the properties in Architect but the documentation says that it is a property so I set it. When I...
-
1 May 2012 5:55 PM
- Replies
- 1
- Views
- 395
Here is the kludge that I came up with but I am sure that there must be a better way. I just wait for the store to be refreshed and then insert the names associated with the foreign key into it.
... -
30 Apr 2012 7:27 PM
- Replies
- 1
- Views
- 555
I spent a lot of time on this issue earlier and finally found out what is going on.
Today I added a store to my application and although everything deployed (using manual xcopy because I have... -
30 Apr 2012 3:31 PM
- Replies
- 9
- Views
- 858
Here is a resource that covers some of the breaking changes in the ext implementation http://docs.sencha.com/touch/2-0/#!/guide/upgrade_1_to_2 but it doesn't cover the project layout.
I get the... -
30 Apr 2012 2:55 PM
- Replies
- 9
- Views
- 858
I found that it was much easier to start from scratch. There are enough differences in both the object model and the architectural patterns (e.g. a 1.x app may have views calling controllers where...
-
30 Apr 2012 2:29 PM
- Replies
- 4
- Views
- 896
I have a list bound to a Store that is updated by an Ajax query. After the store is refreshed I update one field in the record by looking it up in another store:
onJsonstoreRefresh:... -
30 Apr 2012 10:44 AM
- Replies
- 2
- Views
- 390
It isn't clear to me why an association would be applied to a Model and not a Store. What I want an association to do is lookup an instance in a store using the foreign key but the foreign key...
-
30 Apr 2012 9:02 AM
- Replies
- 1
- Views
- 395
I have two related stores with a common key/foreign key. A patient has a list of medications that are described by RXCUI and RXCUI can be used to lookup the drug name. I've experimented with...
-
27 Apr 2012 11:17 AM
Jump to post Thread: Syntax for using HasOneAssociation by DonRul
- Replies
- 0
- Views
- 246
I have two models, PatientMedicationModel and DrugModel. In PatientMedication I have defined an association
hasOne: {
model: 'PgxPortal.model.DrugModel',
... -
26 Apr 2012 4:17 PM
- Replies
- 3
- Views
- 712
It looks like the base directory under stores is legacy as well. So I assume that the problem was inconsistency between Application and app.js
Results 1 to 25 of 66
