0

当我将表单放入 Telerik 选项卡条时,表单元素不会在 HTML 中呈现。但是会渲染输入元素。这种形式在标签条之外工作正常。

tabstrip.Add()
    .Text("Variants")
    .Content(() =>
    {
     %>
        <form action="#" id="form1" method="post">
            <input id="option" type="text" />
            <input type="submit" value="save" /></span>
        </form>
     <%
});
4

2 回答 2

0

尝试使用这样的东西:

tabstrip.Add()
    .Text("Variants")
    .Content(
    {%><text>
     %>
        <form action="#" id="form1" method="post">
            <input id="option" type="text" />
            <input type="submit" value="save" />
        </form>
     <%
</text>

});
于 2013-11-13T23:21:24.453 回答
0

我已经解决了这个问题 Kenod helper ignore first form if you put empty form and then put your actual form it will ignore the first form and take your form

@{Html.Kendo().TabStrip().Name("TabStrip").TabPosition(Model.TabStripPosition).Items(items => { foreach (var tab in Model.TabItems) {

        items.Add()
  .Text(tab.Title)

.Content(@ @Html.Raw("") @using (Html.BeginForm("", "..","..", new { enctype = "multipart/form-data", id = "... " }))

{  @Html.Partial(tab.PartialView, tab.Model)}

    </text>
                        ).Selected(true)

        }

    }).Render();
于 2016-04-12T09:36:32.233 回答