Any idea why I'm seeing this behavior?
https://screencast-o-matic.com/watch/cYirqPEYYG
It is new with the most recent release.
Code below:
<div style="margin-bottom:10px">
<SfButton CssClass="e-unselected" OnClick="ExcelExport" Content="Export"></SfButton>
<SfButton CssClass="e-unselected" OnClick="@(async () => await theGridView.GroupCollapseAll())" Content="Collapse"></SfButton>
<SfButton CssClass="e-unselected" OnClick="RefreshEMButtonClick" Content="Refresh EM"></SfButton>
@if (EmServiceInstance.UserHasPermission($"Edit {GridName} Bottleneck"))
{
<SfButton CssClass="e-unselected" OnClick="KanBan" Content="KanBan"></SfButton>
<SfButton CssClass="e-unselected" OnClick="AddItemButtonClick" Content="Add Item"></SfButton>
}
<SfButton CssClass="e-unselected" OnClick="CreateTaskButton" Content="Create Task" Disabled="@(!gridItemsAreSelected)"></SfButton>
<SfCheckBox @ref="tooltipCheckBox" TChecked="bool">Tooltips</SfCheckBox>
</div>
<div>
@{
string completionText = "Bid Date";
if (!Estimating)
{
completionText = "Completion Date";
}
<SfComboBox @ref="@bulkEditTypeCombo" Enabled="@gridItemsAreSelected" AllowCustom="false" Width="90px" TValue="string" TItem="string" Value="@("Row")" DataSource="@(new string[] { "Row", "Target", "Actual" })">
<ComboBoxEvents TValue="string" ValueChange="@BulkEditTypeComboOnChange"></ComboBoxEvents>
</SfComboBox>
<SfComboBox @ref="@bulkEditStepComboBox" @bind-Value="@bulkEditStepValue" Enabled="@gridItemsAreSelected" Width="240px" TValue="string" TItem="string" Placeholder="Step..." DataSource="@ValidSteps.Select(x => x.TextWithNumber).ToList()"></SfComboBox>
<SfDatePicker @bind-Value="bulkEditDateValue" Placeholder='@(completionText + "...")' @ref="@bulkEditDatePickerCompletion" Enabled="@gridItemsAreSelected" Width="200px"></SfDatePicker>
}
@if (!Estimating)
{
<span>Mat'l Here:</span>
<SfCheckBox @bind-Checked="@bulkEditMatlHere" Disabled="bulkEditMatlHereDisabled"></SfCheckBox>
}
<SfTextBox @bind-Value="@bulkEditPhase" Enabled="bulkEditPhaseEnabled" Placeholder="Phase Name..." Width="145px"></SfTextBox>
<SfComboBox @ref="@bulkEditStatusComboBox" @bind-Value="@bulkEditStatusValue" Enabled="@(bulkEditStatusComboBoxEnabled)" Width="150px" TValue="string" TItem="string" Placeholder="Status..." DataSource="@invoiceStatusList.Select(x => x.StatusName)"></SfComboBox>
<SfButton CssClass="e-unselected" OnClick="BulkEditButton" Content="Apply" Disabled="@(!gridItemsAreSelected)"></SfButton>
</div>