BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
Hi vipin,
Thanks for contacting Syncfusion Support.
We have checked your query and we need some additional
information to find the cause of the issue. Please share us the following
details.
1. Have you faced the above issues only at applying
Localization or at initial state.
2. In which localization have you faced the issue.
3. If possible provide an issue reproducing sample.
Regards,
Farveen sulthana T
Hi Norberto,
Thanks for contacting Syncfusion Support.
We have checked your query and we have already discussed
this requirement “How to place HyperLink column in Grid columns” in our
Syncfusion knowledge Base document. For your convenience please refer to the
following Link:-
https://www.syncfusion.com/kb/3768/how-to-place-hyperlink-in-grid-column
Query :- the link would be
the following: /edit/Radicado
Please refer to the code
example:-
@(Html.EJ().Grid<OrderTable>("Grid")
.Datasource((IEnumerable<OrderTable>)ViewBag.data)
.AllowPaging()
.Columns(col =>
{
col.HeaderText("Manage
Records").Template("<a rel='nofollow' href='//www.syncfusion.com/?Radicado={{:Radicado}}'>/Edit/{{:Radicado}}</a>").Add(); col.Field("Radicado").HeaderText("Radicado").IsPrimaryKey(true).Add();
col.Field("CustomerID").HeaderText("Customer
ID").Add();
})
.ClientSideEvents(evt => evt.Create("onGridCreate")) ) |
Please refer to the Demo Link about columnTemplate:-
https://help.syncfusion.com/aspnetmvc/grid/columns#column-template
http://mvc.syncfusion.com/demos/web/grid/columntemplate
Please get back to us if you need any further assistance.
Regards,
Farveen sulthana T
Hi vipin,
Please ignore the previous update
We can reproduce your reported problem at our end. To
overcome this problem after applying the Locale through the model we suggested
you to refresh the Grid using refreshContent
method or else change the Locale on the Load event of the Grid.
Please refer to the code example:-
<div> <input id="button" ej-button="e-text.bind:'Button'" e-on-click.delegate="click($event.detail)"></input> </div> <div> <ej-grid e-data-source.two-way="gridData" e-locale="de-DE" e-allow-paging=true e-allow-sorting=true e-on-template-refresh.delegate="templateRefresh($event.detail)" e-on-load.delegate="load($event.detail)"> . . . </ej-grid> click(e){ var gridObj = $("#ejControl_0").ejGrid("instance"); gridObj.model.locale = "it-IT"; gridObj.refreshContent(true); } |
Please refer to the attached files.
Please refer to the API Link:-
https://help.syncfusion.com/api/js/ejgrid#methods:refreshcontent
Regards,
Farveen sulthanaa T