| Server IP : 87.98.231.4 / Your IP : 216.73.217.178 [ Web Server : Apache System : Linux webm007.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : grupmartgn ( 667608) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/grupmartgn/elanartcrafts/plugins/vmcustom/stockablecustomfields/assets/js/ |
Upload File : |
function addToList(field1,field2,field3,field4, id){
if (window.parent) window.parent.jAddElement(field1,field2,field3,field4,id);
setSelectedElement(id);
}
/**
* Calls a function to the parent window to remove an element from the list
* @param int id The id of the element
*/
function removeFromList(id){
if (window.parent) window.parent.removeProduct(id);
unsetSelectedElement(id);
}
function unsetSelectedElement(id){
jQuery('#element_'+id).removeClass('selected_element');
}
function setSelectedElement(id){
//only 1 selected
jQuery('.selected_element').removeClass('selected_element');
jQuery('#element_'+id).addClass('selected_element');
}
//set the required class to the selected products
jQuery(document).ready(function(){
var selectedElements=window.parent.selectedElements;
jQuery.each(selectedElements,function(){
setSelectedElement(this);
})
});