telerik

Bug in kendo ui grid lrt css in chrome

廉价感情. 提交于 2019-12-01 06:21:50
There is a bug in kendo ui grid rtl css in chrome. If you notice example in Telerik site, you can see this bug: http://demos.telerik.com/kendo-ui/web/grid/rtl.html When you go to page 6, the header and body, isn't align. This error is in chrome (for me: V35) and in the firefox (V28) and IE(V11) does not this error. You can same error in horizontal scrolling. For example in ltr direction: http://jsbin.com/otolop/2/edit this is OK in all browser. But in rtl direction: http://jsbin.com/otolop/6/edit It has error in chrome and has no error in firefox and IE. How can I fix this error. Thanks alot.

Telerik control layout issues - Visual Studio 2013

夙愿已清 提交于 2019-12-01 04:01:23
问题 I recently installed Visual Studio 2013 on my machine along side 2012. We have several web applications (ASP.NET and MVC) that utilize Telerik controls. Today I noticed accordion controls (expanders) are fully expanded and the contents within are stacked one on top of the other. Additionally, some of the container controls are skewed. Has anyone run into this same issue? Upgrading to the latest Telerik tools has not helped. However, running the same application in Visual Studio 2012 works as

IndexOf not Supported in IE8 Browser

余生颓废 提交于 2019-12-01 03:51:36
I have cascaded dropdown in my application, cascaded using jquery, now my problem is it is working smoothly with IE9, Firefox, Opera and Safari but does not work with any of browsers like IE7,IE8 etc. I surfed for the problem and found that error is due to indexOf in my jquery code, i tried it by removing indexOf but still it is giving the same error.. Note: Is there any work around in telerik script to remove indexOf, coz new only i can find indexOf in their script. Below is the Code: function OnClientSelectedIndexChanged(sender, eventArgs) { var senderId = sender.get_id().toString(); var

Inline markup blocks cannot be nested. Only one level of inline markup is allowed. MVC RAZOR

自作多情 提交于 2019-12-01 03:22:21
I one one modal window with telerik grid inside. But i need to render images in my grid so as i understand i cant use @ twice. Here is blog post about this issue Link Can someone assist me please. My Code @{ Html.Telerik().Window() .Name("images") .Title("Select an Image") .Content(@<text> @(Html.Telerik().ComboBox() .Name("AjaxComboBox66") .AutoFill(true) .SelectedIndex(0) .BindTo(new SelectList(Model.PhotoFolders, "ID", "Name")) .Filterable(filtering => filtering.FilterMode(AutoCompleteFilterMode.StartsWith)) .HighlightFirstMatch(true) .ClientEvents(events => events .OnChange("onChange") ) )

NPM Package not found but found on website

微笑、不失礼 提交于 2019-11-30 21:02:19
问题 so I am trying to install https://www.npmjs.com/package/@progress/kendo-react-grid the package exists on the website but when I run the command npm i @progress/kendo-react-grid I get a 404 error Ideas ? So far I think the user scope is what is messing it up 0 info it worked if it ends with ok 1 verbose cli [ '/usr/bin/node', 1 verbose cli '/usr/bin/npm', 1 verbose cli 'i', 1 verbose cli '@progress/kendo-react-grid' ] 2 info using npm@5.7.1 3 info using node@v8.9.4 4 verbose npm-session

Kendo MVC Grid: Creating a Custom command button and passing parameters

半城伤御伤魂 提交于 2019-11-30 19:07:27
I'm trying to create a custom command button to fire a custom delete function. I need to pass the ID of my model to my custom delete function. You'll notice that I'm trying to pass in a static '5' as a test but I would like to pass in the ID of the row. Any help would be greatly appreciated. @(Html.Kendo().Grid(Model) .Name("Grid") .Columns(columns => { columns.Bound(p => p.Name).Width(240); columns.Bound(p => p.City).Width(170); columns.Bound(p => p.State).Width(170); columns.Command(command => { command.Edit(); command.Custom("Delete").Click("PropertyPage.DeleteProperty").HtmlAttributes(new

Get rows of a Telerik RadGrid

a 夏天 提交于 2019-11-30 17:37:41
I'm working on a RadGrid, and I want to access its rows but it seems it does not have a .Rows property. Here's what I have tried until now: How can I access rgCustomers 's Rows collection? I want to add a button to each row. According to Telerik's documentation , "Each dynamic row in the grid represents a record from the specified data source. Dynamic rows are represented by the GridDataItem class (a descendent of GridItem). Each GridTableView has a set of rows (the Items collection) of type GridDataItem." So you want to use the Items collection of the grid, which is a collection of

Telerik MVC Grid making a Column Red Color based on Other Column Value

喜夏-厌秋 提交于 2019-11-30 17:33:49
问题 I have a Telerik MVC Grid in which say, there are like two fields CustomerID and OrdersQuantity (can go negative) MY grid looks like this CustomerID OrdersQuantity 1 10 2 3 <font color="red">4*</font> -10 <font color="red">5*</font> -20 7 10 I want to show customerid in Red color and add "*" SYMBOL if OrdersQuantity is < 0 so like in the above example, I want to show customerid 4* and 5* in Red 回答1: There are two ways to accomplish this, one for server binding and the other for ajax binding.

How do I create a datatemplate with content programmatically?

偶尔善良 提交于 2019-11-30 17:28:31
I want to do the following at runtime in code: <DataTemplate x:Key="lightGreenRectangle"> <Rectangle Fill="LightGreen"/> </DataTemplate> So far I've got: public DataTemplate GetColouredRectangleInDataTemplate(Color colour) { DataTemplate dataTemplate = new dataTemplate(); return dataTemplate; } Help? I know this isn't the most elegant way of styling a control, but the component I want to specify a colour for has a property called "PointTemplate" of type DataTemplate. F Ruffell If for whatever reason you need to create a DataTemplate programmatically you would do: XAML: <Grid x:Name="myGrid">

Get rows of a Telerik RadGrid

谁说我不能喝 提交于 2019-11-30 16:49:48
问题 I'm working on a RadGrid, and I want to access its rows but it seems it does not have a .Rows property. Here's what I have tried until now: How can I access rgCustomers 's Rows collection? I want to add a button to each row. 回答1: According to Telerik's documentation, "Each dynamic row in the grid represents a record from the specified data source. Dynamic rows are represented by the GridDataItem class (a descendent of GridItem). Each GridTableView has a set of rows (the Items collection) of