Search Type: Posts; User: bjnelson62
Search: Search took 0.02 seconds.
-
26 Mar 2013 9:02 AM
- Replies
- 3
- Views
- 136
Anyone have any ideas how to even just figure out what this is?
-
18 Mar 2013 1:09 PM
- Replies
- 3
- Views
- 136
There's quite a lot of code, so I was hesitant to just post a bunch of it. Is there anything in particular you're interested in?
I can think of three possibilities:
- base class
- subclass
-... -
15 Mar 2013 11:00 AM
- Replies
- 3
- Views
- 136
I never see this on my 15 inch MacBook Pro (Retina screen), in any browser.
But on my 13 inch MacBook Pro, I see this problem in Safari and Chrome, both WebKit browsers. In FireFox, it works fine... -
23 Jan 2013 6:20 AM
- Replies
- 2
- Views
- 221
Awesome! Thanks so much.
I spent quite a bit of time trying different things, this saves me a lot of time. Hopefully it will help someone else too. -
17 Jan 2013 8:16 AM
- Replies
- 2
- Views
- 221
I've looked in the debugger, and through all the code for the radio button, checkbox, and the Container classes.
I did find a couple of old (3.X) forum answers on this, but that code doesn't work:... -
10 Jan 2013 12:24 PM
- Replies
- 7
- Views
- 440
Thanks for the info, I appreciate it.
I have a tendency to assign ID's to things; in the past it helped to keep track of things. But in JavaScript and ExtJS-land, it seems to cause more problems... -
10 Jan 2013 10:20 AM
- Replies
- 7
- Views
- 440
I did the same thing, almost exactly. :-)
I added a form to each window, and a couple of textfields to each form. All looked good.
That got me thinking, what's different with what I'm doing? ... -
10 Jan 2013 8:22 AM
- Replies
- 7
- Views
- 440
My previous response made me think that perhaps I was giving id's to the wrong thing. So I added id's and itemId's to each form.
Unfortunately, the second form is still messed up when shown... -
10 Jan 2013 8:10 AM
- Replies
- 7
- Views
- 440
Thanks, but I'm afraid that's not the problem I'm having. Both windows come up just fine. just as in your simple test; it's the form inside the second window that's messed up.
I guess I'll try... -
10 Jan 2013 6:49 AM
- Replies
- 7
- Views
- 440
I have a function which I use to display a popup window. It's been working fine for some time.
But now I want to display a second popup from the first. What's happening is sometimes the second... -
4 Jan 2013 7:56 AM
- Replies
- 6
- Views
- 253
Thank you.
With so many id's, it's unnerving to mess with all of them without knowing what they're used for. I think it'd be a cleaner model to only have one id per tree node.
I implemented my... -
4 Jan 2013 6:25 AM
- Replies
- 6
- Views
- 253
Thanks, but I'm not explicitly duplicating anything. If there's duplication going on, it's coming from the server.
But back to my question, which of the id's that I mentioned needs to be unique? ... -
3 Jan 2013 6:13 PM
- Replies
- 6
- Views
- 253
I was just realizing that myself. I found if I expand both nodes called 'groups', no problem occurs, because there are 2 groups defined under product2 but none under product1.
But nodes *happens*... -
3 Jan 2013 5:53 PM
- Replies
- 6
- Views
- 253
I have a treepanel, and as the user clicks on the plus signs it fetches the next level of the tree from the server. All was working well.
But now I've run into a problem where I'm getting an... -
31 Dec 2012 10:46 AM
- Replies
- 5
- Views
- 824
So far as I know, there's no way to do this in ExtJS. I found some comments that indicate request headers are ignored on a file upload, and that was my experience too.
So instead I resorted to... -
4 Dec 2012 8:40 AM
- Replies
- 5
- Views
- 824
I found comments that indicate that headers are ignored when uploading a file. This should really be documented, it's crazy for developers (I'm not the only one) to be wasting time trying to get...
-
4 Dec 2012 6:24 AM
- Replies
- 5
- Views
- 824
Another way to express this is, is it possible to set the request headers on a form submission? So far I've been unsuccessful. In addition to what I already posted, I also tried this:
... -
3 Dec 2012 7:51 AM
- Replies
- 5
- Views
- 824
What I posted earlier is exactly how the request should look; I didn't put it in the code brackets because technically it's not code, but I'll post it again:
POST /<product... -
30 Nov 2012 12:45 PM
- Replies
- 5
- Views
- 824
I've got a form that has combo and filefield controls. When the user clicks Upload, the following code is executed:
form.submit({
url:... -
26 Nov 2012 12:13 PM
- Replies
- 4
- Views
- 451
I figured out the weirdness about why using an ID config for the MultiSelect control caused problems (duplication of things in subsequent invocations): it's because I'm hiding the form/panel/window....
-
26 Nov 2012 7:02 AM
- Replies
- 4
- Views
- 451
Thanks for the reply.
The reason I was going to use an ID, is so I could get access to the control later using Ext.getCmp(ID). Why do you say it's not needed? Accessing a control from another... -
19 Nov 2012 1:38 PM
- Replies
- 4
- Views
- 451
This is my first time doing a form, much less using a MultiSelect control.
When the user clicks a menu item in my grid, I pop up a window/panel with a textfield (where they enter a name for the... -
13 Nov 2012 6:00 AM
- Replies
- 2
- Views
- 328
Yes, I know, hence my confusion and bewilderment.
I solved it with a hack. Now just before I collapse the node, I set a global variable to remember that. I then collapse the node, but don't... -
8 Nov 2012 3:11 PM
- Replies
- 2
- Views
- 328
I started with the following code:
refreshUIAfterDeletion: function() {
var treeSel = this.getTreeNodeSelection(),
me = this;
if (treeSel !== null)... -
8 Nov 2012 1:14 PM
- Replies
- 6
- Views
- 874
I found a way, just pass false to removeAll().
This means the node isn't destroyed. Is there any downside to this?
Results 1 to 25 of 43
