Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
691 views

The latest release introduces what appears to be a bug with RadButton. When ButtonType is set to LinkButton and target=_blank, the button will open two new tabs in browser instead of one. This behavior is easily reproduced with the following:

 <telerik:RadButton ID="radbtnVehicleList" runat="server" Text="Google" Skin="MetroTouch" Width="200px" NavigateUrl="http://google.com" ButtonType="LinkButton" AutoPostBack="false" Target="_blank" ></telerik:RadButton>

 

Is there a work around?

Charles

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

Hello,

Please try this to understand :

1. Go to the Telerik demo here :

http://demos.telerik.com/aspnet-ajax/fileexplorer/examples/server-sideapi/initialpathandpaging/defaultcs.aspx

2. "All Images" folder is selected by default. Increase the slider to show the last page (the third).

3. Change folder and come back to previous "All Images"

=> You can see that last page is always shown but slider index is 1 (instead of 3)...

How to fix it please ?

Vessy
Telerik team
 answered on 22 Jul 2015
2 answers
121 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
87 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
68 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
276 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
97 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
137 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
273 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
180 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
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?