telerik

Kendo-schedule setting weekstart to monday and setting culture

牧云@^-^@ 提交于 2019-12-12 03:15:44
问题 I am evaluating kendo-ui and i would like to configure the views views: [{type: "week", ...}, { type: "workweek", ...}, { type: "month", ...}] of kendo-ui scheduler to always start with monday. I found Q: Setting first day of week to Monday but is has no accepted answers and offered solutions did not work for me. Trying to set workWeekStart So after trying several things out i ended up with: $("#scheduler2").kendoScheduler({ date: new Date("2014/12/1"), allDayEventTemplate: $("#event-template

How can I force VS2010 to stop using an outdated plugin?

白昼怎懂夜的黑 提交于 2019-12-12 03:03:01
问题 When I close a Telerik "RadControlsWebsite" project in VS2010, I get, " This plugin is intended for older versions of Visual Studio. Please use Team Explorer. " Then, when I dismiss that dialog, I see, " There was a failure while initializing the Team Foundation Server MSSCCI Provider source control provider. You cannot use this provider to perform source control operations. " Although I do have TFS, I didn't bind this project to it. So what outdated plugin is it trying to use, why is it

Telerik WebAii Framework - How to change focus to newy opened page/window

回眸只為那壹抹淺笑 提交于 2019-12-12 02:53:56
问题 Testing using WebAii Framewok - I am currently stuck at a point where I'm not able to determine which window my code is focused on. The code opens a page lest say A, clicks on a link which then opens a new child window, call it B. How do I access page/window B? How do I click a link on page B? Your help is much apprciated. Thanks, dot net newbie 回答1: You can connect to a new window by using the call Manager.WaitForNewBrowserConnect() followed by Manager.ActiveBrowser.WaitUntilReady(). The

Send RadFlowDocument as PDF to user

半世苍凉 提交于 2019-12-12 02:39:50
问题 I'm using VS 2013, VB.Net, and Telerik 2016 Q1 in an MVC application. I'm using the Telerik RadFlowDocument to create a report, and send it to the user as a pdf. I have successfully created the report and saved it locally. My issue is when I try to convert it to a memory stream and send it back to the user, the user is never given the option to download the report. I have a button that starts the process via ajax: function supervisorPDF() { $.ajax({ url: '@Url.Action(

Printing from a Telerik Silverlight report automatically

二次信任 提交于 2019-12-12 02:36:54
问题 I am trying to trigger a Telerik report to print once it has been rendered using either the native Silverlight printing ability or the integration with Adobe Acrobat. In my searches I have found this forum post - http://www.telerik.com/community/forums/reporting/telerik-reporting/reporting-parameters-first-time-not-applied-when-usenativeprinting-false.aspx Which seems to describe how to do it, but when I try this approach, using the ReportServiceClient RenderAndCacheCompleted event, I get a

Problems with rendering a templated asp.net mvc telerik grid

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-12 02:36:38
问题 I have a problem with rendering a mvc telerik template grid control. Every thing seems fine but I have this error: Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: CS1002: ; expected Description: An error occurred during the compilation of a resource required to service this request. Please review the

Check all CheckBoxes in Telerik nested Grid in C#

 ̄綄美尐妖づ 提交于 2019-12-12 02:36:19
问题 Below is my code for nested grid of telerik: <telerik:RadGrid runat="server" ID="OrdersGrid" ShowFooter="True" AllowSorting="True" EnableLinqExpressions="false" GridLines="None" OnInsertCommand="OrdersGrid_InsertCommand" OnItemCommand="OrdersGrid_ItemCommand" OnItemDataBound="OrdersGrid_ItemDataBound" Width="100%" HeaderStyle-CssClass="gridHeader" OnItemCreated="OrdersGrid_ItemCreated"> <ClientSettings> <Scrolling AllowScroll="True" UseStaticHeaders="True" /> </ClientSettings>

Multi-language telerik windows forms

ぃ、小莉子 提交于 2019-12-12 01:59:49
问题 I have a full windows application made by Telerik with Ribbons and I want to make it Multi language interface (English and Arabic) I set the localizable property to true and changed the interface for each language.... And created a method that loops on the controls in the form and Apply the resources with the selected language The problem is that I can't find a generic method to loop on the Telerik controls to apply the resources for each Rad Control Please help Or if there is another way to

How to use RadDateInput for time in asp.net?

不想你离开。 提交于 2019-12-12 01:43:07
问题 How to use RadDataInput by time formated in asp.net? I use this code , but when i get Text of control , get me date and time. I want get time only <telerik:RadDateInput ID="RadDateInput1" DateFormat="HH:mm" runat="server" > </telerik:RadDateInput> 回答1: Try this code , string _time = RadDateInput1.SelectedDate.Value.ToShortTimeString(); 来源: https://stackoverflow.com/questions/21379134/how-to-use-raddateinput-for-time-in-asp-net

Accessing RadComboBox in codebehind from a RadGrid

百般思念 提交于 2019-12-12 01:33:15
问题 I´m having trouble grabbing RadComboBox when editing inline from a RadGrid. When I try to find the correct control through this GridEditableItem I always receive null. Can anyone throw me some pointers in how to access the RadCombobox from my code below? My ascx.cs file: <telerik:RadGrid runat="server" ID="grid_AccessRecords" AllowPaging="True" AllowSorting="True" Visible="False" Width="100%" PageSize="25" OnItemCommand="AccessRecordsGridOnItemCommand" OnNeedDataSource=