telerik

Custom design of a popup in wpf using c# (telerik )

夙愿已清 提交于 2019-12-07 17:58:16
问题 I am showing an pop up in a button click event> I have kept a custom user control inside that popup and so whenever the pop is being shown taht custom usercontrol will be displayed.But now i need to modify the custom control . Current custom control inside popup looks like below but i need the corner to be look like the below image.. How to do it.? I need that sharp corner in my control and i need that sharp corner point whenever the popup been shown bolow the code of the button and its popup

Telerik gridview : How to refresh grid view after Database change

不羁的心 提交于 2019-12-07 07:58:32
问题 I'm using radgridview in C# winform application to show data from database. I'm also altering database through ADO.Net. The problem is after I change the database, for example by deleting a row or adding a new row, changes do not appear in gridview. I also want to mention that I have bound database to gridview through smart tags and when I tried to create a new dataset and assign it to radgridview1.datasource I got tons of errors. Any suggestion on how can force radgridview to reload it's

Kendo Grid: Getting widget instance in Angular

一个人想着一个人 提交于 2019-12-07 06:15:26
问题 I was trying to get an instance of the Kendo grid within my Angular Controller, so I can try and hook up to some events (and call methods) I know this is probably not best practice (and should probably use a custom directive), but according to the documentation, we should be able to use... <div ng-app="app" ng-controller="MyCtrl"> <input kendo-datepicker="datePicker" k-on-change="onChange()"> </div> <script> angular.module("app", [ "kendo.directives" ]).controller("MyCtrl", function($scope) {

Kendo Grid filter to use combo box with column.values rather than drop down list

ぐ巨炮叔叔 提交于 2019-12-07 05:19:46
问题 I'm trying to get Kendo's Grid to show a filter using a combo box rather than a drop down list when used with values. What I mean is, on the grid columns array, each column can be given a list of values (objects with text and value properties) for each possible entry in the database, thereby rather than showing a code, it shows a recognisable name or text instead of the code. The problem is that whenever I specify values against the column, the filter reverts to a fixed list of criteria and a

Telerik RadWindow icon not displayed on task bar c# wpf [duplicate]

£可爱£侵袭症+ 提交于 2019-12-07 03:10:33
This question already has answers here : How to assign Application Icon that will display in Task bar? (6 answers) Closed 5 years ago . I have created one application using c# wpf. I have set the application icon from the properties->Application,but some how application icon not displayed on taskbar.the application is running but nothing displayed on the taskbar. I can operate application properly. I not getting what is wrong Hey you can try this out private void MainWindow_Loaded(object sender, RoutedEventArgs e) { Window window = (sender as RadWindow).ParentOfType<Window>(); if (window !=

How can I make label text scale-able in Winforms application

孤者浪人 提交于 2019-12-07 02:15:27
问题 I am looking for a way to make text in a label scale-able to it fit in entire parent container. The one way I can think of is to get the container size on window re-size and then increase or decrease font size accordingly, but that would limit its possibilities. Wondering if there is a better way of doing this, that may work more like an anchor property in Winforms application. 回答1: I knew the answer is hidden somewhere in graphic object and paint event, playing around with these 2 keywords

Fixing the Browser Mode in IE Programmatically

柔情痞子 提交于 2019-12-07 01:35:21
问题 I have a website that works in full compatibility on All browsers including IE 7 to 9 I was shocked when i tried it on IE-10, Too many bugs, and because I have no time to fix this for IE-10 and i am also using third party controls "Telerik", I decided to try a simple solution by turning the Document and the browser mode back to ie9. In Developer Tools for IE-10, If i set Manually The Document Mode to IE9 Standards and the Browser Mode to IE9, All the bugs will fly away, I have found a way

Removing all CSS from telerik controls

假装没事ソ 提交于 2019-12-07 00:07:43
问题 I'm using Telerik RadControls for ASP.NET and wondered if there was any way to turn off/stop the CSS that is automatically downloaded with the controls. I don't want to remove any of the class names that are applied to the telerik HTML elements, I just want a clean slate so that I can style them exactly how I want. The reaon I ask is that I'm trying to apply an font enlarger for people with impaired vision to my site. I can overwrite the current styles with something like: html body .RadInput

Performance issues with SharePoint and Telerik RadGrid Control

天涯浪子 提交于 2019-12-06 16:56:14
I originally posted this question to narrow down the slowness issues with my SharePoint application . After accepting StriplingWarrior's answer, I began to step through his suggestions. In a nutshell, I have a RadGrid within an Application Page hosted on a SharePoint 2010 Server. The RadGrid runs perfectly fine when paging; however, once a filter is applied, ex: give me last names that contain 'doe' (using Telerik's built-in filter mechanism), the results take upwards of 15 seconds to return. This does not occur in my development environment, using the same set of data (approx 30,000 records).

Combobox item style

╄→尐↘猪︶ㄣ 提交于 2019-12-06 16:41:12
my project is asp.net MVC, using Telerik MVC combobox. I can change the sytle of the first item if I use: var item = combobox.dropDown.$items.first(); item.addClass('test'); Or change all items, using: combobox.dropDown.$items.addClass('test'); But I need to change just specific items (based on a model), I tried: combobox.dropDown.$items[1].addClass('test'); I get this error: Object doesn't support property or method 'addClass ' If it's a jQuery object, you should replace: combobox.dropDown.$items[1].addClass('test'); With: combobox.dropDown.$items.eq(1).addClass('test'); $items[1] gives you