我有一个RadTextBox,当用户输入值时,该值将值存储到表(注释)中。我想为此Textbox使用自动完成属性,以便当用户尝试输入注释时,他可以在该文本框中查找这些注释表。谁能告诉我语法或使用它的正确方法。我浏览了几篇博客,但无法获得正确的信息。
TextBox语法:
<telerik:RadTextBox ID="CommentsTB1" runat="server"
EmptyMessage="" MaxLength="200"
Rows="3" TextMode="MultiLine" Width="440px" Font-Bold="True"
Font-Names="Tahoma, Arial, Helvetica" Font-Size="11px" ForeColor="#333333" AutoCompleteType="None">
<ClientEvents OnValueChanged="auditComments" />
</telerik:RadTextBox>
答案 0 :(得分:0)
经过许多博客后,我发现'AutoCompleteExtender'与RadTextbox不兼容。所以我也使用'RadAutoCompleteBox'来解决我的解决方案
a = [1, 2, 3, 4, 5, 6]
b = list(map(int, a))