This is a migrated thread and some comments may be shown as answers.

[Solved] Master detail view using a string to join

0 Answers 76 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
skyhikeeper
Top achievements
Rank 1
skyhikeeper asked on 20 Mar 2011, 03:06 PM
Hi There

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
Tags
Grid
Asked by
skyhikeeper
Top achievements
Rank 1
Share this question
or