Questions tagged [telerik-grid]

telerik-grid refers to the issues in grid control available in various Telerik products. Telerik is a vendor of development, team productivity, and automated testing tools, as well as UI components and content management solutions for Microsoft .NET.

Resources:

Telerik Grid Extensions for ASP.NET MVC

Telerik Grid Extensions for ASP.NET

1640 questions
5
votes
1 answer

show date instead of DateTime in telerik Grid

i am using telerik grid in my Asp.Net MVC3 application and i want to bind a Date of format dd/mm/yyyy to one of the columns of the grid as shown below: Html.Telerik().Grid() .Name("TestResultGrid") .DataKeys(keys => keys.Add(c…
TRR
  • 1,637
  • 2
  • 26
  • 43
4
votes
1 answer

Existing MVC website - integrating Telerik MVC Grid to use ServerSideEditing

I have an existing MVC site, built some years back, and I am now removing all my custom grid code with Telerik's MVC Grid. I wish to utilise the ServerSide editing but the examples show the SourceCodeFile scaffolding on a single control…
4
votes
1 answer

Custom pager in Telerik MVC Grid

Can i customize appearance of a Grid's pager? I wanna select a page size from list (like Redmine, see 'Per page' block) not from dropdown. It's standart Telerik's pager: It's Redmine's pager: Thanks. PS for instance Devexpress' Grid has this…
vladimir
  • 13,428
  • 2
  • 44
  • 70
4
votes
2 answers

Checkbox cell click behaviour in Telerik RadGridView is not intuitive and requires multiple clicks

I have bound a Telerik RadGridView properly with the first column being a bound checkbox:
user1060500
  • 1,505
  • 1
  • 21
  • 40
4
votes
3 answers

Telerik MVC Grid ClientTemplate checkbox not displayed initially

I have a very similar problem to the post located here: Telerik grid with checkbox - Checkbox not showing up when the grid initially paints Basically, I have a telerik MVC3 razor grid with a ClientTemplate column that consists of a checkbox. When…
vcuankit
  • 787
  • 2
  • 11
  • 12
4
votes
3 answers

C# telerik grid cell value from template column

I have a grid-template-column defined like this( to save time and space i'll only put the column):
alinnemet
  • 301
  • 1
  • 3
  • 10
4
votes
2 answers

Telerik Grid for ASP.NET MVC2 Ajax Binding doesn't work / routes to wrong actions

The gird loads b/c of server bindings. All the other actions are either posting to the wrong route, or to the default action: Insert posts to /EditOrder action Edit posts to this…
Dani
  • 14,639
  • 11
  • 62
  • 110
4
votes
2 answers

kendo ui angular2 grid - how to apply class to a grid row

How can I apply a css class to a grid row (TR) based on some condition? I know I can apply class to a column but not to a whole TR.
Skorunka František
  • 5,102
  • 7
  • 44
  • 69
4
votes
4 answers

telerik-grid onRowSelect how to get id?

Hi i am new in asp.net mvc and telerik controls. How can i get o.Id value when i click on row? <%= Html.Telerik().Grid(Model) .Name("RolesGrid") .DataKeys(keys => keys.Add(o => o.Id)) …
Sanja Melnichuk
  • 3,465
  • 3
  • 25
  • 46
4
votes
1 answer

The Kendo UI directives require jQuery to be available before AngularJS. Please include jquery before angular in the document

I have a Mvc with angular application. There are two layout files : Loginlayout: - Default layout MasterLayout: When click the Movie button , call the Movie Controller and Movie action. public ActionResult Movie() { return View(); …
4
votes
4 answers

Change read only property of telerik grid column based on another column dropdown

I am using telerik grid in MVC @(Html.Telerik().Grid() .Columns(columns => { columns.Bound(a => a.DRPDATA).Width(25).ClientTemplate("<#= DRPDATAtext #>").Title("manually/system"); …
4
votes
1 answer

Telerik RadGrid with different types of edit controls

I have to dispay a list of fields. Some are editable and some are not. Those that are can be different types, such as text fields, dates, times, or boolean. I'm using Telerik's RadGrid. See screen shot for a test project I made. Questions: In the…
BrianK
  • 2,357
  • 3
  • 32
  • 41
4
votes
1 answer

Persisting CheckBox State While Paging in Telerik RadGrid Control

I have a telerik-radgrid where I use SelectAll. For SelectAll I have used checkbox. The checked status is going off after paging. How can we persist the checked status of Checkbox can retained even after paging.
Shibu sen
  • 81
  • 8
4
votes
3 answers

Paging with the Telerik MVC grid when using a sproc

The documentation only shows how to bind to an IEnumerable (which uses linq to page and sort) ... but I need to go against a sproc because expressing the query I'm working on with linq is proving to be a bit slow. Can anyone provide any guidelines…
Joel Martinez
  • 46,929
  • 26
  • 130
  • 185
4
votes
1 answer

WPF - Raise property changed for ToString

Currently i have the problem, that my business object overrides ToString for delivering data to some telerik control (RadListBox/RadListBoxItem). The model which overrides ToString implements INotifyPropertyChanged. Is it possible in c# to raise the…
BendEg
  • 20,098
  • 17
  • 57
  • 131