Search Type: Posts; User: willigogs
Search: Search took 0.03 seconds.
-
14 May 2013 9:14 AM
Jump to post Thread: Help with Dynamic Checkboxes by willigogs
- Replies
- 8
- Views
- 247
The issue is that your locationItems array is empty when the store is initialized - and even though you may update this array later - that doesn't update the items in the store. You would have to...
-
14 May 2013 12:53 AM
- Replies
- 3
- Views
- 2,338
http://docs.sencha.com/extjs/3.4.0/#!/api/Ext.Button-cfg-pressed
-
8 May 2013 5:56 AM
- Replies
- 30
- Views
- 4,819
Check the sticky thread above this one...
http://www.sencha.com/forum/showthread.php?260398-Ext-JS-3.4.1.1-Available-Full-Public-Release! -
3 May 2013 4:04 AM
Jump to post Thread: Row expander function? by willigogs
- Replies
- 4
- Views
- 597
Don't use font tags?
Instead append a class / id, and then use CSS/an external stylesheet to style the content with "font-size" and "line-height" properties. -
1 May 2013 1:46 PM
- Replies
- 2
- Views
- 185
One possibility:
Use a flag (such as valid=false). If flag = false, return false to cancel tab change and perform your Ajax call. On success set the flag to true, and fire the method to change... -
30 Apr 2013 12:23 AM
- Replies
- 2
- Views
- 154
Could you provide a working example in code / on JSFiddle, as I've never encountered this :\
-
22 Apr 2013 7:41 AM
- Replies
- 2
- Views
- 233
I assume he probably means "replace all existing text strings with those of the selected language"?
For starters, I guess he would have to dynamically remove the existing locale file and attach... -
22 Apr 2013 2:54 AM
Jump to post Thread: Grid Pagination with checkbox by willigogs
- Replies
- 2
- Views
- 294
Get the rows in your store beforeLoad event, then on load use the selectionModel's selectRows() method:
http://docs.sencha.com/extjs/3.4.0/#!/api/Ext.grid.RowSelectionModel-method-selectRows -
20 Apr 2013 9:30 AM
Jump to post Thread: Buttons Disappear and Reappear by willigogs
- Replies
- 1
- Views
- 148
Try using the following on your tabPanel:
hideMode: 'offsets'
http://docs.sencha.com/extjs/3.4.0/#!/api/Ext.TabPanel-cfg-hideMode -
15 Apr 2013 6:35 AM
- Replies
- 2
- Views
- 247
Have you tried updating to 3.4.1.1 which includes IE10 support?
http://www.sencha.com/forum/showthread.php?260398-Ext-JS-3.4.1.1-Available-Full-Public-Release -
9 Apr 2013 3:21 PM
- Replies
- 8
- Views
- 317
And once again, why are you putting HTML into the store?
What requirement have you been given that has lead you to even attempt this?
I see no reason why you would ever need to (since you can... -
9 Apr 2013 10:05 AM
- Replies
- 8
- Views
- 317
You still haven't explained why though.
Have you looked into column renderers in the API? -
9 Apr 2013 10:02 AM
- Replies
- 8
- Views
- 317
Putting HTML into a store is not a normal method.
It might be a better idea to explain what you're trying to achieve, as there must be a better way to do it... -
9 Apr 2013 9:57 AM
- Replies
- 8
- Views
- 317
I guess the real question should be, why are you putting HTML into your store in the first place? :/
-
9 Apr 2013 4:02 AM
- Replies
- 20
- Views
- 2,359
Without any further information, it's highly unlikely...
-
6 Apr 2013 3:06 AM
Jump to post Thread: layout problem by willigogs
- Replies
- 9
- Views
- 256
Hmm, yes I see what you mean now...
I've never encountered this issue before, since all my EXT applications always use viewports - but it certainly seems a requirement for the vbox/hbox layout to... -
5 Apr 2013 8:01 AM
Jump to post Thread: layout problem by willigogs
- Replies
- 9
- Views
- 256
I added the layoutConfig option that I mentioned earlier, and it seems to work correctly?
http://jsfiddle.net/Whinters/u4QGD/ -
5 Apr 2013 7:50 AM
Jump to post Thread: layout problem by willigogs
- Replies
- 9
- Views
- 256
Sorry - just realised I was missing something ridiculously obvious :D
You need to give the child panels a "flex" value :) -
5 Apr 2013 7:34 AM
Jump to post Thread: layout problem by willigogs
- Replies
- 9
- Views
- 256
In that case it might be due to panel1 having a layout of 'form'.
Try wrapping your panel1 with a container which uses a 'fit' layout.
If that doesn't work I'll actually try and diagnose it in... -
5 Apr 2013 6:19 AM
Jump to post Thread: layout problem by willigogs
- Replies
- 9
- Views
- 256
Try adding the following to your vbox panel:
layoutConfig: {
align: 'stretch'
} -
4 Apr 2013 12:56 PM
Jump to post Thread: textfield, wrap long fieldLabel by willigogs
- Replies
- 4
- Views
- 226
I'm assuming he wants the fieldLabel to be all on one line...
To do this, increase the labelWidth config. -
31 Mar 2013 10:47 AM
- Replies
- 1
- Views
- 266
Use the checkOnly:true config option under the checkboxSelectionModel:
http://docs.sencha.com/ext-js/3-4/#!/api/Ext.grid.CheckboxSelectionModel-cfg-checkOnly -
29 Mar 2013 7:54 AM
- Replies
- 2
- Views
- 292
You would need to return an empty array instead of your null value :)
Alternatively, detect the null being received, then load an empty array into the store. -
29 Mar 2013 2:43 AM
- Replies
- 1
- Views
- 264
I've come across this before, and it's due to the container which the tabs are dropped into having a maximum width. This can be overwritten to make the container wider (I'll have a look later for the...
-
28 Mar 2013 11:44 AM
- Replies
- 7
- Views
- 351
Sorry, I'm not sure I'm understanding what you're trying to achieve?
Adding CSS inline isn't a good approach to take - instead give your combo an ID or class, and then write your css based on this...
Results 1 to 25 of 118
