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="container"></div>
<script>
    $("#container").boldReportDesigner({
        previewOptions: {
            parameterSettings:{ delimiterChar: "," }
        }
    });
</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>
    $("#container").boldReportDesigner({
        previewOptions: {
            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>
    $("#container").boldReportDesigner({
        previewOptions: {
            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>
    $("#container").boldReportDesigner({
        previewOptions: {
            parameterSettings:{ itemWidth: "150px" }
        }
    });
</script>

labelWidth

string

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

Defaults to auto

Example

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