telerik

Third party WPF controls: Devexpress vs Telerik [closed]

こ雲淡風輕ζ 提交于 2019-12-02 19:06:13
I would like to hear your opinion about the two control providers. To put it in a nutshell: I am building a classic LOB desktop application. The app will be created entirely in WPF. PRISM 4.0 will be used heavily. Whenever possible, I will try to follow MVVM pattern(it would be nice if the selected controls were designed to adopt it easily). Mainly I am interested in: Good data grid, which supports sorting, filtering, grouping, exporting, printing and works fine with a big amount of bound records(10k+) Combobox that supports filtering and auto-complete. Navigation bar Layout manager that is

Telerik Reporting over SSRS?

爱⌒轻易说出口 提交于 2019-12-02 15:07:17
Broad question is: Is there anything Telerik Reporting can do that SSRS (2005) cannot? Specifics: We're looking to migrate our current Reporting infrastructure from in-house ASP.NET + Crystal (VS Edition) to something else. Ignoring the cost factor (we have a Telerik license), is there any pros or cons to going with Telerik over SSRS? Key elements we need are: generate reports from a custom ASP.NET application schedule reports email reports on demand or on a schedule pdf output, drilldown html massage the dataset in C# before passing it to the rendering engine Any experiences or sites that

Basic blur event in a Telerik Nativescript Mobile App

南笙酒味 提交于 2019-12-02 14:10:10
问题 I am writing a cross-platform mobile app using Telerik AppBuilder with NativeScript. I am going nuts trying to figure out how to get a basic "blur" or "onTextChanged" event on a TextField. I can figure out how to do things like "tap" events, but then why is it so hard to find a sample of someone doing "blur" or "onTextChanged"? I've tried this: var tagField = view.getViewById(page, "tfDescription") tagField.set("onblur", function(eventData) { pageData.set("debug", "blur this field: " + JSON

Best practice for panning/zooming a user control?

心不动则不痛 提交于 2019-12-02 13:28:49
We currently have a user control which displays a dynamic matrix of other user controls. Since it's dynamic, the view can become large, requiring the user to scroll up/down & left/right in the browser to view everything. I would like to give the users one view of the user control with the ability to pan & zoom on it, much like the feel of this Telerik control. We own the Telerik controls and I've tried to use the Map control for our purpose, but it doesn't seem like that is going to be a good solution. I have also placed a Canvas inside of a scroll viewer, and was able to make it pan (using

Auto scroll to Bottom

妖精的绣舞 提交于 2019-12-02 12:42:16
问题 I am working on application with chat screen. But as normal screen it starts scrolling from top to bottom. But its should be from bottom to top. The application is in Telerik Nativescript platform. View.xml <ScrollView row="0" col="0"> <StackLayout class="history-content-area"> <Repeater items="{{messageHistory}}"> <Repeater.itemTemplate> <StackLayout> <!-- ITEMS GO HERE --> </StackLayout> </Repeater.itemTemplate> </Repeater> </StackLayout> </ScrollView> I need help in above code how can i

Changing the color of onclick selected text in kendo angular grid

落花浮王杯 提交于 2019-12-02 11:39:26
Can someone help me in changing the color of onclick selected text in kendo angular grids. ::selection is the property you are looking for to change the selected text color (see this answer for more details). To get this to apply to your kendo grid, use the following CSS: .k-grid ::selection { background-color: #3399FF; color: #fff; } If you are still having trouble, make sure you are applying your CSS to the global scope. Because of style encapsulation , this is the easiest way to affect the styling of a third party component such as the Kendo grid. Note: I chose this blue #3399FF with white

how to use webmethod with telerik batch edit grid

我怕爱的太早我们不能终老 提交于 2019-12-02 09:04:00
Work on Asp.net vs2012 C# telerik:RadGrid batch edit,I put save button outside from the grid.Under the save button want to call webmethod to save all changes on my db. Sample will be preferable,how to use webmethod with batch edit grid. Use RadClientDataSource to bind to your service: http://demos.telerik.com/aspnet-ajax/grid/examples/data-binding/client-side/client-data-source-binding/defaultcs.aspx 来源: https://stackoverflow.com/questions/28870389/how-to-use-webmethod-with-telerik-batch-edit-grid

JavaScript not working with RadTabStrip asp.net

痞子三分冷 提交于 2019-12-02 08:15:59
I have a javascript for a nested grid which was working fine until I decided to use RadTabStrip. The JavaScript Code: <asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent"> <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" /> <script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"> </script> <script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"> </script> <script type="text/javascript"> function collapseExpand(obj) { var gvObject = document.getElementById(obj); var imageID

Can't Enable button in JavaScript

时光总嘲笑我的痴心妄想 提交于 2019-12-02 07:04:32
<script type="text/javascript"> function Enable_Butt() { document.getElementById("<%=RadButton1.ClientID%>").disabled = false; // Doesn't Work } </script> i also tried this and still not work //$find("<%=RadButton1.ClientID %>").set_enabled(true); <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <telerik:RadButton ID="RadButton1" runat="server" SingleClick="true" SingleClickText="Processing..." AutoPostBack="true" OnClick="Create_Order_Click" Text="Create Order" Font-Bold="true" Font-Size="12" BackColor="#333333" ForeColor="White" Skin="Bootstrap" CssClass="auto-style5" > <

Auto scroll to Bottom

一曲冷凌霜 提交于 2019-12-02 06:42:46
I am working on application with chat screen. But as normal screen it starts scrolling from top to bottom. But its should be from bottom to top. The application is in Telerik Nativescript platform. View.xml <ScrollView row="0" col="0"> <StackLayout class="history-content-area"> <Repeater items="{{messageHistory}}"> <Repeater.itemTemplate> <StackLayout> <!-- ITEMS GO HERE --> </StackLayout> </Repeater.itemTemplate> </Repeater> </StackLayout> </ScrollView> I need help in above code how can i scroll to bottom automatically on page load ? Let me know if you need javascript code. Thanks in advance.