MVC 下拉列表到 Telerik MVC 下拉列表
我正在尝试将以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 combobox 就是您要寻找的。您是在问如何使用 Telerik 控件重写您的控件吗?
好吧,首先您不要使用 MVC 控件指定存储过程。您需要将其传递到您的视图模型中。无论您使用什么方式进行数据库连接,都将负责调用存储过程。
那么您的视图将如下所示:
如果您有预先选择的用户名,那么您将需要创建一个实际的视图模型类:
然后您可以使用
@(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.
Then your view would look something like this:
If you have a pre-selected user name, then you'll want to create an actual viewmodel class:
Then you can use the
@(Html.Telerik().DropDownListFor(m => m.UserName))
method.