限制mvc 2中列表框的项目长度
在我的 MVC 2 应用程序中,我有一个列表框,
<%: Html.ListBoxFor(m => m.SelectedQuestionIds[cnt1], Model.QuestionList, new { @class = "list_style" })%>
我使用“list_style”样式限制了列表框的宽度。
我的问题是列表框中的某些项目的长度大于列表框的宽度。 如果长度太长,我需要限制用“...”显示的项目的长度。 所以我的文字将是“你好吗……” “你好吗,我亲爱的朋友,你还好吗!” 谢谢, 问候
In my MVC 2 application i ahve a list box
<%: Html.ListBoxFor(m => m.SelectedQuestionIds[cnt1], Model.QuestionList, new { @class = "list_style" })%>
i have limited my list box width with the style "list_style".
my problem is that some of the item in my listbox has length greater than my listbox width.
i need to limit the length of the item shown with a '...' if the length is too long.
so my text will be 'how are you ...'
for 'How are you my dear friend are u okay!'
thanks,
regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该将其放在扩展方法中,例如
然后您可以使用
更干净且更可重用的方法。
You should put this in an extension method, something like
Then you can use
Much cleaner and more reusable.
idid这个:
idid this:
http://blogs.msdn.com/b/sajoshi/archive/2010/06/15/asp-net-mvc-creating-a-single-select -list-box-and-showing-tooltip-for-lengthy-items.aspx
这可能会有所帮助!
http://blogs.msdn.com/b/sajoshi/archive/2010/06/15/asp-net-mvc-creating-a-single-select-list-box-and-showing-tooltip-for-lengthy-items.aspx
This might help!!!