Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
231 views

Good morning,

I am using radScheduler to schedule appointments for employees. Employees have different work schedules each day so I am highlighting their available slots using TimeSlotCreated. Everything works perfectly except for when I try to edit an appointment, all the highlighting disappears. Attached are some images of the process. You can see Jim Bergland is available from 9:00AM to 5:00PM and the light blue background is displaying for him but as soon as I try to edit any of the two existing appointments the background color in the slots is removed.

I know this fact about TimeSlotCreated: "The TimeSlotCreated event is not fired after the advanced edit form is opened (it fires before that, and rendering the advanced form renders the scheduler anew). Thus, customizations for the time slots made in the handler are not rendered while the advanced edit form is visible."

Is there any other way to achieve the time slot shading during the appointment edits?

 

 

Peter Milchev
Telerik team
 answered on 26 Jul 2019
1 answer
124 views

Not sure if this is a RadWindow or RagGrid issue, but issue is affecting the RagGrid, however this issue is limited to viewing the page in Internet Explorer only (Chrome and Edge work). 

When I open a URL with a RadGrid in a RadWindow, the embedded icons (add, refresh, edit, delete, etc.) are not visible.  If I open the exact URL directly in the browser I see the icons.  I understand these images are actually fonts and there may be issues with these fonts in IE, but this only happens when the URL is displayed in a RadWindow.

Is there a solution or work-around?

Rumen
Telerik team
 answered on 26 Jul 2019
1 answer
118 views

When I enable lightweight render globally within my app, it appears my page CSS which controls layout seems to be ignored.

How do I force the controls to use the CssClass settings I have set? 

Rumen
Telerik team
 answered on 26 Jul 2019
8 answers
409 views

