FineUI 官方论坛

标题: 初始化DropDownList?? [打印本页]

作者: yygy    时间: 2017-9-28 22:11
标题: 初始化DropDownList??
                 F.DropDownList()
                    .ID("DropDownList1")
                    .EmptyText("请选择")
                    .DataTextField("ftype")
                    .DataValueField("ftype")
                    .OnSelectedIndexChanged(Url.Action("DropDownList1_SelectedIndexChanged"), "DropDownList1")
                    .DataSource(ViewBag.DropDownList1DataSource)

后台:
        public ActionResult Index()
        {
            string s = "select substring(ftype,1,1) as ftype from acc_sum GROUP BY substring(ftype,1,1)";
            ViewBag.DropDownList1DataSource = Cpmro.DBL.SqlHelper.getData(s);
            return View();
//=================================================================
请问这里怎样可以触发DropDownList1_SelectedIndexChanged事件
还有EmptyText("请选择")没有显示出来。
//==================================================================

        }
        [HttpPost]
        [ValidateAntiForgeryToken]
        public ActionResult DropDownList1_SelectedIndexChanged(string DropDownList1, string DropDownList1_text)
        {
           。。。。
           。。。。
            return UIHelper.Result();
        }

[attach]10653[/attach]




作者: yygy    时间: 2017-9-28 22:40
已解决
http://fineui.com/demo_mvc#/demo_mvc/DropDownList/ShengShiXian




欢迎光临 FineUI 官方论坛 (https://fineui.com/bbs/) Powered by Discuz! X3.4