MVC 下拉列表到 Telerik MVC 下拉列表

发布于 2024-12-13 02:53:49 字数 544 浏览 2 评论 0原文

我正在尝试将以下 asp dropdowlist 转换为 telerik mvc dropdownlist。 我正在使用 SQL 存储过程来填充列表。

<asp:DropDownList ID="userName" name="userName" runat="server" DataSourceID="SqlDataSource1"
        DataTextField="FullName" DataValueField="UserName">
    </asp:DropDownList>
    <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:HHNConnectionString %>"
        SelectCommand="GetUserName" SelectCommandType="StoredProcedure"></asp:SqlDataSource>

提前致谢。

I am trying to convert the following asp dropdowlist to telerik mvc dropdownlist.
I am using SQL stored procedures to popluate the list.

<asp:DropDownList ID="userName" name="userName" runat="server" DataSourceID="SqlDataSource1"
        DataTextField="FullName" DataValueField="UserName">
    </asp:DropDownList>
    <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:HHNConnectionString %>"
        SelectCommand="GetUserName" SelectCommandType="StoredProcedure"></asp:SqlDataSource>

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猥琐帝 2024-12-20 02:53:49

我认为 combobox 就是您要寻找的。您是在问如何使用 Telerik 控件重写您的控件吗?

好吧,首先您不要使用 MVC 控件指定存储过程。您需要将其传递到您的视图模型中。无论您使用什么方式进行数据库连接,都将负责调用存储过程。

// Controller method
public ActionResult MyAction()
{
    // Pull user names from the database
    var users = _repository.FindAllUsers().Select(u => u.UserName);
    return View(users);
}

那么您的视图将如下所示:

@model IEnumerable<string>

@(Html.Telerik().DropDownList()
    .Name("userName")
)

如果您有预先选择的用户名,那么您将需要创建一个实际的视图模型类:

public MyViewModel
{
    public string UserName { get; set;}
    public IEnumerable<string> UserList { get; set; }
}

然后您可以使用 @(Html.Telerik().DropDownListFor(m => m.UserName)) 方法。

The combobox is what you're looking for I assume. Are you asking how to rewrite your control with the Telerik control?

Well, first you don't specify the stored procedure with the MVC control. You'll want to pass that in on your viewmodel. Whatever you're using for database connectivity will be responsible for calling the stored procedure.

// Controller method
public ActionResult MyAction()
{
    // Pull user names from the database
    var users = _repository.FindAllUsers().Select(u => u.UserName);
    return View(users);
}

Then your view would look something like this:

@model IEnumerable<string>

@(Html.Telerik().DropDownList()
    .Name("userName")
)

If you have a pre-selected user name, then you'll want to create an actual viewmodel class:

public MyViewModel
{
    public string UserName { get; set;}
    public IEnumerable<string> UserList { get; set; }
}

Then you can use the @(Html.Telerik().DropDownListFor(m => m.UserName)) method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文