Search Type: Posts; User: s6urik
Search: Search took 0.01 seconds.
-
17 Jul 2007 2:24 AM
Jump to post Thread: Ext.MessageBox extend class? by s6urik
- Replies
- 3
- Views
- 6,102
Yep, sure! A few more lines shorter =D>
-
16 Jul 2007 9:24 PM
- Replies
- 3
- Views
- 1,071
Btw if you gonna place your scripts and html in the same file it's probably better to move scripts to as low in the html as possible. This is recommendation of YUI Perfomance team guys.
Read more... -
16 Jul 2007 1:26 PM
Jump to post Thread: Ext.MessageBox extend class? by s6urik
- Replies
- 3
- Views
- 6,102
Check out following code, it extends progress dialog by adding second progress bar to it.
<html>
<head>
<script type="text/javascript" src="js/ext/adapter/yui/yui-utilities.js"></script>... -
15 Mar 2007 5:02 AM
Jump to post Thread: treePanel and state by s6urik
- Replies
- 8
- Views
- 3,971
I don't quite well understand structure of your tree but it seems that in your case you could alter saveState() method this way:
saveState : function(){
var menu = this.getNodeById(0);
... -
12 Mar 2007 5:02 AM
Jump to post Thread: tree dragdrop: node properties by s6urik
- Replies
- 3
- Views
- 2,283
It's mentioned in the documentation: http://www.yui-ext.com/deploy/ext-1.0-alpha3/docs/output/Ext.tree.TreePanel.html#event-beforenodedrop
Code sample:
tree.on("beforenodedrop",... -
11 Mar 2007 11:33 PM
Jump to post Thread: treePanel and state by s6urik
- Replies
- 8
- Views
- 3,971
Here is my try:
StatefullTreePanel = function (el, config){
StatefullTreePanel.superclass.constructor.call(this, el, config);
Ext.apply(this, config || {});
...
Results 1 to 6 of 6
