<% Html.Obout(new ListBox("ListBox1")
{
HeaderTemplate = new OboutMvcTemplate<ListBoxHeaderTemplateContainerInfo>((info) =>
{%>
CUSTOMERS
<%}),
Detail = new ListBox("ListBox2")
{
EnableLoadOnDemand = true,
OnLoadingItems = "ListBox/LoadOrders",
HeaderTemplate = new OboutMvcTemplate<ListBoxHeaderTemplateContainerInfo>((info) =>
{%>
ORDERS
<%}),
Detail = new ListBox("ListBox3")
{
EnableLoadOnDemand = true,
OnLoadingItems = "ListBox/LoadProducts",
HeaderTemplate = new OboutMvcTemplate<ListBoxHeaderTemplateContainerInfo>((info) =>
{%>
PRODUCTS
<%})
}
}
}); %>