or
Hi,
I'm struggling to implement this, i'm not sure why.
I've got a RadComboBox, and i've manually implemented the onitemsrequested event of it, to enable custom loading on demand.
I've then attached my tooltip. Both of which are inside an asp:Panel which is ajaxified using the RadAjaxManager.
<telerik:RadToolTip ID="tt_searchArea_empty" runat="server"TargetControlID="cbo_searchArea" HideEvent="FromCode" ShowEvent="FromCode" RelativeTo="Element"> </telerik:RadToolTip>
and show it in code behind (search locations is my combobox's datasource).
If search_locations.Count <= 0 ThenMe.tt_searchArea_empty.Text = "Could not find any results for """ & e.Text & ""Me.tt_searchArea_empty.Show() End IfAnd to hide it, i've attached this client side event OnFocus of my combobox:
var tt = '<%=tt_searchArea_empty.ClientID %>';tt.hide();_initializeAllDayCheckbox: function(){ var allDayCheckbox = $("#" + this._templateId + "_AllDayEvent"); var controlList = $(allDayCheckbox[0].parentNode.parentNode.parentNode);<li class="rsAllDayWrapper"> <asp:CheckBox runat="server" ID="AllDayEvent" CssClass="rsAdvChkWrap" Checked="false" /></li>
function GetRadWindow() { var oWindow = null; if (window.radWindow) oWindow = window.radWindow; else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow; return oWindow; } function Close() { var oWindow = GetRadWindow(); alert (oWindow); oWindow.argument = null; oWindow.close(); } but