Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
127 views

Hi guys,

I am having a RadMenu as navigation bar for my pages, and I want it to push down contents below it down whenever it expand.

I tried to modify style css, but then it becomes clunky and not work as properly. Is there an option or a way to do it with RadMenu?

Anh
Top achievements
Rank 1
 answered on 22 Jul 2015
1 answer
92 views

Hi Team,

 

We are using the ReportViewer for process one of our Telerik Report ,But it seems to be taking more time to Display or generate PDF Report file.Attached  analysis details here to show the Time taken to prepare the Report PDF file vs the no of page.

 

Kindly find the attached Report Design file and suggest the why to reduce the report Processing time.Here no option to attach the Report design page

 

Kindly Let us know if you need more details

 

Tha

Sarath

  

Stef
Telerik team
 answered on 22 Jul 2015
2 answers
75 views

Hello,

I have a problem with a radpivotgrid binded to a OLAP Cube using ADOMD.

in my example, a rowField displays cities and when I want to filter values, the list of possible values in the filter window is limited from letter A to F, as you can see in the attached file.

many values are missing in the filter window.

 

is there a limit for the displayed values in the filter window? if yes, is it settable?

thanks.

Maria Ilieva
Telerik team
 answered on 22 Jul 2015
13 answers
291 views

 

Hello,

Recently it seems the RadScheduler ExportToPDF() function stopped working for us.  Now when it runs it exports a PDF that contains a black image. Attached is an example.  I generated the example by setting up Teleriks "Live Demos" sample application on the server, going to the scheduler, functionality and then exporting a PDF.  This behavior has been noticed on two web servers so far (2012 and 2008R2).  The export runs fine when the applications are run in Visual Studio 2013, and so far I have not noticed any other issues with Telerik Live Demos or controls.  We are using Q1 2015 SP1

 Thank You

PS: I tried to attach the file but it was blocked with "The selected file(s) cannot be attached because it may exceed the maximum attachment size (2 MB) or is from not allowed type (allowed: .gif, .jpg, .jpeg, .png).".  The file is a 9 KB PDF, I can e-mail it if needed

 

Bozhidar
Telerik team
 answered on 22 Jul 2015
1 answer
106 views

Hello

Is there any way to access custom attributes collection as an array from client side, so that we can loop through all the attributes?

Thanks
Aneliya Petkova
Telerik team
 answered on 22 Jul 2015
6 answers
147 views

Dears,

http://demos.telerik.com/aspnet-ajax/datepicker/functionality/validation/defaultcs.aspx 

When I try to use the above demo, and set start date as "7/9/2015" and End Date as "7/31/2015" I get the invalid message "The second date must be after the first one." while it should not appear. as I tested to set the end date to "7/30/2015" and it worked (Valid condition).

I think the problem is caused by the timeZone of my computer as it's set to "Egypt Standard Time"

can you please help.

 

 

Kostadin
Telerik team
 answered on 22 Jul 2015
5 answers
283 views
Is it possible to illustrate an employees schedule with daily shifts.  With night shift ?
For now RadScheduler.DayStartTime must be less than DayEndTime.

In this Example:
               Shift A  : 7:00 AM     3:00 PM
               Shift B :  3:00 PM   11:00 PM
               Shift C : 11:00 PM    7:00 AM

Shift C is not possible.  What is your suggestion ?
Ivan Danchev
Telerik team
 answered on 22 Jul 2015
3 answers
188 views
I'm using the pagelayout feature to make my rad grid responsive... but when I resize the browser, I'm able to see the pageLayout columns resizing but the radgrid remains with its default size.
this is the code I have... and I attached screen shots to describe what is happening 

ascx
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="CraigList.ascx.cs" Inherits="CraigListResponsive.CraigList" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
 
