Item Properties - Checkbox Choice Column Rendering

When completing SharePoint item properties, by default the checkbox choice columns are rendered at a fixed height.

If there are more choices than will fit within this height then scrollbars will appear.

This can be modified using the configuration below:

 

Property

Mandatory / Optional

Description

action

Mandatory

Set to "insert" to change the default behavior

Set to "delete" to revert to default behavior

fitHeightToItems

Mandatory

true or false (default)

 

Example: Make checkbox choice columns show all items instead of scrollbars

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <itemProperties>
    <choiceMultiColumn action="delete"/>
    <choiceMultiColumn fitHeightToItems="true" action="insert"/>
    </itemProperties>
</configuration>