Search Type: Posts; User: gnube
Search: Search took 0.03 seconds.
-
28 Apr 2012 8:50 PM
Jump to post Thread: Beginner's Question by gnube
- Replies
- 6
- Views
- 453
2) as a general rule have an outer container, place your elements into this. If you have more complicated forms you can put containers inside your containers to create logical/display groups for...
-
28 Apr 2012 8:48 PM
Jump to post Thread: Processing response in Ajax proxy by gnube
- Replies
- 5
- Views
- 1,531
To my thinking, you will need to implement some 'session' handling on the server. This might be a 'login' URL to which you pass a username/password. Something like a cookie base PHP session which...
-
28 Apr 2012 8:22 PM
- Replies
- 14
- Views
- 1,069
I always place my proxy onto my model, not the store - you could give that a try - remove proxy from the store of course.
Ext.define('App.model.ControlGroup', {
extend: 'Ext.data.Model',
... -
28 Apr 2012 7:46 PM
- Replies
- 14
- Views
- 1,069
Clutching at straws but: by any chance do you have multiple config stores on the page? The storeid should be unique.
-
28 Apr 2012 7:31 PM
Jump to post Thread: Processing response in Ajax proxy by gnube
- Replies
- 5
- Views
- 1,531
You don't say how you are talking to the server, what information you are sending the server or how you are implementing authentication/sessions.
If you are using Ajax maybe like this?
... -
9 Apr 2012 4:18 PM
Jump to post Thread: Grid occupies full layout by gnube
- Replies
- 14
- Views
- 958
The following basic idea may help.
If you have not properly defined the space in which you are putting the grid then it can have problems knowing how to draw.
The grid uses the height config... -
9 Apr 2012 2:13 AM
Jump to post Thread: Grid occupies full layout by gnube
- Replies
- 14
- Views
- 958
Did you try viewConfig?
//separate class
Ext.define('poc.view.grid.Student',{
extend: 'Ext.grid.Panel',
alias : 'widget.studentgrid',
viewConfig: {
forceFit: true, // this makes... -
5 Apr 2012 5:53 PM
Jump to post Thread: Prevent page change by gnube
- Replies
- 2
- Views
- 334
Thanks Scott - I have just removed the Ext.Manager and replaced with plain Javascript, this lets Safari block the page change at least. Safari changes the contents of its address box and keeps an...
-
4 Apr 2012 10:52 PM
Jump to post Thread: Prevent page change by gnube
- Replies
- 2
- Views
- 334
I am interested in being able to notify the user that the page is going to be closed/refreshed so that they can cancel out of the event if they want.
I am not interseted in a conversation about... -
4 Apr 2012 10:40 PM
Jump to post Thread: Grid occupies full layout by gnube
- Replies
- 14
- Views
- 958
Possibly your layout or viewConfig setup on your grid panel? I suggest you take a look at the docs for panel configs viewConfig: and layout: - something like this may help.
viewConfig: {
... -
29 Mar 2012 3:16 PM
- Replies
- 2
- Views
- 418
Thanks Mitchell - you hit the nail on the head - it didn't even occur to me that this example would be using the same mechanism to render the checkbox.
Cheers! -
29 Mar 2012 5:12 AM
- Replies
- 2
- Views
- 418
I haven't been able to get any of the solutions I have located via searching to work so am looking for guidance as to how to make a boolean column draw as a checkbox on a grid which implements a...
-
19 Feb 2012 7:04 AM
Jump to post Thread: Theme font assignment variable by gnube
- Replies
- 2
- Views
- 899
Hi Mitchell, thats what it read like to me also - but I am not seeing that reflected on my page. Same result in both Safari and Firefox.
If you setup a theme as per my example with a font you have... -
19 Feb 2012 4:45 AM
Jump to post Thread: Theme font assignment variable by gnube
- Replies
- 2
- Views
- 899
How do I get my font selection to cascade to all text?
I have started looking at making a very simple theme with a replacement font and new base colo(u)r.
I donated to the compass project ages... -
4 Feb 2012 8:48 PM
- Replies
- 5
- Views
- 1,442
It seems that IE takes offence to my specifying my own tag in autoEl config - comment this out and the render happens - one step forwards.
autoEl: {
// tag: 'cxCustomBox',
Thanks... -
4 Feb 2012 8:24 PM
- Replies
- 5
- Views
- 1,442
So...is there a different event I should be trying? I chose to setup afterRender: because I imagined it would fire after the rendering fro, the framework was complete. I guess I could try a delay or...
-
4 Feb 2012 4:20 PM
- Replies
- 5
- Views
- 1,442
Thanks for your reply Mitchell - I get the following results on IE - with Safari/Firefox on OSX I have the element returned in each case
IE8:
Ext.get(this.id) = null
... -
3 Feb 2012 9:22 PM
- Replies
- 5
- Views
- 1,442
I develop using OSX and safari with firefox and both are working, testing now on IE8 and found a failure in my code.
I have extended Ext.component.box to make use of a javascript class which is... -
1 Jan 2012 3:52 PM
Jump to post Thread: Comboboxes 4.0.2 vs 4.0.7-gpl by gnube
- Replies
- 7
- Views
- 960
I came back to look at this again today - I notice that my original description is for a 'editor column' so I made a mock up of a simple 'Ext.form.field.ComboBox'
The result was better but still... -
8 Dec 2011 5:33 PM
Jump to post Thread: Comboboxes 4.0.2 vs 4.0.7-gpl by gnube
- Replies
- 7
- Views
- 960
The best guess I can make based on my observations of the firebug 'net' trail:
a)is that there might be a sync issue going on between the listener clearing out the query and the control drawing... -
6 Dec 2011 7:39 PM
Jump to post Thread: Comboboxes 4.0.2 vs 4.0.7-gpl by gnube
- Replies
- 7
- Views
- 960
Ah - removing that listener seems to have done the trick. I don't recall where I found instruction for adding that - I would like to reload the store upon triggering a list display in order to...
-
6 Dec 2011 6:55 PM
Jump to post Thread: Comboboxes 4.0.2 vs 4.0.7-gpl by gnube
- Replies
- 7
- Views
- 960
Thanks for the reply skittle, I've been unable to get back to this until now.
I have jiggling the config hence the commented guff - no luck. Here is what I have on the combo box form field at the... -
3 Dec 2011 5:50 AM
Jump to post Thread: Comboboxes 4.0.2 vs 4.0.7-gpl by gnube
- Replies
- 7
- Views
- 960
I have noticed that my comboboxed behave differently with 4.0.7-gpl than they did on 4.0.2a
On 4.0.2a the list was able to be displayed when a valid item was selected. Just click on the dropdown... -
23 Nov 2011 12:08 PM
- Replies
- 6
- Views
- 881
I like it!
-
23 Nov 2011 10:54 AM
- Replies
- 6
- Views
- 881
The bit that was eluding me was how to incorporate they new proxy class into my model. I figured it was going to be one of those 'doh!' moments. I simply needed to use Ext.create
...
Results 1 to 25 of 70
