Hello, Excuse the bad English
There is telerikgrid, and when I click Row on that grid, I load the razor page in tabstriptab with grid data as a parameter.
I want the contents of the razor page to change based on the parameter value that changed when I clicked row on the grid.
Currently, the parameter value changes, but the razor page does not reload.
What Should I do?
Here is the detail code:
<TelerikTabStrip @bind-ActiveTabIndex="@ActiveTabIndex">
<TabStripTab Title="Drawing">
<Drawing DCT_NO="@DctNo" ENV_NO="@PartNo" ENV_TYPE="@EnvType" ENV="@ENV" COID="@COID"></Drawing>
</TabStripTab>
<TabStripTab Title="Cad">
<Cad DCT_NO="@DctNo" ENV_NO="@PartNo" ENV_TYPE="@EnvType" ENV="@ENV" COID="@COID"></Cad>
</TabStripTab>
</TelerikTabStrip>
Thank you.