Unplanned
Last Updated: 17 Jan 2018 13:11 by ADMIN
ADMIN
Vessy
Created on: 17 Jan 2018 12:51
Category: Notification
Type: Bug Report
1
The content of RadNotification overflows its the content area in Material
Adding big text content in the Notification's Text property overflows the height of the controls wrapper:
https://www.screencast.com/t/bQ2OQ2o4DnG

A possible workaround is to set the height of the content wrapper manually:
        div.rnContentWrapper {
            height: 95px !important;
        }


Steps to reproduce:
        <telerik:RadNotification ID="RNRappel" runat="server" Width="500px" Height="150px" EnableViewState="false" AutoCloseDelay="0" RenderMode="Lightweight"
            CloseButtonToolTip="Fermer" ContentScrolling="Auto" VisibleOnPageLoad="true" Position="Center" ContentIcon="warning">
        </telerik:RadNotification>

CS:
    protected void Page_Load(object sender, EventArgs e)
    {
        RNRappel.Text = "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.";
    }

0 comments