Last active
March 3, 2017 16:28
-
-
Save JensWolff/9b2d48273a5bd6194e88 to your computer and use it in GitHub Desktop.
Quick'n'Dirty MODX 2.3.x image-TV-clearbutton (/manager/templates/default/element/tv/renders/input/image.tpl)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.clearImageTV + .x-panel.modx-panel.x-panel-noborder{ | |
margin-left: 30px; | |
margin-top: -34px; | |
} | |
</style> | |
<div id="tvbrowser{$tv->id}"></div> | |
<div id="tv-image-{$tv->id}"><a class="clearImageTV" href="#" onclick="javascript:Ext.getCmp('tvbrowser{$tv->id}').setValue('');document.getElementById('tv{$tv->id}').value='';document.getElementById('tv-image-preview-{$tv->id}').getElementsByTagName('img')[0].remove();"><i class="icon icon-2x icon-trash-o"></i></i></a></div> | |
<div id="tv-image-preview-{$tv->id}" class="modx-tv-image-preview"> | |
{if $tv->value}<img src="{$_config.connectors_url}system/phpthumb.php?w=400&src={$tv->value}&source={$source}" alt="" />{/if} | |
</div> | |
{if $disabled} | |
<script type="text/javascript"> | |
// <![CDATA[ | |
{literal} | |
Ext.onReady(function() { | |
var fld{/literal}{$tv->id}{literal} = MODx.load({ | |
{/literal} | |
xtype: 'displayfield' | |
,tv: '{$tv->id}' | |
,renderTo: 'tv-image-{$tv->id}' | |
,value: '{$tv->value|escape}' | |
,width: 400 | |
,padding: 300 | |
,msgTarget: 'under' | |
{literal} | |
}); | |
}); | |
{/literal} | |
// ]]> | |
</script> | |
{else} | |
<script type="text/javascript"> | |
// <![CDATA[ | |
{literal} | |
Ext.onReady(function() { | |
var fld{/literal}{$tv->id}{literal} = MODx.load({ | |
{/literal} | |
xtype: 'modx-panel-tv-image' | |
,renderTo: 'tv-image-{$tv->id}' | |
,tv: '{$tv->id}' | |
,value: '{$tv->value|escape}' | |
,relativeValue: '{$tv->value|escape}' | |
,width: 400 | |
,allowBlank: {if $params.allowBlank == 1 || $params.allowBlank == 'true'}true{else}false{/if} | |
,wctx: '{if $params.wctx}{$params.wctx}{else}web{/if}' | |
{if $params.openTo},openTo: '{$params.openTo|replace:"'":"\\'"}'{/if} | |
,source: '{$source}' | |
{literal} | |
,msgTarget: 'under' | |
,listeners: { | |
'select': {fn:function(data) { | |
MODx.fireResourceFormChange(); | |
var d = Ext.get('tv-image-preview-{/literal}{$tv->id}{literal}'); | |
if (Ext.isEmpty(data.url)) { | |
d.update(''); | |
} else { | |
{/literal} | |
d.update('<img src="{$_config.connectors_url}system/phpthumb.php?h=400&src='+data.url+'&wctx={$ctx}&source={$source}" alt="" />'); | |
{literal} | |
} | |
}} | |
} | |
}); | |
MODx.makeDroppable(Ext.get('tv-image-{/literal}{$tv->id}{literal}'),function(v) { | |
var cb = Ext.getCmp('tvbrowser{/literal}{$tv->id}{literal}'); | |
if (cb) { | |
cb.setValue(v); | |
cb.fireEvent('select',{relativeUrl:v}); | |
} | |
return ''; | |
}); | |
}); | |
{/literal} | |
// ]]> | |
</script> | |
{/if} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment