我在下拉列表的页脚部分有一个按钮。我希望当我单击按钮时唯一的下拉列表与按钮一起隐藏。我想隐藏唯一的 ItemTemplate 内容
这是示例代码
<telerik:RadComboBox ID="RadCmbGeneralGroupCodes" runat="server"
<ItemTemplate>
<asp:CheckBox ID="chkProcedureGroupCodes" runat="server" Text='<%# Eval("ProcedureCode") + " " + Eval("ProcedureName") %>'
ToolTip='<%# Eval("ProcedureName") %>' ProcedureId='<%# Eval("ProcedureID") %>'
ProcedureCode='<%# Eval("ProcedureCode") %>'
MaxQty='<%# Eval("MaxQty") %>'
NoOfVisit='<%# Eval("NoOfVisit") %>'
NoOfVisitForMainProc='<%# Eval("NoOfVisitForMainProc") %>'
AddAdditionalPercentage='<%# Eval("AddAdditionalPercentage") %>'
ParentProcedureID='<%# Eval("ParentProcedureID") %>'
IsDenture='<%# Eval("IsDenture") %>'
SurfaceCount='<%# Eval("SurfaceCount") %>'
IsOptional='<%# Eval("IsOptional") %>'
AlwaysOpt='<%# Eval("AlwaysOpt") %>'
ToothEntry='<%# Eval("ToothEntry") %>'
SurfaceType='<%# Eval("SurfaceType") %>'
IsBillable='<%# Eval("IsBillable") %>
AppliedToOffProv='<%# Eval("AppliedToOffProv") %>'
DentalCost='<%# Eval("DentalCost") %>'
OnClick="OnProcedureCodeItemChecked(this)"
</ItemTemplate>
<FooterTemplate>
<input id="cancel" type="button" value="Cancel" />
</FooterTemplate>
</telerik:RadComboBox>
我试过这个但不工作
$('#cancel').click(function () {
$(this).hide();
$('ItemTemplate').hide();
});