Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
107 views
Can anyone please tell me how I can increase the contrast of the background colors on the alternating rows in the grid?  I have tried different skins.
Mark
Top achievements
Rank 1
 answered on 25 Nov 2013
3 answers
247 views

Hi,

I know that the RadFileExplorer registers its own RadWindowManager and RadWindows. I have a custom Css that I use to override certain styles in my Main RadWindowManager. But I have no way (or no idea how) to add my custom class to the RadWindow that the FileExplorer opens, so, the window looks out-of-style with the rest of my site.

I *could* modify my custom css to work modify all windows with a specific skin, but I really don't want to do that.

Is there a way I can do that?

Its needs to be something like this

<div class="RadWindow RadWindow_Silk rwNormalWindow rwTransparentWindow my-custom-class" ...

Thanks

Vessy
Telerik team
 answered on 25 Nov 2013
7 answers
120 views

Hi

I have a RadEditor, a few buttons, and a checkboxlist on a page.

When the buttons are clicked the checkboxlists are being updated with AJAX, this works fine.

But... the RadEditor content is being cleared. It looks like its being reloaded. There is a textbox on the page and the content of this control is retained. The RadEditor is not in the AJAX settings.

This is my page code:

<%@ Page Title="" Language="VB" MasterPageFile="~/MasterPages/Display2.master" AutoEventWireup="false" CodeFile="Mailshot.aspx.vb" Inherits="Admin_Mailshot" MaintainScrollPositionOnPostback="false"%>
<%@ Register src="../Controls/AdminMenu.ascx" tagname="AdminMenu" tagprefix="uc1" %>
 
