Blazor
A free and open-source web framework that enables developers to create web apps using C# and HTML being developed by Microsoft.
1,665 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
i have added a mudtable with inline edit and delete function.Problem is when i am clicking the second row for editing un edited row and header jumping to left side.How can i fix these CSS? please find my blazor app having this issue in below link.I need to make un editable row and header freez while inline edit is activated.
Issue is reproduced below link
Hi Raman,
Please replace your part of code
<ColGroup>
@if (applyButtonPosition.DisplayApplyButtonAtStart() || (editButtonPosition.DisplayEditButtonAtStart() && editTrigger == TableEditTrigger.EditButton))
{
<col style="width:50px;" />
}
<col />
<col />
<col style="width:50%;" />
@if (applyButtonPosition.DisplayApplyButtonAtEnd() || (editButtonPosition.DisplayEditButtonAtEnd() && editTrigger == TableEditTrigger.EditButton))
{
<col style="width:88px;" />
}
</ColGroup>
To
<ColGroup>
@if (applyButtonPosition.DisplayApplyButtonAtStart() || (editButtonPosition.DisplayEditButtonAtStart() && editTrigger == TableEditTrigger.EditButton))
{
<col style="width:50px;" />
}
<col style="width:0px;"/>
<col style="width:0px;"/>
<col style="width:50%;" />
@if (applyButtonPosition.DisplayApplyButtonAtEnd() || (editButtonPosition.DisplayEditButtonAtEnd() && editTrigger == TableEditTrigger.EditButton))
{
<col style="width:88px;" />
}
</ColGroup>
Thanks
Naimish Makwana