allow string based values for comboboxarray
[roojs1] / Roo / DomHelper.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11
12
13 // nasty IE9 hack - what a pile of crap that is..
14
15  if (typeof Range != "undefined" && typeof Range.prototype.createContextualFragment == "undefined") {
16     Range.prototype.createContextualFragment = function (html) {
17         var doc = window.document;
18         var container = doc.createElement("div");
19         container.innerHTML = html;
20         var frag = doc.createDocumentFragment(), n;
21         while ((n = container.firstChild)) {
22             frag.appendChild(n);
23         }
24         return frag;
25     };
26 }
27
28 /**
29  * @class Roo.DomHelper
30  * Utility class for working with DOM and/or Templates. It transparently supports using HTML fragments or DOM.
31  * For more information see <a href="http://web.archive.org/web/20071221063734/http://www.jackslocum.com/blog/2006/10/06/domhelper-create-elements-using-dom-html-fragments-or-templates/">this blog post with examples</a>.
32  * @singleton
33  */
34 Roo.DomHelper = function(){
35     var tempTableEl = null;
36     var emptyTags = /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i;
37     var tableRe = /^table|tbody|tr|td$/i;
38     var xmlns = {};
39     // build as innerHTML where available
40     /** @ignore */
41     var createHtml = function(o){
42         if(typeof o == 'string'){
43             return o;
44         }
45         var b = "";
46         if(!o.tag){
47             o.tag = "div";
48         }
49         b += "<" + o.tag;
50         for(var attr in o){
51             if(attr == "tag" || attr == "children" || attr == "cn" || attr == "html" || typeof o[attr] == "function") { continue; }
52             if(attr == "style"){
53                 var s = o["style"];
54                 if(typeof s == "function"){
55                     s = s.call();
56                 }
57                 if(typeof s == "string"){
58                     b += ' style="' + s + '"';
59                 }else if(typeof s == "object"){
60                     b += ' style="';
61                     for(var key in s){
62                         if(typeof s[key] != "function"){
63                             b += key + ":" + s[key] + ";";
64                         }
65                     }
66                     b += '"';
67                 }
68             }else{
69                 if(attr == "cls"){
70                     b += ' class="' + o["cls"] + '"';
71                 }else if(attr == "htmlFor"){
72                     b += ' for="' + o["htmlFor"] + '"';
73                 }else{
74                     b += " " + attr + '="' + o[attr] + '"';
75                 }
76             }
77         }
78         if(emptyTags.test(o.tag)){
79             b += "/>";
80         }else{
81             b += ">";
82             var cn = o.children || o.cn;
83             if(cn){
84                 //http://bugs.kde.org/show_bug.cgi?id=71506
85                 if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
86                     for(var i = 0, len = cn.length; i < len; i++) {
87                         b += createHtml(cn[i], b);
88                     }
89                 }else{
90                     b += createHtml(cn, b);
91                 }
92             }
93             if(o.html){
94                 b += o.html;
95             }
96             b += "</" + o.tag + ">";
97         }
98         return b;
99     };
100
101     // build as dom
102     /** @ignore */
103     var createDom = function(o, parentNode){
104          
105         // defininition craeted..
106         var ns = false;
107         if (o.ns && o.ns != 'html') {
108                
109             if (o.xmlns && typeof(xmlns[o.ns]) == 'undefined') {
110                 xmlns[o.ns] = o.xmlns;
111                 ns = o.xmlns;
112             }
113             if (typeof(xmlns[o.ns]) == 'undefined') {
114                 console.log("Trying to create namespace element " + o.ns + ", however no xmlns was sent to builder previously");
115             }
116             ns = xmlns[o.ns];
117         }
118         
119         
120         if (typeof(o) == 'string') {
121             return parentNode.appendChild(document.createTextNode(o));
122         }
123         o.tag = o.tag || div;
124         if (o.ns && Roo.isIE) {
125             ns = false;
126             o.tag = o.ns + ':' + o.tag;
127             
128         }
129         var el = ns ? document.createElementNS( ns, o.tag||'div') :  document.createElement(o.tag||'div');
130         var useSet = el.setAttribute ? true : false; // In IE some elements don't have setAttribute
131         for(var attr in o){
132             
133             if(attr == "tag" || attr == "ns" ||attr == "xmlns" ||attr == "children" || attr == "cn" || attr == "html" || 
134                     attr == "style" || typeof o[attr] == "function") { continue; }
135                     
136             if(attr=="cls" && Roo.isIE){
137                 el.className = o["cls"];
138             }else{
139                 if(useSet) { el.setAttribute(attr=="cls" ? 'class' : attr, o[attr]);}
140                 else { 
141                     el[attr] = o[attr];
142                 }
143             }
144         }
145         Roo.DomHelper.applyStyles(el, o.style);
146         var cn = o.children || o.cn;
147         if(cn){
148             //http://bugs.kde.org/show_bug.cgi?id=71506
149              if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
150                 for(var i = 0, len = cn.length; i < len; i++) {
151                     createDom(cn[i], el);
152                 }
153             }else{
154                 createDom(cn, el);
155             }
156         }
157         if(o.html){
158             el.innerHTML = o.html;
159         }
160         if(parentNode){
161            parentNode.appendChild(el);
162         }
163         return el;
164     };
165
166     var ieTable = function(depth, s, h, e){
167         tempTableEl.innerHTML = [s, h, e].join('');
168         var i = -1, el = tempTableEl;
169         while(++i < depth){
170             el = el.firstChild;
171         }
172         return el;
173     };
174
175     // kill repeat to save bytes
176     var ts = '<table>',
177         te = '</table>',
178         tbs = ts+'<tbody>',
179         tbe = '</tbody>'+te,
180         trs = tbs + '<tr>',
181         tre = '</tr>'+tbe;
182
183     /**
184      * @ignore
185      * Nasty code for IE's broken table implementation
186      */
187     var insertIntoTable = function(tag, where, el, html){
188         if(!tempTableEl){
189             tempTableEl = document.createElement('div');
190         }
191         var node;
192         var before = null;
193         if(tag == 'td'){
194             if(where == 'afterbegin' || where == 'beforeend'){ // INTO a TD
195                 return;
196             }
197             if(where == 'beforebegin'){
198                 before = el;
199                 el = el.parentNode;
200             } else{
201                 before = el.nextSibling;
202                 el = el.parentNode;
203             }
204             node = ieTable(4, trs, html, tre);
205         }
206         else if(tag == 'tr'){
207             if(where == 'beforebegin'){
208                 before = el;
209                 el = el.parentNode;
210                 node = ieTable(3, tbs, html, tbe);
211             } else if(where == 'afterend'){
212                 before = el.nextSibling;
213                 el = el.parentNode;
214                 node = ieTable(3, tbs, html, tbe);
215             } else{ // INTO a TR
216                 if(where == 'afterbegin'){
217                     before = el.firstChild;
218                 }
219                 node = ieTable(4, trs, html, tre);
220             }
221         } else if(tag == 'tbody'){
222             if(where == 'beforebegin'){
223                 before = el;
224                 el = el.parentNode;
225                 node = ieTable(2, ts, html, te);
226             } else if(where == 'afterend'){
227                 before = el.nextSibling;
228                 el = el.parentNode;
229                 node = ieTable(2, ts, html, te);
230             } else{
231                 if(where == 'afterbegin'){
232                     before = el.firstChild;
233                 }
234                 node = ieTable(3, tbs, html, tbe);
235             }
236         } else{ // TABLE
237             if(where == 'beforebegin' || where == 'afterend'){ // OUTSIDE the table
238                 return;
239             }
240             if(where == 'afterbegin'){
241                 before = el.firstChild;
242             }
243             node = ieTable(2, ts, html, te);
244         }
245         el.insertBefore(node, before);
246         return node;
247     };
248
249     return {
250     /** True to force the use of DOM instead of html fragments @type Boolean */
251     useDom : false,
252
253     /**
254      * Returns the markup for the passed Element(s) config
255      * @param {Object} o The Dom object spec (and children)
256      * @return {String}
257      */
258     markup : function(o){
259         return createHtml(o);
260     },
261
262     /**
263      * Applies a style specification to an element
264      * @param {String/HTMLElement} el The element to apply styles to
265      * @param {String/Object/Function} styles A style specification string eg "width:100px", or object in the form {width:"100px"}, or
266      * a function which returns such a specification.
267      */
268     applyStyles : function(el, styles){
269         if(styles){
270            el = Roo.fly(el);
271            if(typeof styles == "string"){
272                var re = /\s?([a-z\-]*)\:\s?([^;]*);?/gi;
273                var matches;
274                while ((matches = re.exec(styles)) != null){
275                    el.setStyle(matches[1], matches[2]);
276                }
277            }else if (typeof styles == "object"){
278                for (var style in styles){
279                   el.setStyle(style, styles[style]);
280                }
281            }else if (typeof styles == "function"){
282                 Roo.DomHelper.applyStyles(el, styles.call());
283            }
284         }
285     },
286
287     /**
288      * Inserts an HTML fragment into the Dom
289      * @param {String} where Where to insert the html in relation to el - beforeBegin, afterBegin, beforeEnd, afterEnd.
290      * @param {HTMLElement} el The context element
291      * @param {String} html The HTML fragmenet
292      * @return {HTMLElement} The new node
293      */
294     insertHtml : function(where, el, html){
295         where = where.toLowerCase();
296         if(el.insertAdjacentHTML){
297             if(tableRe.test(el.tagName)){
298                 var rs;
299                 if(rs = insertIntoTable(el.tagName.toLowerCase(), where, el, html)){
300                     return rs;
301                 }
302             }
303             switch(where){
304                 case "beforebegin":
305                     el.insertAdjacentHTML('BeforeBegin', html);
306                     return el.previousSibling;
307                 case "afterbegin":
308                     el.insertAdjacentHTML('AfterBegin', html);
309                     return el.firstChild;
310                 case "beforeend":
311                     el.insertAdjacentHTML('BeforeEnd', html);
312                     return el.lastChild;
313                 case "afterend":
314                     el.insertAdjacentHTML('AfterEnd', html);
315                     return el.nextSibling;
316             }
317             throw 'Illegal insertion point -> "' + where + '"';
318         }
319         var range = el.ownerDocument.createRange();
320         var frag;
321         switch(where){
322              case "beforebegin":
323                 range.setStartBefore(el);
324                 frag = range.createContextualFragment(html);
325                 el.parentNode.insertBefore(frag, el);
326                 return el.previousSibling;
327              case "afterbegin":
328                 if(el.firstChild){
329                     range.setStartBefore(el.firstChild);
330                     frag = range.createContextualFragment(html);
331                     el.insertBefore(frag, el.firstChild);
332                     return el.firstChild;
333                 }else{
334                     el.innerHTML = html;
335                     return el.firstChild;
336                 }
337             case "beforeend":
338                 if(el.lastChild){
339                     range.setStartAfter(el.lastChild);
340                     frag = range.createContextualFragment(html);
341                     el.appendChild(frag);
342                     return el.lastChild;
343                 }else{
344                     el.innerHTML = html;
345                     return el.lastChild;
346                 }
347             case "afterend":
348                 range.setStartAfter(el);
349                 frag = range.createContextualFragment(html);
350                 el.parentNode.insertBefore(frag, el.nextSibling);
351                 return el.nextSibling;
352             }
353             throw 'Illegal insertion point -> "' + where + '"';
354     },
355
356     /**
357      * Creates new Dom element(s) and inserts them before el
358      * @param {String/HTMLElement/Element} el The context element
359      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
360      * @param {Boolean} returnElement (optional) true to return a Roo.Element
361      * @return {HTMLElement/Roo.Element} The new node
362      */
363     insertBefore : function(el, o, returnElement){
364         return this.doInsert(el, o, returnElement, "beforeBegin");
365     },
366
367     /**
368      * Creates new Dom element(s) and inserts them after el
369      * @param {String/HTMLElement/Element} el The context element
370      * @param {Object} o The Dom object spec (and children)
371      * @param {Boolean} returnElement (optional) true to return a Roo.Element
372      * @return {HTMLElement/Roo.Element} The new node
373      */
374     insertAfter : function(el, o, returnElement){
375         return this.doInsert(el, o, returnElement, "afterEnd", "nextSibling");
376     },
377
378     /**
379      * Creates new Dom element(s) and inserts them as the first child of el
380      * @param {String/HTMLElement/Element} el The context element
381      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
382      * @param {Boolean} returnElement (optional) true to return a Roo.Element
383      * @return {HTMLElement/Roo.Element} The new node
384      */
385     insertFirst : function(el, o, returnElement){
386         return this.doInsert(el, o, returnElement, "afterBegin");
387     },
388
389     // private
390     doInsert : function(el, o, returnElement, pos, sibling){
391         el = Roo.getDom(el);
392         var newNode;
393         if(this.useDom || o.ns){
394             newNode = createDom(o, null);
395             el.parentNode.insertBefore(newNode, sibling ? el[sibling] : el);
396         }else{
397             var html = createHtml(o);
398             newNode = this.insertHtml(pos, el, html);
399         }
400         return returnElement ? Roo.get(newNode, true) : newNode;
401     },
402
403     /**
404      * Creates new Dom element(s) and appends them to el
405      * @param {String/HTMLElement/Element} el The context element
406      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
407      * @param {Boolean} returnElement (optional) true to return a Roo.Element
408      * @return {HTMLElement/Roo.Element} The new node
409      */
410     append : function(el, o, returnElement){
411         el = Roo.getDom(el);
412         var newNode;
413         if(this.useDom || o.ns){
414             newNode = createDom(o, null);
415             el.appendChild(newNode);
416         }else{
417             var html = createHtml(o);
418             newNode = this.insertHtml("beforeEnd", el, html);
419         }
420         return returnElement ? Roo.get(newNode, true) : newNode;
421     },
422
423     /**
424      * Creates new Dom element(s) and overwrites the contents of el with them
425      * @param {String/HTMLElement/Element} el The context element
426      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
427      * @param {Boolean} returnElement (optional) true to return a Roo.Element
428      * @return {HTMLElement/Roo.Element} The new node
429      */
430     overwrite : function(el, o, returnElement){
431         el = Roo.getDom(el);
432         if (o.ns) {
433           
434             while (el.childNodes.length) {
435                 el.removeChild(el.firstChild);
436             }
437             createDom(o, el);
438         } else {
439             el.innerHTML = createHtml(o);   
440         }
441         
442         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
443     },
444
445     /**
446      * Creates a new Roo.DomHelper.Template from the Dom object spec
447      * @param {Object} o The Dom object spec (and children)
448      * @return {Roo.DomHelper.Template} The new template
449      */
450     createTemplate : function(o){
451         var html = createHtml(o);
452         return new Roo.Template(html);
453     }
454     };
455 }();