コード例 #1
0
        public static CurrencyBox BootstrapCurrencyBoxFor <TModel, TProperty>(this HtmlHelper <TModel> htmlHelper, Expression <Func <TModel, TProperty> > expression)
        {
            var control = new CurrencyBox();

            control.Initialize(htmlHelper, expression);
            return(control);
        }
コード例 #2
0
        public static CurrencyBox BootstrapCurrencyBox(this HtmlHelper htmlHelper, string name)
        {
            var control = new CurrencyBox(name);

            control.Initialize(htmlHelper);
            return(control);
        }