サイトに特定の幅のリスト ボックスがあります。問題は、テキストが大きすぎてリストから切り落とされることがあるということです。私が望んでいるのは、リスト ボックスのすべてのエントリ (すべて) に新しい行を挿入して、自動的に新しい行になるようにすることです。
出来ますか?
リスト ボックス (テキストがトリミングされていることに注意してください)
コード
<asp:ListBox ID="lstLegalEntity" runat="server" SelectionMode="Multiple" CssClass="client-bg-repeat" ForeColor="#000060" AutoPostBack="True">
<asp:ListItem>Select One Two Three Four Five Six Seven Eight</asp:ListItem>
<asp:ListItem>Select One Two Three Four Five Six Seven Eight</asp:ListItem>
<asp:ListItem>Select One Two Three Four Five Six Seven Eight</asp:ListItem>
<asp:ListItem>Select One Two Three Four Five Six Seven Eight</asp:ListItem>
</asp:ListBox>
私が望んでいるのは、すべてのリスト項目のテキストを関数に入れ、7 文字ごとに「改行」を挿入して、エントリが途切れず、長いエントリがすべて 2 行で表示されるようにすることです。
ありがとう。