Search results
PDF

parameterSettings

Properties

delimiterChar

string

Sets the separator when the multiSelectMode with delimiter option or checkbox is enabled with the dropdown. When you enter the delimiter value, the texts after the delimiter are considered as a separate word or query. The delimiter string is a single character and must be a symbol. Mostly, the delimiter symbol is used as comma (,) or semi-colon (;) or any other special character.

Defaults to ’,’

Example

<div id="reportviewer"></div>
<script>
    $("#reportviewer").boldReportViewer(
        {
            parameterSettings:{ delimiterChar: "," }
        });
</script>

position

enum

Specifies the parameter panel docking position. This support applicable only in Classic view.

Name Description
Top Specify the value to dock parameter panel in top side.
Bottom Specify the value to dock parameter panel in bottom side.
Right Specify the value to dock parameter panel in right side.
Left Specify the value to dock parameter panel in left side.

Defaults to ej.ReportViewer.Position.Top

Example

<div id="reportviewer"></div>
<script>
   $("#reportviewer").boldReportViewer(
        {
            toolbarRenderMode: ej.ReportViewer.ToolbarRenderMode.Classic,
            parameterSetting: {
                position: ej.ReportViewer.Position.Right;
            }
        });
</script>

popupHeight

string

Specifies the height of the combobox parameter popup list. By default, the popup height value is 152px.

Defaults to 152px

Example

<div id="reportviewer"></div>
<script>
    $("#reportviewer").boldReportViewer(
        {
            parameterSettings:{ popupHeight: "200px" }
        });
</script>

popupWidth

string

Specifies the width of the combobox parameter popup list. By default, the popup width sets based on the width of the component.

Defaults to ‘auto’

Example

<div id="reportviewer"></div>
<script>
    $("#reportviewer").boldReportViewer(
        {
            parameterSettings:{ popupWidth: "150px" }
        });
</script>

itemWidth

string

Specifies the width of the parameter item. By default, the item width value is set as 185px.

Defaults to 185px

Example

<div id="reportviewer"></div>
<script>
    $("#reportviewer").boldReportViewer(
        {
            parameterSettings:{ itemWidth: "250px" }
        });
</script>

labelWidth

string

Specifies the width of the parameter label. By default, the parameter label width value is set as 110px.

Defaults to 110px

Example

<div id="reportviewer"></div>
<script>
    $("#reportviewer").boldReportViewer(
        {
            parameterSettings:{ labelWidth: "auto" }
        });
</script>

minDateTime

string

Specifies the minimum date in the date parameter that the user can select. By default, the minDateTime value is set as null

Defaults to null

Example

<div id="reportviewer"></div>
<script>
    $("#reportviewer").boldReportViewer(
        {
            parameterSettings:{ minDateTime: "3/1/2003" }
        });
</script>

maxDateTime

string

Specifies the maximum date in the date parameter that the user can select. By default, the maxDateTime value is set as null

Defaults to null

Example

<div id="reportviewer"></div>
<script>
    $("#reportviewer").boldReportViewer(
        {
            parameterSettings:{ maxDateTime: "4/30/2003" }
        });
</script>

hideTooltip

boolean

Show or hide the parameter tooltip on report initial rendering.

Defaults to false

Example

<div id="reportviewer"></div>
<script>
    $("#reportviewer").boldReportViewer(
        {
            parameterSettings:{ hideTooltip: true }
        });
</script>

hideParameterBlock

boolean

Show or hide the parameter block on report initial rendering.

Defaults to false

Example

<div id="reportviewer"></div>
<script>
    $("#reportviewer").boldReportViewer(
        {
            parameterSettings:{ hideParameterBlock: true }
        });
</script>

dateTimeFormat

string

Defines the date time format displayed in the DateTimePicker. By default, the dateTimeFormat value is set as empty.

Defaults to empty

Example

<div id="reportviewer"></div>
<script>
    $("#reportviewer").boldReportViewer(
        {
            parameterSettings:{ dateTimeFormat: "d/M/yyyy tt h:mm" }
        });
</script>

timeDisplayFormat

string

Defines the time format displayed in the time dropdown inside the DateTimePicker popup. By default, the timeDisplayFormat value is set as empty.

Defaults to empty

Example

<div id="reportviewer"></div>
<script>
    $("#reportviewer").boldReportViewer(
        {
            parameterSettings:{ timeDisplayFormat: "HH:mm" }
        });
</script>

timeInterval

number

Sets the time interval between the two adjacent time values in the DateTimePicker time popup. By default, the timeInterval value is set as 30.

Defaults to 30

Example

<div id="reportviewer"></div>
<script>
    $("#reportviewer").boldReportViewer(
        {
            parameterSettings:{ timeInterval: 60 }
        });
</script>

accessInternalValue

boolean

Specifies whether the hidden or internal report parameters can be exposed to user or not. By default, the value is set as false and only the public visibility parameters are exposed outside.

Defaults to false

Example

<div id="reportviewer"></div>
<script>
    $("#reportviewer").boldReportViewer(
        {
            parameterSettings:{ accessInternalValue: true }
        });
</script>