28 lines
675 B
XML
28 lines
675 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<dynaForm name="dashboard_AvailableDashboards" type="xmlform" width="100%" labelWidth="20%" enableTemplate="1">
|
|
|
|
<TITLE type="title">
|
|
<en>Add availables reports or charts</en>
|
|
</TITLE>
|
|
|
|
<DASHBOARD type="dropdown" sqlConnection="dbarray">
|
|
SELECT * FROM AvailableDashboards
|
|
<en>Chart or Report</en>
|
|
</DASHBOARD>
|
|
|
|
<BTN_CANCEL type="button" onclick="cancel();">
|
|
<en>Cancel</en>
|
|
</BTN_CANCEL>
|
|
|
|
<ADD type="button" onclick="addDashboard(getField('DASHBOARD').value.split('^'));">
|
|
<en>Add</en>
|
|
</ADD>
|
|
|
|
<JS type="javascript" replacetags="1"><![CDATA[
|
|
function cancel(){
|
|
oPanel.remove();
|
|
}
|
|
]]></JS>
|
|
|
|
|
|
</dynaForm> |