0

嗨,我正在使用 kendo ui 自动完成功能,但我没有在服务器包装代码中获取 Value 字段。非常感谢任何帮助。如果有任何替代方案可以解决这个问题,请提出建议。

var comboBox = htmlHelper.Kendo().AutoComplete()
            .Name(tag + propertyName)
            .Value((propertyValue ?? ""))
            .DataTextField("Text")
            .HtmlAttributes(new { value = propertyValue })
            .DataSource(source =>
            {
                source.Read(read =>
                {
                    read.Action("Search", controller); //Set the Action and Controller name
                })
                .ServerFiltering(true);
            }).HighlightFirst(true).HtmlAttributes(htmlAttributes).Enable(!enabled.HasValue ? true : enabled.Value);
            //.Events(e => e.Change("function(e){ if(ComboOnChange(e)){" + onChange + "(e);} }")
            //.DataBound("function(e){ " + onBind + " }")).ToHtmlString();
        if(!String.IsNullOrEmpty( onChange))
        {
            comboBox.Events(e => e.Change("function(e){ if(ComboOnChange(e)){" + onChange + "(e);} }"));
        }
        if (!String.IsNullOrEmpty(onBind))
        {
            comboBox.Events(e => e.DataBound("function(e){ " + onBind + " }"));
        }
        var comboBoxData = comboBox.ToHtmlString();
        comboBoxData = comboBoxData.Replace("name=\"" + tag + propertyName + "\"", "name=\"" + propertyNameId + "\"");
        comboBoxData = comboBoxData.Replace("name=\"" + tag + propertyName + "-input\"", "name=\"" + propertyNameId + "\"");
4

1 回答 1

0

这可能已经过时了,您是否尝试过类似 autocomplete[0].value 的方法?

于 2013-10-30T21:27:59.467 回答