Help me please...
picture see~~
Help me.. I sad..
3 Answers, 1 is accepted
I couldn't understand the issue from these screenshots. Please paste here some simple code and explain the issue you're experiencing.
Best wishes,
Yana
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.

I am facing the same issue what jaewung was facing.
The issue is that we are using CollapsiblePanelExtender in .aspx page to control the working of panel.
But in IE6 when the page is loaded, the items under the panel gets hidden. But when we click on the panel, it gets visible.
Here is the piece of code we are using:
<td class="advnsearch_gray">
<asp:Panel ID="pnllnkMainMailSub" runat="server" style="cursor: pointer;">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="width:5%" >
<asp:Image ID="image1" runat="server" ImageUrl="~/images/i_up.png" />
</td>
<td valign="middle" style="padding-left:5px">
<asp:LinkButton ID="lnkMainMailSub" runat="server" CssClass="advancedsearchboldtxt" Text="Search Records on Standard Fields"></asp:LinkButton>
</td>
</tr>
</table>
</asp:Panel>
</td>
</tr>
<
tr>
<td>
<asp:CollapsiblePanelExtender ID="CollapsiblePanelExtender1" runat="server"
TargetControlID="Panel1" CollapsedSize="0"
Collapsed="false" ExpandControlID="pnllnkMainMailSub" CollapseControlID="pnllnkMainMailSub"
AutoCollapse="false" AutoExpand="true" SuppressPostBack="true"
ScrollContents="false" ExpandDirection="Vertical" ImageControlID="image1"
ExpandedImage="~/Images/i_down.png" CollapsedImage="~/images/i_up.png">
</asp:CollapsiblePanelExtender>
<asp:Panel ID="Panel1" runat="server" Height="10px" CssClass="advancedsearchtxt">
<table width="100%" border="0" cellspacing="0" cellpadding="3" id="standardfields">
<tr>
<td width="50%">
Request Number:
</td>
<td>
<asp:TextBox ID="txtReqNumber" runat="server" class="width115" ></asp:TextBox>
</td>
</tr>
<tr>
<td width="50%">
Request Amount:
</td>
<td>
<asp:TextBox ID="txtAmount" runat="server" class="width115" ></asp:TextBox>
<asp:RegularExpressionValidator ID="regAmount" runat="server" ControlToValidate="txtAmount" ValidationExpression="<%$ Resources:RMSConnectRes, expForDecimalNumber %>" ErrorMessage="<%$ Resources:RMSConnectRes, msgNumeric %>" ></asp:RegularExpressionValidator>
<asp:ValidatorCalloutExtender ID="valAmount" runat="server" TargetControlID="regAmount" WarningIconImageUrl="~/images/i_alert.png" enabled="true"></asp:ValidatorCalloutExtender>
</td>
</tr>
<tr>
<td valign="middle">
Request Type:
</td>
<td>
<asp:DropDownList ID="ddlReqType" DataTextField="txt_DisplayName" DataValueField="int_RequestTypeId" runat="server" >
</asp:DropDownList>
</td>
</tr>
<tr>
<td>
Requestor Name:
</td>
<td>
<asp:DropDownList ID="ddlRequestorName" DataValueField="int_UserId" DataTextField="txt_FirstName" runat="server" >
</asp:DropDownList>
</td>
</tr>
<tr>
<td>
Office Location:
</td>
<td>
<asp:DropDownList ID="ddlLocation" DataValueField="int_SysDefinedFieldValuesID" DataTextField="Code" runat="server" >
</asp:DropDownList>
</td>
</tr>
<tr>
<td>
Status:
</td>
<td>
<asp:DropDownList ID="ddlStatus" DataValueField="int_CustomerStatusCodesId" DataTextField="txt_CustomerStatusCodeValue" runat="server" >
</asp:DropDownList>
</td>
</tr>
<tr>
<td>
Assigned Associate:
</td>
<td>
<asp:DropDownList ID="ddlAssignedAssociate" DataValueField="int_UserId" DataTextField="txt_FirstName" runat="server" >
</asp:DropDownList>
</td>
</tr>
<tr>
<td>
Request Date From:
</td>
<td>
<asp:TextBox ID="txtstReqDate" runat="server" class="width90" ></asp:TextBox>
<%
--<img src="images/i_cal.png" width="19" height="16" align="middle" title="Select Date" />--%>
<asp:ImageButton ID="imgCalFrom" runat="server" ImageUrl="~/images/Calendar_scheduleHS.png" CausesValidation="False" />
<asp:CalendarExtender ID="ccleFromDate" runat="server" TargetControlID="txtstReqDate" PopupButtonID="imgCalFrom" />
<asp:MaskedEditExtender ID="mskFromDate" runat="server" CultureName="en-US"
Mask
="99/99/9999" MaskType="Date" TargetControlID="txtstReqDate">
</asp:MaskedEditExtender>
<asp:CustomValidator ID="cvDateFrom" runat="server"
ControlToValidate="txtstReqDate" ForeColor="Red" CssClass="errmsg" Width="200px" Display="None"
ErrorMessage="<%$ Resources:RMSConnectRes, ErrMsgInvalidDate %>"
OnServerValidate="CheckDateFrom" />
<asp:ValidatorCalloutExtender ID="CustomValidator3_ValidatorCalloutExtender"
runat="server" Enabled="True" TargetControlID="cvDateFrom" WarningIconImageUrl="~/images/i_alert.png">
</asp:ValidatorCalloutExtender>
</td>
</tr>
<tr>
<td>
Request Date To:
</td>
<td>
<asp:TextBox ID="txttoReqDate" runat="server" class="width90" ></asp:TextBox>
<%
--<img src="images/i_cal.png" width="19" height="16" align="middle" title="Select Date" />--%>
<asp:ImageButton ID="imgBtnDateTo" runat="server" ImageUrl="~/images/Calendar_scheduleHS.png" CausesValidation="False" />
<asp:CalendarExtender ID="CalendarExtender2" runat="server" TargetControlID="txttoReqDate" PopupButtonID="imgBtnDateTo" />
<asp:MaskedEditExtender ID="MaskedEditExtender1" runat="server" CultureName="en-US"
Mask
="99/99/9999" MaskType="Date" TargetControlID="txttoReqDate">
</asp:MaskedEditExtender>
<asp:CustomValidator ID="CustomValidator1" runat="server"
ControlToValidate="txttoReqDate" ForeColor="Red" CssClass="errmsg" Width="200px" Display="None"
ErrorMessage="<%$ Resources:RMSConnectRes, ErrMsgInvalidDate %>"
OnServerValidate="CheckDateTo" />
<asp:ValidatorCalloutExtender ID="ValidatorCalloutExtender1"
runat="server" Enabled="True" TargetControlID="CustomValidator1" WarningIconImageUrl="~/images/i_alert.png">
</asp:ValidatorCalloutExtender>
<asp:CustomValidator ID="cvCheckDateForGreater" runat="server"
ControlToValidate="txttoReqDate" ForeColor="Red" CssClass="errmsg" Width="200px" Display="None"
ErrorMessage="<%$ Resources:RMSConnectRes, DateValidationMsg %>"
OnServerValidate="CheckDateForGreaterValue" />
<asp:ValidatorCalloutExtender ID="vceCheckForGreater"
runat="server" Enabled="True" TargetControlID="cvCheckDateForGreater" WarningIconImageUrl="~/images/i_alert.png">
</asp:ValidatorCalloutExtender>
</td>
</tr>
<tr>
<td colspan="2" class="advnsearch_gray" >
<asp:CheckBox ID="chkIncludeAF" runat="server" AutoPostBack="True" />
Include Additional Fields
</td>
</tr>
<tr>
<td colspan="2">
</td>
</tr>
</table>
</asp:Panel>
</td>
</tr>
Thanks in advance for any help

This forum is for RadPanelBar for ASP.NET AJAX, you should post your question in the asp.net forums.