Hi

 Im working with the radpivotgrid, i change some column names in the pivot in the CellDataBound event (like Kostadin explains in this example http://www.telerik.com/forums/edit-grandtotalcolumns-in-radpivotgrid) and works fine, the problem is when i try to export to an Excel file, all the data is exported fine, except the column names that i edited, the column names in the exported excel file dont have the changes i maded, and other thing, there is a way to hide the columns of a PivotGridAggregateField and show only the grand total of this same field?

Eyup
Telerik team
 answered on 26 Jul 2019
5 answers
159 views
Hi, is there any way I can freeze columns in radtreelist with vertical and horizontal scrollbars?
I know there is no option for that, but is it possible from client-side?
Thanks
Peter Milchev
Telerik team
 answered on 26 Jul 2019
14 answers
1.0K+ views
I have the lastest edition of Radcontrols installed here.  However I am developing for Sitefinity 3.7 SP1.  I place a Radcombo box into a user control and populated the control using linqtosql.  Then added a search button to search the database. 

<asp:LinqDataSource ID="LinqDataSource2" runat="server"   
    ContextTypeName="Offices.BillingDataClassesDataContext" OrderBy="Name"   
    TableName="sc_Tribunals" Select="Distinct">  
</asp:LinqDataSource> 
<telerik:RadComboBox ID="rcbSearchBox" Runat="server"   
    DataSourceID="LinqDataSource2" DataTextField="Name" DataValueField="OfficeId"   
    MarkFirstMatch="True" AllowCustomText="True">  
</telerik:RadComboBox> 
<asp:Button ID="Button1" runat="server" onclick="Button1_Click"   
    Text="Search By City" /> 


The RadComboxBox appears work find with small amount of items lets say 10 items loaded.    The OfficeId value type is a GUID, and the DataTextField is a just a string contain city names.

If I select an item near the bottom of the dropdown then click anywhere on the page, the selected item drops and the RadCombo box selects an item near the top of the list.  I found this to be the case with the lastest version of Firefox and IE8/7. 

Am I missing something.
VIRUX
Top achievements
Rank 1
 answered on 26 Jul 2019
2 answers
311 views
I have a TreeView with checkboxes turned on and each child node has a datavalue and a textbox.  When a user types in the textbox, each time she hits the spacebar, the checkbox on that node and each parent node.  I need to disable this behavior.  Ideally, I would just disable the toggling to the checkboxes on spacebar.  Does anybody have any idea how to accomplish this?
Quinn
Top achievements
Rank 1
 answered on 25 Jul 2019
1 answer
210 views

Hi,

i am trying to represent year/month and year/quarter in the chart as in the attached pictures. Standard features in excel amongst other, but I can't find a solution for it in Telerik. 

 

Terje

Vessy
Telerik team
 answered on 24 Jul 2019
1 answer
93 views

Hello,

RadEditor controls toolbar (Bold, Italic, etc) is not working on the latest version of Firefox 68.0.1 (64-bit), i tried fixing the issue using ".onParentNodeChanged()" solution that i found on the forum but with no result.

<asp:Content runat="server" ContentPlaceHolderID="MainContent">
    <telerik:RadWindowManager ID="RadWindowManager1" runat="server" EnableShadow="True" Skin="IP" EnableEmbeddedSkins="false" VisibleTitlebar="true" VisibleStatusbar="false" AutoSize ="true">
                <Windows>
                    <telerik:RadWindow ID="rwdAddActionTaken" runat="server" Title="Add Response" Modal="true" Skin="IP" EnableEmbeddedSkins="false" 
                        VisibleTitlebar="true" ShowContentDuringLoad="false" VisibleStatusbar="false" Behaviors="Close" AutoSize="true" Width="700px" Height="550px"
                        OnClientShow="fixEditor">
                        <ContentTemplate>
                            <telerik:RadEditor RenderMode="Lightweight" runat="server" ID="RadEditor1" ContentAreaMode="Div" SkinID="DefaultSetOfTools"
                Height="675px">
                                        <Tools>
                                                    <telerik:EditorToolGroup Tag="Top">
                                                        <telerik:EditorTool Name="Bold" />
                                                        <telerik:EditorTool Name="Italic" />
                                                        <telerik:EditorTool Name="Underline" />
                                                        <telerik:EditorTool Name="StrikeThrough" />
                                                        <telerik:EditorSeparator Visible="true" />
                                                        <telerik:EditorTool Name="InsertOrderedList" />
                                                        <telerik:EditorTool Name="InsertUnorderedList" />
                                                        <telerik:EditorTool Name="Outdent" />
                                                        <telerik:EditorTool Name="Indent" />
                                                        <telerik:EditorSeparator Visible="true" />
                                                        <telerik:EditorTool Name="FontName" />
                                                        <telerik:EditorTool Name="RealFontSize" />
                                                        <telerik:EditorTool Name="ForeColor" />
                                                        <telerik:EditorTool Name="BackColor" />
                                                        <telerik:EditorSeparator Visible="true" />
                                                        <telerik:EditorTool Name="Undo"/>
                                                        <telerik:EditorTool Name="Redo" />
                                                        <telerik:EditorSeparator Visible="true" />
                                                        <telerik:EditorTool Name="Cut" />
                                                        <telerik:EditorTool Name="Copy" />
                                                        <telerik:EditorTool Name="PasteAsHtml" />
                                                        <telerik:EditorTool Name="PastePlainText" />
                                                    </telerik:EditorToolGroup>
                                                    <telerik:EditorToolGroup Tag="Middle">
                                                        <telerik:EditorTool Name="JustifyLeft" />
                                                        <telerik:EditorTool Name="JustifyCenter" />
                                                        <telerik:EditorTool Name="JustifyRight" />
                                                        <telerik:EditorSeparator Visible="true" />
                                                        <telerik:EditorTool Name="InsertLink" />
                                                    </telerik:EditorToolGroup>
                                                </Tools>                                   
                                            </telerik:RadEditor>  
                            </ContentTemplate>
                    </telerik:RadWindow>
                    </Windows>
            </telerik:RadWindowManager>
    <script type="text/javascript">
    function fixEditor()
    {
        $find("<%=RadEditor1.ClientID %>").onParentNodeChanged();
    }
</script>
</asp:Content>
Rumen
Telerik team
 answered on 24 Jul 2019
11 answers
993 views
Hi,
    I have several boundcolumn in my radgrid. I want to access one of the cell and assign hyperlink dynamically. How do I do this. Can anybody help. thanks in advance
Ryan
Eyup
Telerik team
 answered on 24 Jul 2019
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?