|
<SfGrid DataSource="@Orders">
<GridEvents RowSelected="RowSelectHandler" TValue="Order"></GridEvents>
<GridColumns>
<GridColumn Field=@nameof(Order.CustomerID) HeaderText="Customer Name" Width="150"></GridColumn>
</SfGrid>
@code{
public void RowSelectHandler(RowSelectEventArgs<Order> args)
{
var CustomerIDValue = args.Data.CustomerID;
}
}
|
I used RowSelected to grab the selected record's Id and navigate to a new page with it. The navigation works. However, the entire row's data flickers on click right before the page navigates. It seems to flicker and shift to the left. This doesn't happen every time, just occasionally. I'm guessing this is an automatic re-render thing? Is there a way to prevent the row's data from re-rendering?
Hi Robin,
Before proceeding with the reporting of the problem, we require some additional
clarification from your end. Please share the following details to proceed
further on our end:
To analyze the reported issue, could you please share a simple and reproducible sample with duplicate data that demonstrates the problem? This will assist us in identifying the issue more efficiently and providing a resolution.
Could you please share us the video demonstration of the issue with replication steps?
Share with us a grid code snippet with the model class?
The details
requested above will be very helpful in validating the reported query on our
end and providing a solution as soon as possible. Thanks for your
understanding.
Regards,
Prathap S