Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
84 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
313 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
114 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
161 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
300 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
207 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
490 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
534 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
5 answers
303 views
When trying to assign a string with apostrophe to chart series name will cause chart to break.

I get this error when I view firebug console
SyntaxError: missing } after property list
series: [{color: 'Red',name: 'Welch's 64 oz Juice 2012',tooltip :{visible :true}...
Teleri...85f9819 (line 7458, col 36)


Thanks
willk
Top achievements
Rank 1
 answered on 22 Jul 2015
7 answers
92 views
We haven't come to a conclusion on this but it does seem to be a pattern we are seeing. When we use a RadBarCode (Code 128B) on an IE8 browser the bar code displays properly. But when the user prints the page (window.print) the first bar gets consistently dropped from the print but the rest of the bars are correct. Have you all seen this? In IE9 this is not happening at all.
Beco
Top achievements
Rank 1
 answered on 22 Jul 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
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?