<asp:Content ID="Content1" ContentPlaceHolderID="cphLeft" Runat="Server">
 
    <telerik:RadAjaxLoadingPanel ID="LoadingPanel" runat="Server" BackgroundPosition="Center" BackgroundTransparency="50"><img alt="Loading..." src="../App_Themes/Images/ajax-loader.gif"/></telerik:RadAjaxLoadingPanel>
 
    <asp:HiddenField ID="hdnCommitte" runat="server" />
 
         <telerik:RadAjaxManager ID="AjaxManager" runat="server" UpdatePanelsRenderMode="Inline">
             <AjaxSettings>
                 <telerik:AjaxSetting AjaxControlID="btnSend">
                     <UpdatedControls>
                         <telerik:AjaxUpdatedControl ControlID="lblHeading"  LoadingPanelID="LoadingPanel"/>
                         <telerik:AjaxUpdatedControl ControlID="pnlMailShot"  LoadingPanelID="LoadingPanel" />
                         <telerik:AjaxUpdatedControl ControlID="pnlReceipt" LoadingPanelID="LoadingPanel" />
                     </UpdatedControls>
                 </telerik:AjaxSetting>
                 <telerik:AjaxSetting AjaxControlID="btnSelectAll">
                     <UpdatedControls>
                         <telerik:AjaxUpdatedControl ControlID="clbMembers" UpdatePanelCssClass="" />
                     </UpdatedControls>
                 </telerik:AjaxSetting>
                 <telerik:AjaxSetting AjaxControlID="btnSelectCommittee">
                     <UpdatedControls>
                         <telerik:AjaxUpdatedControl ControlID="clbMembers" UpdatePanelCssClass="" />
                     </UpdatedControls>
                 </telerik:AjaxSetting>
                 <telerik:AjaxSetting AjaxControlID="btnSelectClear">
                     <UpdatedControls>
                         <telerik:AjaxUpdatedControl ControlID="clbMembers" />
                     </UpdatedControls>
                 </telerik:AjaxSetting>
             </AjaxSettings>
 
        </telerik:RadAjaxManager>
 
    <div class="left">
        <div class="content">
 
            <h1><asp:Label id="lblHeading" runat="server" Text="Mailshot"></asp:Label></h1>
            <asp:Panel  id="pnlMailShot" runat="server">
                <table width="100%" cellpadding="2" cellspacing="0">
                    <tr>
                        <td>
                            <table  width="100%"  cellpadding="4" cellspacing="0">
                                <tr>
                                    <td>Subject:</td>
                                    <td>
                                        <asp:TextBox ID="txtSubject" runat="server" CssClass="TextBoxDecorator" Width="280px"></asp:TextBox>
                                        <asp:RequiredFieldValidator ID="rfvSubject" runat="server" ControlToValidate="txtSubject" ><img src="../App_Themes/Images/Missing_10.gif" alt="Missing Field"/></asp:RequiredFieldValidator>
                                    </td>
                                    <td rowspan="2">
                                        <telerik:RadButton ID="btnSend"  Text="Send" runat="server" EnableEmbeddedSkins="true" Skin="Sunset">
                                            <Icon PrimaryIconUrl="../App_Themes/Images/Refresh_16.png"/>
                                        </telerik:RadButton>
                                        <telerik:RadButton ID="btnClear"  Text="Clear" runat="server" EnableEmbeddedSkins="true" Skin="Sunset" CausesValidation="false">
                                            <Icon PrimaryIconUrl="../App_Themes/Images/Refresh_16.png"/>
                                        </telerik:RadButton>
                                    </td>
                                </tr>
                                <tr>
                                    <td>From:</td>
                                    <td><asp:Label id="lblFrom" runat="server"></asp:Label></td>
                                </tr>
                            </table>
                        </td>
                    </tr>
                    <tr>
                        <td>
                            <telerik:RadEditor ID="rteMailshot" runat="server" EditModes="All"  Height="250px"  ToolsFile="~/ToolsFile.xml" Skin="Office2010Blue" Width="99.7%" CssClass="editor" ToolTip="" AutoResizeHeight="true">
                                <Content></Content>
                                <CssFiles>
                                   <telerik:EditorCssFile Value="~/App_Themes/Default/Editor.css" />
                                </CssFiles>
                                <Languages>
                                    <telerik:SpellCheckerLanguage Code="en-GB"/>
                                </Languages>
                                <SpellCheckSettings DictionaryLanguage="en-GB" />
                            </telerik:RadEditor>
                        </td>
                    </tr>
                </table>
 
                 <br />
 
                <div style="padding-left:5px;">
                    <telerik:RadButton ID="btnSelectAll"  Text="Select All" runat="server" EnableEmbeddedSkins="true" Skin="Sunset" CausesValidation="false">
                        <Icon PrimaryIconUrl="../App_Themes/Images/Refresh_16.png"/>
                    </telerik:RadButton>
                                 
                    <telerik:RadButton ID="btnSelectCommittee"  Text="Select Committee" runat="server" EnableEmbeddedSkins="true" Skin="Sunset" CausesValidation="false">
                        <Icon PrimaryIconUrl="../App_Themes/Images/Refresh_16.png"/>
                    </telerik:RadButton>
 
                    <telerik:RadButton ID="btnSelectClear"  Text="Clear" runat="server" EnableEmbeddedSkins="true" Skin="Sunset" CausesValidation="false">
                        <Icon PrimaryIconUrl="../App_Themes/Images/Refresh_16.png"/>
                    </telerik:RadButton>
                </div>
 
                <asp:CheckBoxList id="clbMembers"  runat="server" RepeatColumns="5" RepeatDirection="Vertical" CellPadding="6" ClientIDMode="Static"></asp:CheckBoxList>
            </asp:Panel>
 
            <asp:Panel  id="pnlReceipt" runat="server" Visible="false">
 
                <p>The following mailshot was sent to <asp:Label ID="lblSentCount" runat="server" ></asp:Label></p>
 
                <p><asp:Label ID="lblMailshot" runat="server" ></asp:Label></p>
 
                <asp:Panel ID ="pnlNoEmail" runat="server" >
                    <h2>Members with no email:</h2>
                    <asp:CheckBoxList id="clbNoEmail"  runat="server" RepeatColumns="5" RepeatDirection="Vertical" CellPadding="6" ClientIDMode="Static" enabled="false"></asp:CheckBoxList>
                </asp:Panel>
 
            </asp:Panel>
 
 
        </div>
    </div>
 
</asp:Content>
 
<asp:Content ID="Content2" ContentPlaceHolderID="cphRight" Runat="Server">
    <div class="right">
        <div class="content">
            <uc1:AdminMenu ID="AdminMenu1" runat="server" selectedItem="Mailshot.aspx" />
        </div>
    </div>
</asp:Content>

Andy

Mads
Top achievements
Rank 1
 answered on 25 Nov 2013
1 answer
400 views
Hi,

 I am getting the following telerik configuration error on my page:

'~/Telerik.Web.UI.WebResource.axd' is missing in web.config. RadScriptManager requires a HttpHandler registration in web.config. Please, use the control Smart Tag to add the handler automatically, or see the help for more information: Controls > RadScriptManager


I am using windowns 2008 and IIS 7.5.

