User-336073119 posted
Hi, it looks like @ref are not set on components inside conditionals. i.e.
@if (null == @_SelectedTypeMap)
{
<MudText>@_L["msg_NothingSelected"]</MudText>
}
else
{
<MudTable @ref=RecTypeTable ServerData="@(new Func<TableState, Task<TableData<RecordTypeDTO>>>(GetTypesForMap))" Dense="true" >
then the ref to the table is never set, however I need it to enable loading of data. Is there something I am missing about using ref?