Files
iTop/js/linkswidget.js
Denis Flaven 61df1d7bab - 'Add...' butotn is now grayed when there is nothing to Add
- Better handling of AllowedValues, supporting autocompletes
- Cleanup unused code in wizard.utils.js

SVN:trunk[151]
2009-09-11 21:23:24 +00:00

123 lines
3.6 KiB
JavaScript

// JavaScript Document
function LinksWidget(id, sLinkedClass, sExtKeyToMe, sExtKeyToRemote, aAttributes)
{
this.id = id;
this.sLinkedClass = sLinkedClass;
this.sExtKeyToMe = sExtKeyToMe;
this.sExtKeyToRemote = sExtKeyToRemote;
this.aAttributes = aAttributes;
this.aLinks = new Array();
this.Init = function()
{
sLinks = $('#'+this.id).val();
if (sLinks.length > 0)
{
this.aLinks = JSON.parse(sLinks);
}
this.Refresh();
}
this.Refresh = function ()
{
if (this.aLinks.length == 0)
{
$('#'+this.id+'_values').empty();
}
else
{
sLinks = JSON.stringify(this.aLinks);
$('#'+this.id).val(sLinks);
$('#'+this.id+'_values').load('ajax.render.php?operation=ui.linkswidget.linkedset&sclass='+this.sLinkedClass+'&sextkeytome='+this.sExtKeyToMe+'&sextkeytoremote='+this.sExtKeyToRemote+'&myid='+this.id,
{'sset' : sLinks}, function()
{
// Refresh the style of the loaded table
$('#'+this.id+' table.listResults').tableHover();
$('#'+this.id+' .listResults').tablesorter( { headers: { 0:{sorter: false }}, widgets: ['zebra']} ); // sortable and zebra tables
}
);
}
}
this.OnOk = function()
{
this.aObjectBeingLinked = new Array();
sSelected = 'selected_objects_'+this.id;
oSelected = document.getElementById(sSelected);
for(i=0; i<oSelected.length; i++)
{
this.aObjectBeingLinked[i] = oSelected.options[i].value;
}
this.aPreviousLinks = this.aLinks; // Save the list in case of cancellation
this.aLinks = new Array(); // rebuild the list of links from scratch
$('#LinkDlg_'+this.id).jqmShow();
}
this.OnCancel = function()
{
// Restore the links to their previous value (just in case)
this.aLinks = this.aPreviousLinks;
}
this.OnLinkOk = function()
{
$('#LinkDlg_'+this.id).jqmHide();
for(i=0; i<this.aObjectBeingLinked.length; i++)
{
oLink = {};
oLink[this.sExtKeyToRemote] = this.aObjectBeingLinked[i];
for(j=0; j<this.aAttributes.length; j++)
{
oLink[aAttributes[j]] = $('#'+this.id+'_'+j).val();
}
this.aLinks.push(oLink);
}
this.Refresh();
// Grey out the 'Add...' button
$('#ac_add_'+this.id).attr('disabled', 'disabled');
}
this.OnLinkCancel = function()
{
// Restore the links to their previous value (just in case)
this.aLinks = this.aPreviousLinks;
// Grey out the 'Add...' button
$('#ac_add_'+this.id).attr('disabled', 'disabled');
}
this.RemoveLink = function(index)
{
this.aLinks.splice(index, 1); // Remove the element at position 'index'
this.Refresh();
}
this.AddObject = function()
{
linkedObjId = $('#id_ac_'+this.id).val();
// Clears the selection
$('#id_ac_'+this.id).val('');
$('#ac_'+this.id).val('');
// Add the object to the list
this.aObjectBeingLinked = new Array();
this.aObjectBeingLinked[0] = linkedObjId;
// Add the object to the list of links
this.aPreviousLinks = this.aLinks; // Save the list in case of cancellation
$('#LinkDlg_'+this.id).jqmShow();
}
this.ModifyLink = function(index)
{
this.aObjectBeingLinked = new Array();
this.aObjectBeingLinked[0] = this.aLinks[index][this.sExtKeyToRemote];
this.aPreviousLinks = this.aLinks; // Save the list in case of cancellation
// Set the default values of the dialog to the current ones
for(j=0; j<this.aAttributes.length; j++)
{
$('#'+this.id+'_'+j).val(aLinks[index][aAttributes[j]]);
}
this.aLinks.splice(index, 1); // Remove the element at position 'index'
$('#LinkDlg_'+this.id).jqmShow(); // And add it again
}
}