public override MvcHtmlString EditorTemplate(HtmlHelper html, int screenOrderFrom = int.MinValue, int screenOrderTo = int.MaxValue, string markerAttribute = null)
 {
     return(RadioSelectVerticalMvcModel.RadioSelectCommonEditorTemplate(html, screenOrderFrom, screenOrderTo, markerAttribute));
 }
示例#2
0
            public static new MvcHtmlString RadioSelectCommonEditorTemplate(HtmlHelper html, int screenOrderFrom = int.MinValue, int screenOrderTo = int.MaxValue, string markerAttribute = null)
            {
                var result = RadioSelectVerticalMvcModel.RadioSelectCommonEditorTemplate(html, screenOrderFrom, screenOrderTo, markerAttribute).ToString().Replace("<fieldset data-role='controlgroup'>", "<fieldset data-role='controlgroup' data-type='horizontal'>");

                return(MvcHtmlString.Create(result));
            }