I googled for this error,most of the sites suggested to place the config settings under the <httpHandlers> in <system.web> and  <handlers> in <system.webservices>. I checked my config file where I already have the config settings in <handlers> and <httpHandlers>. 

If anyone have the solution for this to solve, please share it.

Thanks,
Karthik 

  
Kate
Telerik team
 answered on 25 Nov 2013
1 answer
178 views
I have a RadDockZone with multiple Raddocks.  Each Raddock contains a multi-page RadGrid with an Export to Excel button inside the CommandItemTemplate.  Lets say I have 3 Raddocks, raddock1 being at the very top of RadDockZone.  When I try to export the bottom 2, the radgrid is expanded and all records are displayed.  It removes the paging and does not export.

If I only have one raddock inside the raddockzone, it exports the radgrid just fine.

anyone ever ran into the same issue?
Slav
Telerik team
 answered on 25 Nov 2013
1 answer
100 views
I'm deploying some web user controls containing Rad Controls to a web site that has some very generic styles defined. I keep running into the problem of the site styles applying to elements within Rad Controls and causing them to visually appear incorrectly. For instance, The site has the style:

a:hover {
    margin: 0;
    padding: 0;
    font-weight: normal;   
}

(It actually has other styles that make things way worse, but this is a good, simple example.) This style is messing up the tab control tabs which contain an <a>. When I hover over a tab, the tab's text shifts left and the left tab border disappears. There are other styles defined for the site that apply to <ul> and <li> generically that mess up the tab control as well. I do have access to the site styles, but I don't know where they are all used which means I don't know what I'd be breaking if I change one. Is there a better way to make sure the Rad Controls styles are not interfered with? I kind of thought the control would manage providing all of the styles needed to ensure it's look and feel.
Magdalena
Telerik team
 answered on 25 Nov 2013
1 answer
207 views
Telerik Rad grid does not render the correct HTML to generate pdf. 

issues found
1] Generated html by telerik has few columns missing 
2] Many unwanted columns list, Filter options are visible in HTML for ABC pdf

Daniel
Telerik team
 answered on 25 Nov 2013
1 answer
158 views

Here's my code:

If e.CommandName <> "Preview" Then Exit Sub
 
grdItem = CType(e.Item, GridDataItem)
strFile = grdItem.OwnerTableView.DataKeyValues(grdItem.ItemIndex)("preview_file").ToString

This handles a hyperlink button in the RadGrid, and it works fine. But if you try to apply a filter to the grid, you get the error:

Unable to cast object of type 'Telerik.Web.UI.GridFilteringItem' to type 'Telerik.Web.UI.GridDataItem'.

How do I get around this?

Kostadin
Telerik team
 answered on 25 Nov 2013
1 answer
66 views
 RadScheduler : Can i get Month View according to Attached Image?

All the weeks of the month can be show like that.

Regards,
Danish

  
Plamen
Telerik team
 answered on 25 Nov 2013
3 answers
498 views

I am trying to get the timeline view to be limited to the "day hours". I only want it to display one day (I have disabled the navigation pane), and only the regular working hours. I am trying to replicate the "compare schedules" feature in Outlook. Another option would be if the timeline view would by default be scrolled to the start of the day.

I have tried to set the DayStartTime and WorkDayStartTime both on the tag and through code in Page Load. It always just shows 12:00AM-11:30PM.

How can I get this done? Here is the code I am using:

        RadScheduler1.SelectedView = SchedulerViewType.TimelineView 
        RadScheduler1.TimelineView.SlotDuration = New TimeSpan(0, 30, 0) 
        RadScheduler1.TimelineView.NumberOfSlots = 48 
        RadScheduler1.TimelineView.GroupingDirection = GroupingDirection.Vertical 
        RadScheduler1.ShowViewTabs = False 
        RadScheduler1.ShowNavigationPane = False 
        RadScheduler1.ReadOnly = True 
        RadScheduler1.OverflowBehavior = OverflowBehavior.Expand 
        RadScheduler1.ColumnWidth = 80 
        RadScheduler1.DayStartTime = New TimeSpan(8, 0, 0) 
        RadScheduler1.DayEndTime = New TimeSpan(18, 0, 0) 
        RadScheduler1.WorkDayStartTime = New TimeSpan(8, 0, 0) 
        RadScheduler1.WorkDayEndTime = New TimeSpan(18, 0, 0) 
        RadScheduler1.TimelineView.ColumnHeaderDateFormat = "h:mm" 
 

Thanks for your help.






Kate
Telerik team
 answered on 25 Nov 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?