BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
We can place Hyperlink in a Grid column using the Column template feature of the grid. The template to a particular column can be provided by using Template and TemplateID properties of the column. Please refer the following code snippets.
@(Html.EJ().Grid<object>("ColumnTemplate") … .Columns(col => { col.Field("OrderID").HeaderText("Order ID").Width(90).Add(); … col.HeaderText("Employee HyperLink").Template(true).TemplateID("#columnTemplate") .TextAlign(TextAlign.Center).Width(110).Add(); }) )
<script type="text/x-jsrender" id="columnTemplate"> @*In the template column we can get the values of corresponding row.*@ <a rel='nofollow' href='/Project/?Id={{:OrderID}}'> Details</a> </script> |
Hi Prasanthan,
Thanks for your update.
We will wait to hear from you.
Regards,
Saravanan A.