examples/bootstrap/ComboBox.js
[roojs1] / examples / bootstrap / ComboBox.js
index 813da7b..d5002f8 100644 (file)
@@ -3,26 +3,20 @@
 Roo.example = Roo.example || {};
 
 Roo.example.combobox = new Roo.XComponent({
-    part     :  ["layout","viewpanel"],
+    part     :  ["example","combobox"],
     order    : '001-viewpanel',
     region   : '',
-    parent   : '#bootstrap',
+    parent   : false,
     name     : "unnamed module",
     disabled : false, 
     permname : '', 
     _tree : function()
     {
         
-        this.parent = {
-            el : new Roo.bootstrap.Body()
-        }
-        this.parent.el.layout = false;
-        this.parent.el.render(document.body);
         
         var _this = this;
         var MODULE = this;
-        var baseURL = '/web.eventmanager/demo.local.php';
-        
+         
         return {
             xtype: 'Body',
             xns: Roo.bootstrap,
@@ -31,14 +25,14 @@ Roo.example.combobox = new Roo.XComponent({
                     xtype: 'ComboBox',
                     xns: Roo.bootstrap,
                     placeholder : 'Select a country',
-                    displayField : 'name',
+                    displayField : 'title',
                     hiddenName : 'country_id',
                     md : '12',
                     size : 'sm',
-                    name : 'country_id_name',
+                    name : 'title',
                     triggerAction : 'all',
                     minChars : '1',
-                    tpl : '<li class="roo-select2-result"><b>{name}</b></div>',
+                    tpl : '<li class="roo-select2-result"><b>{title}</b></div>',
                     listWidth : '400',
                     multiple: true,
                     listeners : {
@@ -75,7 +69,7 @@ Roo.example.combobox = new Roo.XComponent({
                         proxy : {
                             xtype: 'HttpProxy',
                             xns: Roo.data,
-                            url : baseURL + '/Geoip/Core_geoip_country',
+                            url : '../bootstrap/data.country.js',
                             method : 'GET'
                         },
                         reader : {
@@ -91,7 +85,7 @@ Roo.example.combobox = new Roo.XComponent({
                                     'type': 'string'
                                 },
                                 {
-                                    'name': 'name',
+                                    'name': 'title',
                                     'type': 'string'
                                 }
                             ]