asp:listbox如何提供数据?
我的 MVC 视图遇到一些问题。列表框的数据由控制器传递并可通过 Model.templateList 访问。所以现在我必须将这些数据传递到 asp:listbox。有什么方法可以做到这一点还是我必须使用某种 DataProvider。就 SoC 而言会有什么坏处。我考虑过使用 Html-Helper Html.ListBox,但我不知道如何获得双击等操作来使用它。希望有很多聪明人对此有所了解。
感谢您的阅读
I'm having some trouble with in my MVC-View. The data for the listbox is passed by the controller and accessible via Model.templateList. So now I have to pass these data to the asp:listbox. Is there any way to do this or do I have to use some sort of DataProvider. What would be bad in terms of SoC. I considered using the Html-Helper Html.ListBox but I have no idea how to get actions like double-click and so on to work with it. Hope there are many smart people with some knowledge about this.
Thank you for reading
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要绑定到列表框,您可以使用类似这样的
内容来执行需要使用 JavaScript 的操作。像“listbox double click javascript”这样的谷歌查询将帮助您进入下一个级别。
To bind to the list box you would using something like this
with regards to the the actions you would need to use JavaScript. A google query like "listbox double click javascript" will help you get to the next level.