<html xmlns="http://www.w3.org/1999/xhtml"><head runat="server">    <title></title>     <style type="text/css">  div.RadComboBox_Default table .rcbInputCell, div.RadComboBox_Default table .rcbArrowCell  {      background-color: red;      height: 11px;       line-height: 10px;     padding: 0; }    div.RadComboBox_Default table .rcbInputCell input {     height: 11px;     line-height: 10px;     font:10px arial,verdana,sans-serif;     height: 11px;     padding: 0; }   .rcbInput {     height: 11px !important; } </style>  </head><body>    <form id="form1" runat="server">    <div>        <telerik:RadScriptManager ID="RadScriptManager1" runat="server">        </telerik:RadScriptManager>        <telerik:RadComboBox ID="RadComboBox1" runat="server" >            <Items>                <telerik:RadComboBoxItem text="12345" />                <telerik:RadComboBoxItem text="12345" />                <telerik:RadComboBoxItem text="12345" />                <telerik:RadComboBoxItem text="12345" />                <telerik:RadComboBoxItem text="12345" />                <telerik:RadComboBoxItem text="12345" />            </Items>        </telerik:RadComboBox>                <telerik:RadTextBox ID="RadTextBox1" runat="server" Height="11px"></telerik:RadTextBox>        <br/> <br/> <br/>        <telerik:RadComboBox ID="RadComboBox2" runat="server" EnableEmbeddedSkins="false" >            <Items>                <telerik:RadComboBoxItem text="12345" />                <telerik:RadComboBoxItem text="12345" />                <telerik:RadComboBoxItem text="12345" />                <telerik:RadComboBoxItem text="12345" />                <telerik:RadComboBoxItem text="12345" />                <telerik:RadComboBoxItem text="12345" />            </Items>        </telerik:RadComboBox>        <telerik:RadTextBox ID="RadTextBox2" runat="server" Height="11px"></telerik:RadTextBox>            </div>    </form>    </body></html><Telerik:RadScriptManager ID="RadScriptManager1" runat="server"></Telerik:RadScriptManager><Telerik:RadEditor ID="RadEditorProductDetails" runat="server" EditModes="Design, Html" Skin="Windows7">    <Tools>        <Telerik:EditorToolGroup>            <Telerik:EditorTool Name="FontName" />            <Telerik:EditorTool Name="FontSize" />            <Telerik:EditorTool Name="RealFontSize" />        </Telerik:EditorToolGroup>    </Tools>    <Content>    </Content></Telerik:RadEditor>
             | 
        
<telerik:RadToolTipManager ID="rttmFLC"                 OffsetX="1"                 Width="400"                 Height="400"                 HideEvent="LeaveToolTip"                runat="server"                 OnAjaxUpdate="OnAjaxUpdate"                RelativeTo="Element"                Position="MiddleRight"                ContentScrolling="Auto">        </telerik:RadToolTipManager>ContentTemplateContainer.Controls collection, as well as adding a user control with an image in it. Both ways, no horizontal scrollbar. I have also tried to set the ToolTipManager ContentScrolling to "Both" instead of "Auto". Again no, horizontal scrollbar. For the time being, I can set the image width to 100%, so that the entire image width is seen in the tooltip. However, this will obviously make it so the image doesn't appear as it actually is, but rather as a "thumbnail" of sorts. Any idea why I can't get the horizontal scrollbar to show up?
<telerik:GridTemplateColumn UniqueName="ExamplePriceArea" ReadOnly="True" HeaderText="ExamplePrice">     <ItemTemplate>         <asp:Label ID="PriceLabel" runat="server" Text='<%# Eval("Price", "{0:C}") %>'></asp:Label>     </ItemTemplate> </telerik:GridTemplateColumn>getCellByColumnUniqueName fails because the cell doesn't exist.
surely this is a fairly common requirement.
5. In the debugger on the client, I can see that the width of the asp:checkbox is set to 0.  I tried manually changing the width in the debugger - it seemed to work but when I rechecked the width, it was still 0. 
The HTML sent to the browser for the two columns is the following:
<td style="width:80px;">   <input id="RadGrid1_ctl00_ctl04_ctl00" type="checkbox" name="RadGrid1$ctl00$ctl04$ctl00" onclick="SelectDeselectRow(0, this);" /> </td> <td style="width:80px;">   <span style="display:inline-block;width:50px;">     <input id="RadGrid1_ctl00_ctl04_chkSelected_2" type="checkbox" name="RadGrid1$ctl00$ctl04$chkSelected_2" />   </span>   <input name="RadGrid1$ctl00$ctl04$txtSelected_2" type="text" value="1" id="RadGrid1_ctl00_ctl04_txtSelected_2" onclick="SelectDeselectRow_2(0);" style="width:30px;" /> </td> The best idea I have on what is happening is that there a script (generated by the RadGrid or by ASP.Net) that runs after the page is loaded that sets the width to 0, causing the checkbox to not be visible.  And that this script only runs in IE8.  I have looked at the script at the end of the page (which I believe is where the registered scripts go) and do not see anything that looks suspicious.
Anyone have any ideas on why the checkboxes do not display?
Thanks,
John
Hi,
I am using grid inside combobox. Grid has the grouping and the pager. The scenario is when user selects the item of the group the selected item value is set, the combobox is collapsed, and the user is redirected to the specific places. However, when the user clicks on the group header or anywhere on the pager, the action must be completely ignored. Currently the combobox is collapsed with the empty selected value. Could you please help me to achieve the desire behavior?
Thank you, 
Tatiana
P.S. I am using v. 2009 Q3