PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
caribe
/
components
/
com_djcatalog2
/
views
/
itemform
/** * @version 3.x * @package DJ-Catalog2 * @copyright Copyright (C) 2013 DJ-Extensions.com, All rights reserved. * @license DJ-Extensions.com Proprietary Use License * @author url: http://dj-extensions.com * @author email contact@dj-extensions.com * @developer Michał Olczyk michal.olczyk@design-joomla.eu * */ window.addEvent('domready', function() { var djItemPriceInput = document.id('jform_price'); if (djItemPriceInput) { djItemPriceInput.addEvents({ 'keyup' : function(e){djValidatePrice(djItemPriceInput);}, 'change' : function(e){djValidatePrice(djItemPriceInput);}, 'click' : function(e){djValidatePrice(djItemPriceInput);} }); } var djItemSpecialPriceInput = document.id('jform_special_price'); if (djItemSpecialPriceInput) { djItemSpecialPriceInput.addEvents({ 'keyup' : function(e){djValidatePrice(djItemSpecialPriceInput);}, 'change' : function(e){djValidatePrice(djItemSpecialPriceInput);}, 'click' : function(e){djValidatePrice(djItemSpecialPriceInput);} }); } var djFieldGroup = document.id('jform_group_id'); if (djFieldGroup) { djFieldGroup.onchange=(function(){ djRenderForm(); }); djRenderForm(); } }); function djValidatePrice(priceInput) { var r = new RegExp("\,", "i"); var t = new RegExp("[^0-9\,\.]+", "i"); priceInput.setProperty('value', priceInput.getProperty('value') .replace(r, ".")); priceInput.setProperty('value', priceInput.getProperty('value') .replace(t, "")); } function djRenderForm() { var itemId = document.id('jform_id').value; if (!itemId || itemId == 0) { var vars = {}; var parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m,key,value) { vars[key] = value; }); if (vars['id'] > 0) { itemId = vars['id']; } } var groupEl = document.id('jform_group_id'); var groupId = 0; if (groupEl && typeof (groupEl.options) != 'undefined') { groupId= document.id('jform_group_id').value; var groupIds = []; var options = document.id('jform_group_id').options; for (var k = 0; k < options.length; k++) { if (options[k].selected) { groupIds.push(options[k].value); } } groupId = groupIds.join(','); } if (typeof ( document.id('itemAttributes') ) != 'undefined') { var textareas = document.id('itemAttributes').getElements('textarea.nicEdit'); if (textareas) { textareas.each(function(textarea){ if (textarea.nicEditor != null && textarea.nicEditor) { textarea.nicEditor.removeInstance(textarea.id); textarea.nicEditor = null; } }); } var calendars = document.id('itemAttributes').getElements('input.djc_calendar'); if (calendars) { calendars.each(function(calendar){ if (typeof(calendar.hasCalendar) != 'undefined') { calendars.hasCalendar = null; } }); } ajax = new Request( { url : djc_joomla_base_url + 'index.php?option=com_djcatalog2&view=itemform&layout=extrafields&format=raw&itemId=' + itemId + '&groupId=' + groupId, onSuccess : function(resp) { document.id('itemAttributes').innerHTML = resp; var textareas = document.id('itemAttributes').getElements('textarea.nicEdit'); if (textareas) { //var myNicEditor = new nicEditor(); textareas.each(function(textarea, index){ textarea.nicEditor = new nicEditor({fullPanel : false, xhtml: true, buttonList: ['bold', 'italic', 'underline', 'left', 'center', 'right', 'justify', 'ol', 'ul', 'subscript', 'superscript', 'strikethrough', 'hr', 'image', 'link', 'unlink', 'xhtml'], iconsPath: djc_joomla_base_url + 'components/com_djcatalog2/assets/nicEdit/nicEditorIcons.gif'}).panelInstance(textarea.id,{hasPanel : true}); textarea.nicEditor.addEvent('blur',function(){ if (textarea.nicEditor) { var editor = textarea.nicEditor.instanceById(textarea.id); if (editor) { editor.saveContent(); } } }); }); } var calendars = document.id('itemAttributes').getElements('input.djc_calendar'); if (calendars) { calendars.each(function(calendar){ if (typeof(calendar.hasCalendar) === 'undefined') { Calendar.setup({ inputField: calendar.id, ifFormat: "%Y-%m-%d", //ifFormat: "%Y-%m-%d %H:%M:%S", daFormat: "%Y-%m-%d", button: calendar.id + "_img", align: "Tl", singleClick: true }); calendar.hasCalendar = true; } }); } }.bind(this) }); ajax.send(); } }
[+]
..
[-] index.html
[edit]
[-] itemform.js
[edit]
[-] metadata.xml
[edit]
[+]
tmpl
[-] view.html.php
[edit]
[-] view.raw.php
[edit]
[-] .htaccess.disabled
[edit]