Search Type: Posts; User: joe123
Search: Search took 0.02 seconds.
-
22 Dec 2010 7:21 AM
Jump to post Thread: htmleditor IE8 by joe123
- Replies
- 2
- Views
- 704
Hi,
I I solved the problem. I was using a vtype in the textfield which was apparently not ok.
So now I use the property 'customRegEx' to verify the textfield. IE is very strict on these
things.... -
21 Dec 2010 7:22 AM
Jump to post Thread: htmleditor IE8 by joe123
- Replies
- 2
- Views
- 704
Hi,
I am using the htmeditor. It is loaded with html content when a user presses a node in a tree component.
The loading is done with a function that uses the setValue function on the htmleditor... -
25 Nov 2010 6:34 AM
- Replies
- 17
- Views
- 9,081
Hi I am facing exactly the same problem.
How do you send the parameters??
I used the following code :
function scriptit(){
var script = 'This is a... -
25 Nov 2010 1:57 AM
- Replies
- 4
- Views
- 1,041
Hi,
Do you also know how to do this without the
document.location.href = 'index.php/FlexMail/exportData/users';
But with some AJAX call or so..... I'd like to send some parameters to... -
11 Oct 2010 4:57 AM
Jump to post Thread: tabpanel activate by joe123
- Replies
- 1
- Views
- 545
Hi,
I am using tabpanels in my web application and I'd like to distinguish
between a user generated 'activate' event and a programmatic 'activate'.
With the code I use
... -
11 Oct 2010 2:06 AM
- Replies
- 6
- Views
- 918
Hi Condor,
The last tip you gave me worked but did not solve the problem.
I finally solved it by changing the order of the assignments to the form.
Yes indeed very weird. So in detail:
- I... -
10 Sep 2010 5:31 AM
- Replies
- 6
- Views
- 918
Yes, you are right I gave an incorrect example.
But the backend does it right so I receive values like:
'2006-01-23' which is in the right format as far as I know.
It works in all the other... -
10 Sep 2010 5:09 AM
- Replies
- 6
- Views
- 918
Hi COndor,
Thanks for the fast reply, but I can still not get it to work.
I am having my datefield configured as follows:
xtype:'datefield',
id:'studytemplate_startDate',
format :... -
10 Sep 2010 4:52 AM
- Replies
- 6
- Views
- 918
Hi,
I'm having a problem with the DateField widget in extjs version 3.2.1
I'm receiving a date from the php backend and try to set that date
by first gettting the datefield and then setting... -
6 Jul 2010 7:27 AM
Jump to post Thread: deep copy/clone formpanel by joe123
- Replies
- 3
- Views
- 982
ok, is that by just giving the existing form as an argument to the
constructor of the FormPanel class? And if I have two instances
will a change of a value in oneinstance also change it in the... -
6 Jul 2010 6:26 AM
Jump to post Thread: deep copy/clone formpanel by joe123
- Replies
- 3
- Views
- 982
Hi,
How do I make a deep copy of a FormPanel?
Something like :
var newform = deepcopy(existingform);
Thanks, -
5 Jul 2010 4:40 AM
- Replies
- 6
- Views
- 2,164
I used this solution which works!
http://www.sencha.com/forum/showthread.php?92275-CLOSED-TreeNodeUI-addClass()
thank you. -
5 Jul 2010 12:58 AM
- Replies
- 6
- Views
- 2,164
Hi Condor,
Thank you for the input. I am using the 'span' solution and feed it to the text property of the node.
That works but..... the node is not able to receive a drop of another node.... -
3 Jun 2010 5:13 AM
- Replies
- 0
- Views
- 895
Hi,
I managed to change the font color in a TreePanel Node
by just assigning some HTML to the text property of the node
in the backend.
Like :
$node['text'] = '<FONT COLOR="#FF0000">'... -
28 May 2010 2:02 AM
Jump to post Thread: tab activate custom parameters by joe123
- Replies
- 0
- Views
- 481
Hi,
I build an app that activates tab panels when nodes in a tree are clicked like:
tabpanel.activate();
When the tab panel itself is clicked the same 'activate' event is being used.
I... -
12 May 2010 4:15 AM
Jump to post Thread: treenode copy by joe123
- Replies
- 3
- Views
- 657
Thanks!
I am going to try to do that! But after all It would also be usefull to be able to clone a node
with it's children.
Cheers -
12 May 2010 4:12 AM
- Replies
- 3
- Views
- 998
Hi,
Could you please share your clone method?
I am facing the same problem and it would
save me a lot of time.
Thanks! -
12 May 2010 3:52 AM
Jump to post Thread: treenode copy by joe123
- Replies
- 3
- Views
- 657
Hi,
I'd like to copy a node. Using:
var newnode = dropEvent.tree.getLoader().createNode(node.attributes);
or
var newnode = new Ext.tree.TreeNode(node.attributes); -
12 May 2010 3:47 AM
Jump to post Thread: Drag & Drop Node in TreePanel by joe123
- Replies
- 4
- Views
- 1,080
Hi,
Don't know what you exactly mean with 'lexically scoping'
but I changed the url into something different. Just to
keep it abstract.
Joe123 -
12 May 2010 2:15 AM
Jump to post Thread: treepanel getpath including nodes by joe123
- Replies
- 0
- Views
- 383
Hi!
I'd like to copy a path of node without all possible siblings.
So only the single path from the leaf node I selected up to
the root node including all node attributes that are in the ... -
7 May 2010 12:00 AM
- Replies
- 2
- Views
- 636
Hi,
I am trying to get a 'messgebox alert' within a 'messagebox confirm' to
show something actually happened. But it does not do anything....
Code is like this:
... -
3 May 2010 6:22 AM
Jump to post Thread: Drag & Drop Node in TreePanel by joe123
- Replies
- 4
- Views
- 1,080
Hi,
I created a TreePanel with different types of nodes. Each node has an attribute
called 'dbtype'. According to the type of the node different panels are selected
and shown when the user... -
21 Apr 2010 12:17 AM
- Replies
- 2
- Views
- 495
Hi,
Thanks. I've put the window in global space and I show it when the user clicks the button.
That works fine. It was probably the fact that when the Window is hidden the form is not ... -
20 Apr 2010 7:36 AM
- Replies
- 2
- Views
- 495
Hi,
I implemented a toolbar with a button that pops up a Ext window with a form inside.
Somehow the form inside the window get duplicated each time a push the button
on the toolbar. So each... -
19 Apr 2010 1:52 AM
- Replies
- 1
- Views
- 826
Hi,
I am experiencing the same problem. Did you finally solve this problem?
That would really spare me a lot of time!
Thanks,
Joe
Results 1 to 25 of 34
