2019-07-17 20:08:50 +00:00
|
|
|
<script>
|
|
|
|
YAHOO.util.Event.onDOMReady(function () {
|
|
|
|
COMMID.loader.insert(
|
|
|
|
["datasource", "datatable", "paginator", "json", "connection", "dragdrop", "animation", "container"],
|
|
|
|
function() {
|
|
|
|
COMMID.sitesList.init();
|
|
|
|
COMMID.sitesList.initTable();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<div id="paging"></div>
|
|
|
|
<div id="dt"></div>
|
|
|
|
<div id="fieldsDialog">
|
2019-07-17 20:16:19 +00:00
|
|
|
<div class="hd"><?php echo $this->translate('Information Exchanged') ?></div>
|
2019-07-17 20:08:50 +00:00
|
|
|
<div class="bd">
|
2019-07-17 20:16:19 +00:00
|
|
|
<?php echo $this->translate('Information exchanged with:') ?><br />
|
2019-07-17 20:08:50 +00:00
|
|
|
<span id="fieldsDialogSite"></span>
|
|
|
|
<div id="fieldsDialogDl" class="formGrid"></div>
|
|
|
|
<div style="text-align:right">
|
2019-07-17 20:16:19 +00:00
|
|
|
<input type="button" id="closeDialog" value="<?php echo $this->translate('OK') ?>" onclick="COMMID.sitesList.closeDialog()" />
|
2019-07-17 20:08:50 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
YAHOO.util.Event.onDOMReady(function () {
|
|
|
|
var oButton = new YAHOO.widget.Button(
|
|
|
|
"closeDialog",
|
|
|
|
{
|
|
|
|
type : "push",
|
|
|
|
onclick : {fn: COMMID.sitesList.closeDialog}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|