// JavaScript Document function LinksWidget(id, sClass, sAttCode, iInputId, sSuffix, bDuplicates) { this.id = id; this.iInputId = iInputId; this.sClass = sClass; this.sAttCode = sAttCode; this.sSuffix = sSuffix; this.bDuplicates = bDuplicates; var me = this; this.Init = function() { // make sure that the form is clean $('#linkedset_'+this.id+' .selection').each( function() { this.checked = false; }); $('#'+this.id+'_btnRemove').attr('disabled','disabled'); $('#'+this.id+'_linksToRemove').val(''); } this.RemoveSelected = function() { var my_id = '#'+me.id; $('#linkedset_'+me.id+' .selection:checked').each( function() { $linksToRemove = $(my_id+'_linksToRemove'); prevValue = $linksToRemove.val(); if (prevValue != '') { $linksToRemove.val(prevValue + ',' + this.value); } else { $linksToRemove.val(this.value); } $(my_id+'_row_'+this.value).remove(); } ); // Disable the button since all the selected items have been removed $(my_id+'_btnRemove').attr('disabled','disabled'); // Re-run the zebra plugin to properly highlight the remaining lines & and take into account the removed ones $('#linkedset_'+this.id+' .listResults').trigger('update').trigger("applyWidgets"); } this.OnSelectChange = function() { var nbChecked = $('#linkedset_'+me.id+' .selection:checked').length; if (nbChecked > 0) { $('#'+me.id+'_btnRemove').attr('disabled',''); } else { $('#'+me.id+'_btnRemove').attr('disabled','disabled'); } } this.AddObjects = function() { $('#dlg_'+me.id).dialog('open'); this.UpdateSizes(null, null); } this.SearchObjectsToAdd = function() { var theMap = { sAttCode: me.sAttCode, iInputId: me.iInputId, sSuffix: me.sSuffix, bDuplicates: me.bDuplicates } // Gather the parameters from the search form $('#SearchFormToAdd_'+me.id+' :input').each( function(i) { if (this.name != '') { theMap[this.name] = this.value; } } ); // Gather the already linked target objects theMap.aAlreadyLinked = new Array(); $('#linkedset_'+me.id+' .selection:input').each( function(i) { theMap.aAlreadyLinked.push(this.value); } ); theMap['sRemoteClass'] = theMap['class']; // swap 'class' (defined in the form) and 'remoteClass' theMap['class'] = me.sClass; theMap.operation = 'searchObjectsToAdd'; // Override what is defined in the form itself sSearchAreaId = '#SearchResultsToAdd_'+me.id; $(sSearchAreaId).block(); // Run the query and display the results $.post( '../pages/ajax.render.php', theMap, function(data) { $(sSearchAreaId).html(data); $(sSearchAreaId+' .listResults').tableHover(); $(sSearchAreaId+' .listResults').tablesorter( { headers: {0: {sorter: false}}, widgets: ['myZebra', 'truncatedList']} ); // sortable and zebra tables $(sSearchAreaId).unblock(); }, 'html' ); return false; // Don't submit the form, stay in the current page ! } this.DoAddObjects = function() { var theMap = { sAttCode: me.sAttCode, iInputId: me.iInputId, sSuffix: me.sSuffix, bDuplicates: me.bDuplicates, 'class': me.sClass } // Gather the parameters from the search form $('#SearchResultsToAdd_'+me.id+' :checked').each( function(i) { if ( (this.name != '') && ((this.type != 'checkbox') || (this.checked)) ) { //console.log(this.type); arrayExpr = /\[\]$/; if (arrayExpr.test(this.name)) { // Array if (theMap[this.name] == undefined) { theMap[this.name] = new Array(); } theMap[this.name].push(this.value); } else { theMap[this.name] = this.value; } $(this).parents('tr:first').remove(); // Remove the whole line, so that, next time the dialog gets displayed it's no longer there } } ); theMap['operation'] = 'doAddObjects'; $('#busy_'+me.iInputId).html(' '); // Run the query and display the results $.post( '../pages/ajax.render.php', theMap, function(data) { //console.log('Data: ' + data); if (data != '') { $('#'+me.id+'_empty_row').remove(); $('#linkedset_'+me.id+' .listResults tbody').append(data); $('#linkedset_'+me.id+' .listResults').trigger('update'); $('#linkedset_'+me.id+' .listResults').tableHover(); $('#linkedset_'+me.id+' .listResults').trigger('update').trigger("applyWidgets"); // table is already sortable, just refresh it $('#linkedset_'+me.id+' :input').each( function() { $(this).trigger('validate', ''); }); // Validate newly added form fields... $('#busy_'+me.iInputId).html(''); } }, 'html' ); $('#dlg_'+me.id).dialog('close'); return false; } this.UpdateSizes = function(event, ui) { var dlg = $('#dlg_'+me.id); var searchForm = $('#SearchFormToAdd_'+me.id); var results = $('#SearchResultsToAdd_'+me.id); padding_right = parseInt(dlg.css('padding-right').replace('px', '')); padding_left = parseInt(dlg.css('padding-left').replace('px', '')); padding_top = parseInt(dlg.css('padding-top').replace('px', '')); padding_bottom = parseInt(dlg.css('padding-bottom').replace('px', '')); width = dlg.innerWidth() - padding_right - padding_left - 22; // 5 (margin-left) + 5 (padding-left) + 5 (padding-right) + 5 (margin-right) + 2 for rounding ! height = dlg.innerHeight() - padding_top - padding_bottom -22; wizard = dlg.find('.wizContainer:first'); wizard.width(width); wizard.height(height); form_height = searchForm.outerHeight(); results.height(height - form_height - 40); // Leave some space for the buttons } }