Search Type: Posts; User: angelflaree
Search: Search took 0.02 seconds.
-
16 Nov 2009 11:21 AM
- Replies
- 0
- Views
- 816
Hi, folks,
I have a grouping store and group view, and I display the # of Items in each group at the group header as the standard example shows in:... -
13 Nov 2009 4:54 PM
- Replies
- 3
- Views
- 1,970
Hi, I was able to add a short msg right beside the "refresh" button on the paging toolbar.
This is my solution
In the paging toolbar config I use:
,items:[{
... -
26 Oct 2009 10:31 AM
- Replies
- 12
- Views
- 3,436
wow, hope you won't be catched by the flying piggy ;)
My secret therapy is boiling jinger with brown sugar..~o) -
26 Oct 2009 9:41 AM
- Replies
- 12
- Views
- 3,436
Thank you for your reply, aw1zard2.
Did you find a solution?
I tried to override those css but still nothing changed. -
20 Oct 2009 12:50 PM
- Replies
- 12
- Views
- 3,436
anyone has any suggestion please? :s
-
16 Oct 2009 11:03 AM
- Replies
- 4
- Views
- 2,237
Hi, folks
I found a similar problem in the combo box in EXT 3.0. Not sure if this has been solved.
That if I use a static store for the combo. After selecting a value from the dropdown option... -
7 Oct 2009 8:33 AM
- Replies
- 12
- Views
- 3,436
Thanks for the hint.
I see the css class from firebug is:
class="x-btn x-btn-noicon x-btn-focus"
How should I override it?
I defined the following, but nothing happened. -
5 Oct 2009 1:26 PM
- Replies
- 12
- Views
- 3,436
Hi,
I don't know if anyone noticed this. When in the last field of a FormPanel and hit Tab. The focus will default to move to the buttons on the bottom of the form. In Chrome, it doesn't appear to... -
14 Sep 2009 3:08 PM
- Replies
- 7
- Views
- 3,182
I found an issue related to RowSelectionModel too.
I have a grid that has one column editable. Previously (before using Ext3.0.1) when I'm using Ext 2.X or Ext 3.0, I'm always able to enter value... -
28 Aug 2009 5:20 PM
- Replies
- 11
- Views
- 12,556
It's not working under IE 8.
You have to do explicit type conversion:
rowEl = new Ext.Element(rowEl);
to let it work -
21 Aug 2009 9:21 AM
- Replies
- 2
- Views
- 4,787
Good. It works, but only when in the initial field config, I set qtip to blank
,qtip:''
If I set it to an initial string value, then after calling your function it still shows my initial qtip... -
31 Jul 2009 12:20 PM
- Replies
- 11
- Views
- 12,556
This is great.
I use it to fix the editing stop problem in EXT 3.0 when I add a new row to the bottom of the grid and call grid.startEditing() on one cell. If there're many rows in the grid and... -
30 Jul 2009 10:03 AM
- Replies
- 8
- Views
- 2,986
Hi, Condor,
I changed it for EXT 3.0, because this.imageEl seems to be null, see if this is correct.
Ext.override(Ext.form.Checkbox, {
getTipTarget: function(){
var target = [this.el];... -
4 Jun 2009 9:18 AM
- Replies
- 14
- Views
- 8,013
I'm not sure about which css is applied that disable the selection.
I am using the row selection model and I use Inspect function in the Firebug, see the class for a cell's inner text is using the... -
13 May 2009 3:48 PM
- Replies
- 14
- Views
- 8,013
Hi, any one knows how to change the css to accomplish this?
I tried to change the unselectable="on" and set it to "off" in the GridView.js
initTemplates: function(){
......
... -
13 Feb 2009 7:58 AM
- Replies
- 8
- Views
- 8,055
Hi,
I am trying to use the css style: "white-space:pre" inside my renderer, working under FF but not under IE 7. I googled and didn't find any post or Microsoft website to say this css is not... -
21 Jan 2009 3:20 PM
- Replies
- 623
- Views
- 217,842
Hi, Saki,
Can you please let me know what regular expression I should use
if I want to use '|' as the separator.
I want my return value looks like 'A|B|C|...' so it can be easily used on my... -
18 Nov 2008 8:00 AM
- Replies
- 7
- Views
- 3,242
Well I think probably I can make my extended checkBoxSelectionModel to be flexible and work for both cases, using some little complex condition to differ each.
-
17 Nov 2008 12:35 PM
- Replies
- 7
- Views
- 3,242
Thanks Condor.
Recreate the gridpanel works, I did it in the window's "beforeshow" handler, but really inconvenient.
I see there's grid.reconfig() method to dynamically change the columnmodel and... -
17 Nov 2008 9:05 AM
- Replies
- 7
- Views
- 3,242
Hi,
I want to switch between 2 checkBoxSelection models in a grid panel inside an Ext Window, depending on my data value.
I config my grid using:
sm: new Ext.grid.CheckboxSelectionModel() -
10 Nov 2008 11:34 AM
- Replies
- 0
- Views
- 1,780
Hi, folks
I have a combo field in my form and I add a listener to the combo's "select" event. Inside the "select" event handler, I fire "blur" event and let the focus goes to another text field in... -
27 Oct 2008 12:09 PM
Jump to post Thread: numberfield show format by angelflaree
- Replies
- 8
- Views
- 5,019
This is good for the problem asked in this thread, but it has a problem.
If I want a field with integer type, and I set "allowDecimals: false", then it always force to display at least 3 digit... -
16 Oct 2008 12:29 PM
- Replies
- 6
- Views
- 3,024
I did see it has some effect. By changing the tabIndex, I can TAB twice to reach the "save" button. So I realize the IE always force the focus back to the grid itself. So I come up w/ a walkaround,...
-
16 Oct 2008 11:42 AM
- Replies
- 6
- Views
- 3,024
I am doing this now, but the focus still bounce back to the grid row under editing
gridView.focusEl.dom.tabIndex = 1000;//the system default is -1
saveButton.el.dom.tabIndex = 999;//I set to 0,... -
16 Oct 2008 10:47 AM
- Replies
- 6
- Views
- 3,024
Thanks Animal, you're very fast.
I tried to set a tabIndex value to the focusEl:
myGrid.on("render", function(){
var gridView = myGrid.getView();
...
Results 1 to 25 of 64
