<% Html.Obout(new ComboBox("ComboBox1")
{
EmptyText = "Select a country ...",
HeaderTemplate = new OboutMvcTemplate<ComboBoxHeaderTemplateContainerInfo>((info) =>
{%>
CONTINENTS
<%}),
Detail = new ComboBox("ComboBox2") {
EmptyText="Select a country ...",
EnableLoadOnDemand = true,
OnLoadingItems = "ComboBox/LoadCountries",
HeaderTemplate = new OboutMvcTemplate<ComboBoxHeaderTemplateContainerInfo>((info) =>
{%>
COUNTRIES
<%})
}
}); %>