import v1.0.0-RC4 | 2009-05-20
This commit is contained in:
35
modules/default/views/scripts/sites/index.phtml
Normal file
35
modules/default/views/scripts/sites/index.phtml
Normal file
@ -0,0 +1,35 @@
|
||||
<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">
|
||||
<div class="hd"><?= $this->translate('Information Exchanged') ?></div>
|
||||
<div class="bd">
|
||||
<?= $this->translate('Information exchanged with:') ?><br />
|
||||
<span id="fieldsDialogSite"></span>
|
||||
<div id="fieldsDialogDl" class="formGrid"></div>
|
||||
<div style="text-align:right">
|
||||
<input type="button" id="closeDialog" value="<?= $this->translate('OK') ?>" onclick="COMMID.sitesList.closeDialog()" />
|
||||
<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>
|
Reference in New Issue
Block a user