public static IHtmlContent BestProperty(this IHtmlHelper html, PropertyVm vm)
        {
            string viewName = ViewFinderExtensions.BestPropertyName(new FormFactoryHtmlHelper(html), vm);

            return(html.Partial(viewName, vm));
        }
Esempio n. 2
0
        public static MvcHtmlString BestProperty(this MyFfHtmlHelper html, PropertyVm vm)
        {
            string viewName = ViewFinderExtensions.BestPropertyName(html, vm);

            return(html.Partial(viewName, vm));
        }