Search Type: Posts; User: DaveC426913
Search: Search took 0.02 seconds.
-
11 Aug 2011 7:45 AM
Jump to post Thread: align one menu button right by DaveC426913
- Replies
- 4
- Views
- 885
Found the solution: remove layout:'hbox'
-
11 Aug 2011 6:22 AM
Jump to post Thread: align one menu button right by DaveC426913
- Replies
- 4
- Views
- 885
Hm well, that didn't work.
I changed the xtype from 'container' to 'toolbar', (which has caused my buttons to look like labels until I rollover them, but I'll figure that out later.)
Then I... -
10 Aug 2011 12:09 PM
Jump to post Thread: align one menu button right by DaveC426913
- Replies
- 4
- Views
- 885
I know this has been exampled many times but there are fifty ways to build a menu, so 49 of them won't work depending on how it's set up.
I want my userName and SignOut buttons pushed all the way... -
10 Aug 2011 7:06 AM
Jump to post Thread: Submitting a form to Ajax by DaveC426913
- Replies
- 2
- Views
- 365
params: form.getFieldValues(),
That was it.
I had gotten most of the way there but got stuck on the multiple params format:
params:
{
???: form.getFieldValues()
} -
10 Aug 2011 6:54 AM
Jump to post Thread: Submitting a form to Ajax by DaveC426913
- Replies
- 2
- Views
- 365
I'm trying to POST a form to Ajax. Normally, we put all data into a JSON requestObj and submit it that way, but this form is so small it'll be submitted directly, and that's what the API is...
-
17 Jan 2011 6:48 AM
- Replies
- 4
- Views
- 801
It should be doable. You may have to add some css to control margin/padding.
You should be able to 'flow' them into your box so they wrap to the next line.
Failing that though, a last-ditch... -
14 Jan 2011 10:32 AM
Jump to post Thread: minifying the js by DaveC426913
- Replies
- 0
- Views
- 615
I'm running a benchmark test on my device to see how my app performs under optimal conditions, so I want to see if minifying it has a performance effect. (OK, there's question 1: will it?)
A long... -
23 Dec 2010 1:03 PM
- Replies
- 5
- Views
- 792
Yeah. I was torn between doing it properly with provided objects, and just patching it for now.
I came across this complication while in the middle of getting other functionality going, so I... -
23 Dec 2010 6:48 AM
- Replies
- 5
- Views
- 792
Hm. OK. The API docs are pretty basic on stores, and it's a big topic.
For example, the store has a config property url:
I'm not sure how I reconcile that with my myriad API AJAX calls:
... -
22 Dec 2010 2:24 PM
- Replies
- 5
- Views
- 792
Say I've got an array of objects:
arrDepts = [];
objDept ={};
objDept.id='1'
objDept.title='Bakery'
arrDepts.push(objDept); -
22 Dec 2010 8:02 AM
Jump to post Thread: Ajax and data access layers by DaveC426913
- Replies
- 0
- Views
- 1,002
Help! My app is out of control. I'm now having to add another level of abstraction between the UI and the data access: dataObjects. And that means another layer of callbacks.
I'm adding this... -
21 Dec 2010 9:43 AM
- Replies
- 1
- Views
- 526
It's that floating property again. That's what's causing it. If I remove floating: true, then my 2nd floating dialogue persists.
Unfortunately, if I don't float my dialogues, it mangles the... -
21 Dec 2010 9:16 AM
- Replies
- 1
- Views
- 526
I don't get what could possibly be doing this. I've ripped out all code.
1] When you click on a line item, it shows() a full screen dialogue (ItemSummary) showing the summary of that item.
2]... -
17 Dec 2010 1:54 PM
Jump to post Thread: making a textfield clickable by DaveC426913
- Replies
- 8
- Views
- 1,515
Sweet! Even more elegant.
Thanks! -
17 Dec 2010 11:06 AM
Jump to post Thread: making a textfield clickable by DaveC426913
- Replies
- 8
- Views
- 1,515
Beauty! Thank you!
-
17 Dec 2010 11:01 AM
Jump to post Thread: making a textfield clickable by DaveC426913
- Replies
- 8
- Views
- 1,515
Cannot call method 'on' of undefined
-
17 Dec 2010 10:51 AM
Jump to post Thread: making a textfield clickable by DaveC426913
- Replies
- 8
- Views
- 1,515
I have an item's details listed in rows:
Name: Bob
Phone:
Dept: Accounting
I want to be able to click on the item to open a dialogue to edit it (as oppsoed to editing it in-place).
How can I... -
17 Dec 2010 9:33 AM
- Replies
- 0
- Views
- 476
Will the API docs be updated to fix bugs?
Some examples:
- some search terms return no hits, eg. 'flex'
- some search terms return false hits, eg. 'blur' returns Ext.form.field, yet there is no... -
14 Dec 2010 1:18 PM
Jump to post Thread: making a popup dialogue by DaveC426913
- Replies
- 0
- Views
- 445
I'm building an OK/Cancel dialogue. Two problems:
1] It looks fine if I let it appear immediately on the page load. but if I start with it hidden:true or setVisible(false) then, when I show it,... -
14 Dec 2010 10:04 AM
- Replies
- 0
- Views
- 572
I've got a DELETE button that I want to require confirmation. i.e. you must press it twice. First time, simply highlights it. Second time commits to delete. Pressing anywhere other than the button...
-
13 Dec 2010 1:40 PM
- Replies
- 1
- Views
- 638
Well, I don't know if there's a more elegant built-in solution out there, but this works:
I simply call it right before outputting to a field.
replaceSpecialChars: function(inString){
... -
13 Dec 2010 11:53 AM
- Replies
- 1
- Views
- 638
I'm trying to populate a textfield with >, < or & characters.
When I send my text off to the database with a > in it, it gets thoroughly scrubbed. When retrieve it again, I get back '>'.
... -
8 Dec 2010 8:56 AM
Jump to post Thread: Ajax call - softcoding param by DaveC426913
- Replies
- 5
- Views
- 550
Nope.
-
8 Dec 2010 8:48 AM
Jump to post Thread: Ajax call - softcoding param by DaveC426913
- Replies
- 5
- Views
- 550
Nope. Thought of that.
Thread Tools:
Show printable..
Email...
Subscribe...
Add a poll... -
8 Dec 2010 7:57 AM
Jump to post Thread: Ajax call - softcoding param by DaveC426913
- Replies
- 5
- Views
- 550
Dumb mistake. No need to ask question. pls delete
Results 1 to 25 of 104
