Hi,
I need to render a tag inside another tag in grid,like shown below 1st one which is dynamically attached to div tag in grid structure we can't add the tag manually or we can't have any script to do this since it is grid it comes automatically,Is there any possibility to do or do we have any mode kind of thing to use in grid structure so that it will attach span tag inside div one
1)<div class="e-headercelldiv" data-ej-mappingname="ExtractName" style="text-align: left;">Extract Name <span class="e-icon e-descending e-rarrowdown-2x"> </span></div>
What we are getting is Below one
<div class="e-headercelldiv" data-ej-mappingname="ExtractName" style="text-align: left;">Extract Name</div><span class="e-icon e-ascending e-rarrowup-2x e-sortadjust"> </span>
Hi,
@(Html.EJ().Grid<object>("ProviderDeatilsGrid")
.Datasource(d => d.CrossDomain(false).URL(Url.Action("GetProviderSearchResults") + "/" + Guid.NewGuid()).Offline(true))
.Columns(col =>
{
col.Field("ProviderName").HeaderText("Provider Name").Template(true).TemplateID("#columnTemplate").Add();
col.Field("BirthDate").HeaderText("Birth Date").Template(true).TemplateID("#dateColumnTemplate").Add();
col.Field("ProviderAddress.StateName").HeaderText("Primary Practice State").Add();
col.Field("RosterStatusName").HeaderText("Roster Status").Add();
col.Field("ProviderStatusName").HeaderText("Provider Status").Add();
col.Field("CAQHId").HeaderText("CAQH Provider ID").Add();
}).AllowPaging().PageSettings(e => e.PageSize(PortalSettings.PageSize)).AllowSorting())
i have a grid structure like above which will be shown as table on the application page,so as per the upgraded one we are getting span tag outside of a div tag as shown earlier,Is there any possible solution to get span tag inside a div tag ? If there how can we apply that on grid structure.