This question is locked. New answers and comments are not allowed.
Hi There
I have a master detail view and it now works that I made the join a integer
I however want to use a string sometime to make the join but it seems that this is not possible.
Terence
I have a master detail view and it now works that I made the join a integer
.DetailView(details => details.ClientTemplate( Html.Telerik().Grid<HealthMVC.Models.ClientTransModel>() .Name("Daily_<#= ClientID #>") .Columns(columns => { ... }) .DataBinding(DdataBinding => DdataBinding.Ajax().Select("_DailySiteInfoAjax", "JISClientHealth", new { cID = "<#= ClientID #>" })) .Pageable(dpager => dpager.Style(GridPagerStyles.NextPreviousAndNumeric | GridPagerStyles.PageSizeDropDown).PageSize(10)) .Groupable() .Filterable() .ToHtmlString() ))
I however want to use a string sometime to make the join but it seems that this is not possible.
Terence