Jump to content

Собственный файл обработки ВВ-кода.

Featured Replies

Нужна помощь знающих, как правильно создать файл *.РНР для обработки ВВ-кода с выводом его в дальнейшем по заданому мной шаблону.

К примеру - гугл карту поместить в модальное окно 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&amp;msid=210655829287341994844.0004def92328e97235776&amp;ie=UTF8&amp;t=h&amp;z=11&amp;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.


Guest
Ответить в этой теме...

Последние посетители 0

  • No registered users viewing this page.