<telerik:RadPageLayout runat="server" ID="layoutCraigList" ShowGrid="true" GridType="Fluid">
    <Rows>
        <telerik:LayoutRow>
            <Content>
                <telerik:RadDropDownList runat="server" ID="craigListCategory"
                    DataTextField="CategoryName" DataValueField="CategoryId"
                    OnSelectedIndexChanged="CraigListCategorySelectedIndexChanged">
                </telerik:RadDropDownList>
            </Content>
        </telerik:LayoutRow>
        <telerik:LayoutRow>
            <Content>
                <telerik:RadCodeBlock ID="RadCodeBlockPopWindow" runat="server">
                    <script type="text/javascript">
                        var popUp;                       
                        function PopUpShowing(sender, eventArgs)
                        {
                            popUp = eventArgs.get_popUp();
                            var gridWidth = sender.get_element().offsetWidth;
                            var gridHeight = sender.get_element().offsetHeight;
                            var popUpWidth = popUp.style.width.substr(0, popUp.style.width.indexOf("px"));
                            var popUpHeight = popUp.style.height.substr(0, popUp.style.height.indexOf("px"));
                            popUp.style.left = ((gridWidth - popUpWidth) / 2 + sender.get_element().offsetLeft).toString() + "px";
                            popUp.style.top = ((gridHeight - popUpHeight) / 2 + sender.get_element().offsetTop).toString() + "px";
                        }
                    </script>
                </telerik:RadCodeBlock>
                <telerik:RadAjaxManager runat="server" ID="listAjaxManager">
                    <AjaxSettings>
                        <telerik:AjaxSetting AjaxControlID="craigListGrid">
                        </telerik:AjaxSetting>
                    </AjaxSettings>
                </telerik:RadAjaxManager>
                <telerik:RadGrid runat="server" ID="craigListGrid"
                    AllowPaging="true" ShowFooter="true"
                    AutoGenerateColumns="false"
                    OnPreRender="CraigListGridPreRender"
                    OnNeedDataSource="CraigListGridNeedDataSource"
                    OnUpdateCommand="CraigListGridSaveCommand"
                    OnInsertCommand="CraigListGridSaveCommand"
                    OnDeleteCommand="CraigListGridDeleteCommand"
                    OnItemCommand="CraigListGridItemCommand">
                    <MasterTableView CommandItemDisplay="Top"
                        DataKeyNames="ItemId" EditMode="PopUp">
                        <ColumnGroups>
                            <telerik:GridColumnGroup Name="Actions"
                                HeaderText="Actions"
                                HeaderStyle-HorizontalAlign="Center">
                            </telerik:GridColumnGroup>
                        </ColumnGroups>
                        <Columns>
                            <telerik:GridBoundColumn UniqueName="Title" DataField="Title"
                                HeaderText="Items Title">
                            </telerik:GridBoundColumn>
                            <telerik:GridEditCommandColumn UniqueName="EditCommandColumn" ColumnGroupName="Actions">
                            </telerik:GridEditCommandColumn>
                            <telerik:GridButtonColumn UniqueName="DeleteColumn" Text="Delete"
                                ColumnGroupName="Actions" CommandName="Delete">
                            </telerik:GridButtonColumn>                            
                        </Columns>                        
                        <EditFormSettings UserControlName="~/DesktopModules/CraigListResponsive/CraigListEdit.ascx" EditFormType="WebUserControl">
                            <PopUpSettings ScrollBars="Auto" Width="400" />
                            <EditColumn UniqueName="EditCommandColumn"></EditColumn>
                        </EditFormSettings>                       
                    </MasterTableView>
                    <ClientSettings>
                        <ClientEvents OnPopUpShowing="PopUpShowing" />
                        <Selecting AllowRowSelect="True"></Selecting>
                    </ClientSettings>
                </telerik:RadGrid>
            </Content>
        </telerik:LayoutRow>
    </Rows>
</telerik:RadPageLayout>

What i'm doing wrong? 

thanks 
Venelin
Telerik team
 answered on 22 Jul 2015
3 answers
471 views

 I had query regarding the Tool tip display in RadHtmlChart.I wanted to display 4 things on tooltip if my condtion of dropdown is All else it should show only single value.

For example, A user has 4 types of call i.e SMS,MMS,Voice,DataCharges on which they accounted for. My dropdown has 4 values(Data,voice,SMS,MMS,All).In All condition of dropdown it should display different multiline ToolTip else it should just display column value respectively.

And if the value contains 0 then multiline tooltip should specify that it is zero.For instance if (Total Usage:10 <br/>SMS:0<br/>MMS:5<br/>DATACharges:4<br/>Voice:1)

 I have done upto displaying the multiline tooltip but problem is coming when i should display one tooltip for individual dropdownvalue it repeats all other tooltip which was displaying the other data as undefined.

Attaching the images for close look.

 Thanks in advance.

Best Regards,

Shikhar

 

Danail Vasilev
Telerik team
 answered on 22 Jul 2015
3 answers
516 views

Sir.

Would anybody help me to Disable / Remove the SubMenu Item reference to VALUE. (AJAX RADMENU) using server script

I would be very grateful 

rama
Top achievements
Rank 1
 answered on 22 Jul 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?