Preconfiguration "PmaReport - General data array into a cyclic table"
This preconfiguration can be activated when creating a new object (e.g. by
"New object ..." in the local object menu or by pressing the
Insert key after selecting the object) and is included in the group:
"/ Reports / Report (PmaReport)".
This preconfiguration can be created in the object:
PmaFolder or
PmaRoot.
Creates the
PmaReport object, that is connected to the template file
RepCycTable.htm (in the "
Source file of the report template" configurator) located in the PROMOTIC system in the
\Promotic\PmVXXYY\Resource\Report folder. A data array is emulated in the
onReportRequest event. The data array, title, number of rows of the table on the first and following pages (eventually the array of column titles) are transferred to the template file by the
SetKeyValue statements, and then configured and displayed.
If none of the templates is functionaly or graphicaly suaitable for the application, then it is possible to copy one into the PROMOTIC application and then modify as needed.
These configurators can be set before the preconfiguration is created:
The name of created object | Name of the object created in the tree of Pma objects. The maximum name length is 30 characters. This is a system name, so it must contain only alphanumeric and must not contain any diacritics (i.e. national dependent chars), empty string, spaces and the first character must not be a number.
Default: "PmaReport" |
Table report title | report header (default) Data in the table |
Column titles source |
No column titles (default) - This option displays only the data with no column titles
The column titles are entered separately - This option is suitable if we require own column titles
The column titles are included in a data array - This option is suitable if the first row of source data array contains the column titles |
|
Enable as Web component | Specifies whether this object has to be registered as a Web server component
After the preconfiguration is created, the "PmaPanel > Web server > Enable as Web component" configurator will be set to this value. |
PmaWeb object | Path in the tree of Pma objects to the object PmaWeb, PmaWebFolder or PmaWebLang where the registration is carried out.
Macro expression can be used for input (it is evaluated after starting the application).
After the preconfiguration is created, the "PmaPanel > Web server > PmaWeb object" configurator will be set to this value. |
---|
The example of opening the PmaReport object:
Called in the
onButtonUp event of the
PmgButton object. The object will be opened as an separate window.
JavaScriptSelect and copy to clipboard
var oCreator = Pm.CreateView(null, "/PmaReport", "", "target:_blank;");
oCreator.Open();
The example of the PmaReport object print:
Called in the
onButtonUp event of the
PmgButton object. The example is functional only in the local application. If the print is to be functional also in the Web client, then the
SaveToString method must be called in the panel method on the server.
JavaScriptVBScriptSelect and copy to clipboard
var sReport = pMe.Pm("/PmaReport").SaveToString("");
Pm.PrintHtmlPage(sReport, "sourcetype:htmlstring;printer:select;");
Dim sReport
sReport = pMe.Pm("/PmaReport").SaveToString("")
Pm.PrintHtmlPage sReport, "sourcetype:htmlstring;printer:select;"