The issue I am having is when using Batch editing with the following conditions the field that I am attempting to update(using a dropdown list/component) does not render (see attachment) as a dropdown list.
- Grid component with field that is an object
- Column configured as Client Template
- Field that is bound has the UHint attribute set to an Editor template
- A custom filter is set
ex: The code below shows a custom filter. When this custom filter is set then this dropdown field DOES NOT render as dropdown. If I remove the the custom filter the drop down renders properly when batch editing.
columns.Bound(p => p.SubProgramObject.SubProgram).ClientTemplate("#=sanitizeNulls(SubProgramObject?.SubProgram)#").Sortable(true).Width(160).Title("Sub Program").Filterable(filterable => filterable
.UI("subProgramFilter").Extra(false)
.Operators(operators => operators
.ForString(str => str.Clear()
.IsEqualTo("Is equal to")
.IsNotEqualTo("Is not equal to")
.IsNullOrEmpty("Is null")
.IsNotNullOrEmpty("Is not null")
)));
Note: If I do NOT configure a custom filter the dropdown renders as expected. See PDF attached