| Server IP : 87.98.231.4 / Your IP : 216.73.216.226 [ 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/g/r/u/grupmartgn/elanartcrafts/plugins/vmcustom/stockablecustomfields/assets/js/ |
Upload File : |
/**
* Calls a function to the parent window to add an element to the list
* @param string field1 The 1st field
* @param string field2 The 2nd field
* @param int id The id of the element
*/
function addToList(field1,field2,id){
if (window.parent) window.parent.jSelectElement(field1,field2,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){
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);
})
});