or
Hi, I am unable to get this to work without specifying the width and height of theRadToolTipManager. This doesn't work. I can see some small trace of the tooltip, but barely noticeable.
<telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" AutoTooltipify="true" Position="BottomCenter" Animation="Fade" RelativeTo="Element" HideEvent="LeaveTargetAndToolTip" ShowCallout="true" ContentScrolling="Auto" EnableShadow="true" Skin="Default" /> <div> <asp:Label ID="lbl1" runat="server" ToolTip="This is a label" Text="My Label" /> <telerik:RadTextBox ID="txtName" runat="server" ToolTip="Please enter your full name" /> </div> This works:<telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" AutoTooltipify="true" Position="BottomCenter" Animation="Fade" RelativeTo="Element" HideEvent="LeaveTargetAndToolTip" ShowCallout="true" ContentScrolling="Auto" EnableShadow="true" Width="200px" Height="200px" Skin="Default" /> <div> <asp:Label ID="lbl1" runat="server" ToolTip="This is a label" Text="My Label" /> <telerik:RadTextBox ID="txtName" runat="server" ToolTip="Please enter your full name" /> </div>This is an expected behavior?
I am trying to use the Selected index of one RadComboBox help build the query to populate another RadComboBox, they are both in the <EditItemTemplate>.
I get an Object reference not set to instance of an object when I run this code just adding a RadComboBoxItem without even building the query.
Protected Sub ItemType_SelectedIndexChanged(ByVal o As Object, ByVal e As RadComboBoxSelectedIndexChangedEventArgs)
Dim DDL As RadComboBox = TryCast(RadGrid1.FindControl("FlatFileType").Controls(0), RadComboBox)
Dim RadComboBoxItem1 As New RadComboBoxItem("First Item")
DDL.Items.Add(RadComboBoxItem1)
End Sub
I am not sure how to correctly access the second radcombobox to be able to populate it.
Any help is greatly appreciated.