Search Type: Posts; User: allardp
Search: Search took 0.02 seconds.
-
14 Mar 2013 4:55 AM
- Replies
- 26
- Views
- 2,941
ExtJs 4.2 is out now, anybody knows if this issue is fixed in that version?
-
14 Mar 2013 4:07 AM
- Replies
- 10
- Views
- 5,665
great, the override works fine ! thanks a lot
-
11 Mar 2013 4:25 AM
- Replies
- 2
- Views
- 2,490
it's been two years after your post but if someone is looking for an answer to this question (like I was): you can use the checkchange event on the treepanel
-
14 Dec 2012 5:38 AM
Jump to post Thread: xtypes Complete List by allardp
- Replies
- 14
- Views
- 36,716
I also was happy to see this post of 4 years old showing xtypes of ExtJs 3.3, because it helped me out.
It seems impossible to find a list of xtypes in the current documentation of Ext 4.1.3.... -
1 Jun 2012 11:31 AM
- Replies
- 3
- Views
- 493
Hi, I had the same problem, when trying to reload the whole tree based on another param. Indeed the bigger the tree, the more requests were sent (some were aborted, leading to invalid json etc etc)
... -
5 Oct 2011 12:07 PM
Jump to post Thread: Custom MessageBox Buttons by allardp
- Replies
- 4
- Views
- 3,464
messagebox is way to restrictive, and in Ext4 it is NOT usable for custom buttons, so use simple window instead:
Ext.create("Ext.Window", {
title: "yourtitle",
bodyStyle: "padding:10px",
... -
12 Sep 2011 11:47 AM
- Replies
- 8
- Views
- 5,973
I would also need this "clone" functionality for a store. I have a usersStore which contains all users. At some point in my application only a filtered part of the users store should be shown in a...
-
11 Aug 2011 3:29 AM
Jump to post Thread: Ext.DomHelper is undefined by allardp
- Replies
- 3
- Views
- 2,325
Thanks, it worked for me too. The online documentation is incorrect at : http://docs.sencha.com/ext-js/4-0/#/api/Ext.DomHelper
It says Ext.DomHelper, but should be Ext.core.DomHelper. (also in the... -
7 Aug 2011 4:55 AM
Jump to post Thread: Set Checkbox boxLabel dynamically by allardp
- Replies
- 19
- Views
- 11,240
I finally resolved to changing the HTML in the DOM directly, the only way I got it working was
chkboxfld.el.dom.firstChild.lastChild.innerHTML = "new label";
But why is there... -
1 Aug 2011 3:28 PM
Jump to post Thread: Background color of textarea by allardp
- Replies
- 4
- Views
- 3,763
This actually works, in Ext4 I had to do this :
{
xtype: "textarea",
name: "editor",
value: "",
fieldStyle: "background: #FFFF55 none repeat scroll 0 0 !important;"
} -
14 Jul 2011 12:38 PM
- Replies
- 4
- Views
- 3,655
This was very usefull for me, I had the same problem.. The fix at least solves my problem for messagebox.
Would be nice if this was more generally configurable in Ext, also for update/cancel... -
7 Jul 2011 10:14 AM
- Replies
- 1
- Views
- 1,198
Hi, a little late to reply, but here it goes : is the leaf attribute not what you are looking for? setting leaf:true makes the node without expand
-
21 Jun 2011 9:06 AM
Jump to post Thread: htmleditor by allardp
- Replies
- 3
- Views
- 434
sorry ... my fault ... I should have used :
hideMode:"destroy"
(or removed it at all, since it is default) -
21 Jun 2011 8:59 AM
Jump to post Thread: htmleditor by allardp
- Replies
- 3
- Views
- 434
Here is example code that shows it, when you call this function to open a window, and close the window, then there is still a area visible that was the contentEditable area :
function... -
21 Jun 2011 7:10 AM
Jump to post Thread: htmleditor by allardp
- Replies
- 3
- Views
- 434
Hello, I am opening a Window programmatically with a HtmlEditor. The problem is that when I close the window, the area of the editor is still visible, although the window is destroyed (hideMode:...
-
17 Jun 2011 12:07 PM
Jump to post Thread: Set Checkbox boxLabel dynamically by allardp
- Replies
- 19
- Views
- 11,240
Hi, I agree that a SetBoxLabel() method would be nice to be added, because in Ext4 it does not work with the suggested code... Anyone knows how to set the boxlabel dynamically in Ext4 ?
I tried... -
16 Jun 2011 11:19 AM
Jump to post Thread: Combo box list width (again) by allardp
- Replies
- 14
- Views
- 10,352
Hi, is it only me that is having a problem in Ext 4.0 that the combobox is now always the same item width as the originally set width for the combobox itself. Even in the documentation the listWidth...
-
10 Jun 2011 11:01 AM
Jump to post Thread: Combo box : width size issue by allardp
- Replies
- 7
- Views
- 5,566
All this does not work in ExtJS 4 .. seems these properties are also not in the documentation.
The width of the list is always the same as the combobox, while I want to specify it as larger .. how... -
26 May 2011 3:00 PM
Jump to post Thread: multiple tooltips by allardp
- Replies
- 0
- Views
- 236
Hi,
I have a main panel with lots of HTML content, and I want to display multiple tooltips at some specific locations, that are by default all visible. When scrolling the main panel, the tooltips... -
12 May 2011 4:42 AM
- Replies
- 3
- Views
- 776
hmm, I don't know if it is possible, but can you only make changes to the first store. So if you are working in the second view, make sure you only make the change in the first store (there is an...
-
12 May 2011 4:18 AM
Jump to post Thread: treepanel show "name" column by allardp
- Replies
- 1
- Views
- 529
When I include a treepanel anywhere, I always get a column "name" on top of it. Where does that come from, and how can I disable it?
I have for example the following definition:
return... -
12 May 2011 3:31 AM
Jump to post Thread: GET or POST by allardp
- Replies
- 0
- Views
- 391
When using Ext3.3, I always received parameters in MVC as POSTed, so in the form collection.
For example, when I do now the following in Ext4:
assignmentsStore.load({
params:
... -
12 May 2011 3:25 AM
- Replies
- 3
- Views
- 776
I had to do something similar, and did the following:
use two clientside stores, but only load one of them, on load event of the first store, copy the data of that store to the second one (you can... -
12 May 2011 3:17 AM
Jump to post Thread: Load TreePanel at once by allardp
- Replies
- 2
- Views
- 964
I found the problem, it was that the tree store contained a proxy definition. (sorry, I did not specify this in the code that I posted). When I removed the proxy definition from the store, when...
-
11 May 2011 5:52 AM
Jump to post Thread: Load TreePanel at once by allardp
- Replies
- 2
- Views
- 964
I have a treePanel that I want to load dynamically with a full tree, where the childnodes are not exanded, but already loaded. This worked in Ext3.3, I use exactly the same data in Ext4, but when...
Results 1 to 25 of 28
