EnhancedLightningGrid icon indicating copy to clipboard operation
EnhancedLightningGrid copied to clipboard

SDGField constructors IGNORE the options argument

Open the-last-byte opened this issue 2 years ago • 0 comments

As the title says - the options argument is ignored in the constructor. See below for an example:

global sdgField(String ID, String Label, String ColumnName, String FieldType, String FieldStyle, Boolean canSort, Boolean isHTMLFormatted, List<AuraSelectOption> options)
{
    this.ID = ID;
    this.Label = Label;
    this.ColumnName = ColumnName;
    this.FieldType = FieldType;
    this.FieldStyle = FieldStyle;
    this.isHTMLFormatted = isHTMLFormatted;
    this.canSort = canSort;
    this.FieldOrder = 1;
}

This issue applies to all SDGField constructors.

the-last-byte avatar Apr 19 '22 00:04 the-last-byte