Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
125
How can create grid with combo and use mapper in mvc
posted

How can fill combos and use mapper property to select the item come to the Model? In grids MVC. Its something like this?

new GridUpdating()
{
ColumnSettings = new List<ColumnUpdatingSetting>()
{
new ColumnUpdatingSetting()
{
ColumnKey= "CodTipoDireccion",
EditorType= ColumnEditorType.Combo,
EditorOptions = "",
ComboEditorOptions = new ColumnUpdatingComboEditorOptions()
}{ DataSourceUrl = Url.Action("ObtenerCatalogoTipoDireccionesl")}
}
}
}