Posted 10 августа, 201311 yr comment_39308 Нужна помощь знающих, как правильно создать файл *.РНР для обработки ВВ-кода с выводом его в дальнейшем по заданому мной шаблону. К примеру - гугл карту поместить в модальное окно ext-js. <input type="button" id="show-lw" value="Показати мапу"/> <script type="text/javascript"> Ext.Loader.setConfig({enabled: true}); Ext.Loader.setPath('Ext.ux', '__docs.sencha.com/extjs/4.2.1/extjs-build/examples/ux'); Ext.require([ 'Ext.window.*', 'Ext.ux.GMapPanel', 'Ext.tab.*', 'Ext.tip.*', 'Ext.layout.container.Border' ]); Ext.onReady(function(){ var win, button = Ext.get('show-lw'); button.on('click', function(){ if (!win) { win = Ext.create('Ext.window.Window', { title: 'Layout Window with title <em>after</em> tools', closable: true, layout: 'fit', closeAction: 'hide', animCollapse:false, border:false, maximizable: true, collapsible: true, plain: true, resizable:true, width: 800, height: 550, items : [{ xtype : "component", autoEl : { tag : "iframe", src : "https://maps.google.com/maps/ms?msa=0&msid=210655829287341994844.0004def92328e97235776&ie=UTF8&t=h&z=11&output=embed" } }] }); } button.dom.disabled = true; if (win.isVisible()) { win.hide(this, function() { button.dom.disabled = false; }); } else { win.show(this, function() { button.dom.disabled = false; }); } }); }); </script> Link to comment https://ipbmafia.ru/topic/5229-sobstvennyj-fajl-obrabotki-vv-koda/ Share on other sites Больше вариантов
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.