Hi,
Data from a different table in the Grid Column template and printed with a span tag or p tag or div tag cannot be found when searching.
Does not find the data in the following example in the search
<GridColumn Field="SipAd" Context="SContext" HeaderText="Sip Adı" ClipMode="ClipMode.EllipsisWithTooltip" TextAlign="TextAlign.Left" Width="150">
<Template>
@{
var value = (SContext as PModel);
KModel ForeignKeyData = KModels?.Where(x => x.Id == value.KModelId).FirstOrDefault();
if (ForeignKeyData != null)
{
var SipId = ForeignKeyData?.SModelId.Value;
SModel foreignKeyData2 = SModels?.Where(y => y.Id == SipId).FirstOrDefault();
var SipName = foreignKeyData2?.S_Name;
<div>@SipName
</div>
}
}
</Template>
</GridColumn>
I looked at the search documentation on your page on this topic, but couldn't find what I was looking for.
Thanks in advance.