This is a migrated thread and some comments may be shown as answers.

RadColorPicker palette is cutted by the RadPanelBar

2 Answers 20 Views
PanelBar
This is a migrated thread and some comments may be shown as answers.
Gustavo
Top achievements
Rank 1
Gustavo asked on 16 Sep 2014, 08:36 PM
Hi,

I'm trying to add a RadColorPicker inside a RadPanelBar, but the color palette is cutted by the panel (see the image attached).
Here is my code:

<telerik:RadPanelBar runat="server" ID="RadPanelBar1" Height="300" ExpandMode="FullExpandedItem">
 <Items>
  <telerik:RadPanelItem Text="Ranges">
   <ContentTemplate>
    <asp:Panel id="pnlRangesPanel" runat="server" groupingtext="Limits">
     <table>
      <tr>
       <td>Max: </td>
       <td><asp:TextBox id="tbRangeMax" runat="server" /></td>
      </tr>
      <tr>
       <td>Min: </td>
       <td><asp:TextBox id="tbRangeMin" runat="server" /></td>
      </tr>
      <tr>
       <td>Color:</td>
       <td><telerik:RadColorPicker ID="radColorPicker1" runat="server" ShowIcon="true" ShowEmptyColor="false" /></td>
      </tr>
     </table>
    </asp:Panel>
   </ContentTemplate>
  </telerik:RadPanelItem>
 </Items>
</telerik:RadPanelBar>

It is possible the color palette overlaps the panel?

Thanks!

2 Answers, 1 is accepted

Sort by
0
Accepted
Magdalena
Telerik team
answered on 19 Sep 2014, 08:22 AM
Hi Gustavo,

Please, try to apply the following to resolve the issue:
.RadPanelBar,
.rpTemplate,
.rpSlide,
.rpItem {
    overflow: visible !important;
}


Regards,
Magdalena
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
0
Gustavo
Top achievements
Rank 1
answered on 19 Sep 2014, 04:48 PM
Thanks Magdalena!
Tags
PanelBar
Asked by
Gustavo
Top achievements
Rank 1
Answers by
Magdalena
Telerik team
Gustavo
Top achievements
Rank 1
Share this question
or