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
0
votes
2 answers

Update textbox outside telerik radgrid using a value from column inside telerik radgrid

here is overview: 1. RadGrid is generated with values from database 2. one of columns in RadGrid is "itemtemplate checkbox column" which is unchecked on load 3. there are a textbox outside RadGrid which needs to be updated with following value ( …
telerikUI
  • 11
  • 1
0
votes
1 answer

How to dynamiccally bind checkboxlist in gridview using backend Query

For normally checkboxlist i using these binding is work, but how to bind in gridview for each row dynamically. List availableItems = new List { "Item1", "Item2", "Item3", "Item4", "Item5" }; List selectedItems…
user1865039
  • 131
  • 1
  • 2
  • 10
0
votes
1 answer

Filter RadGridTemplateColumn contains RadGridList

I have a Telerik Grid contains a template column, this column holds a RadGridList and receives its data from StringCollection, this means that I have a column with multiple values. I'm trying to filter this column using a combobox, I can filter such…
Mohamed Usama
  • 99
  • 2
  • 13
0
votes
2 answers

display image in telerik grid column depending on status stored in database

I have a strongly typed view where I display consultants with a delete image in one of the columns in a telerik grid. I have a column "Status" where I store if a consultant is active or inactive. What I want to do is, If a consultant has an "Active"…
user793468
  • 4,898
  • 23
  • 81
  • 126
0
votes
1 answer

MVC3 telerik gird jquery check if grid has rows

I have a button on my page when it's clicked I want to check if my grid has rows function CheckBusinessLicense() { var data = $('#License').data('tGrid'); var tr = JSON.stringify(data); alert(tr); …
user1836442
  • 55
  • 1
  • 9
0
votes
1 answer

Converting Gridview to RadGrid

How do I change the below code from GridView to RadGrid? Below is the code for my gridview: protected void gv_Movie_RowCommand(object sender, GridViewCommandEventArgs e) { //get the row number of the selected row int rowNo =…
user1861753
  • 91
  • 1
  • 3
  • 11
0
votes
2 answers

Selected row on top in Telerik MVC Grid

I have a Telerik MVC Grid and I want the selected to be forced on top of the list. I´m using DetailedView for the grid so it is collapse- and expandable. How would I force the selected row to the top of the list? My Jquery: function…
gardarvalur
  • 1,565
  • 9
  • 39
  • 65
0
votes
1 answer

Display the value of a Sub property of a Member in a Collection

I'm binding a ObservableCollection to a Grid, the class T that I am using would have an structure similar to this: public class MyObject { public int Id {get;set;} public string Name {get;set;} public Address MyAddress…
Hugo
  • 6,244
  • 8
  • 37
  • 43
0
votes
1 answer

Rad grid form template

In Radgrid basing upon dropdown selected index changed i am binding the Radgrid. In that i click edit button Form template is opened and editing. The following First image showing suppose i opened any record again in dropdown i am selecting…
Prasad
  • 220
  • 3
  • 9
0
votes
1 answer

C# dateTime in javascript method

I am using javascript to format a C# dateTime field and displays it as dd-mon-yyyy in a grid. But when I pass C# datetime to javascript variable, it is geting converted based on my system timezone. ie, Fri Aug 31 2012 06:59:14 is converted to Fri…
user1817701
  • 99
  • 1
  • 8
0
votes
1 answer

KendoUI grid InCell editing style issue

I am using ASP.NET MVC 4 and Telerik's KendoUI grid control with in grid editing (GridEditMode.InCell). I am able to see data in the grid and edit data, but the problem is that when I click cell for editing I am not getting Kendo UI controls…
Vlad Bezden
  • 83,883
  • 25
  • 248
  • 179
0
votes
1 answer

Passing Column Values to PopUp Window through Custom Command in ASP.NET Telerik Grid

I have a telerik grid in my index.cshtml and i created a custom Edit Command in my Grid. I want that whenever i click on edit i want to pass every column value to a PopUp window i created and assign those values to text boxes inside PopUp Window. My…
Fahad Abid Janjua
  • 1,024
  • 3
  • 14
  • 35
0
votes
1 answer

Telerik MVC grid footer templace

I have a telerik grid and would like to customize the footer template in such a way that the count is right under the sum like this: Total: $XXXXXXX Count: XXXXX @model List @(Html.Telerik().Grid(Model) .Name("grd") .NoRecordsTemplate("…
user1628292
  • 197
  • 1
  • 5
  • 15
0
votes
1 answer

Disable Telerik MVC Grid Validation

I have a telerik grid that is using a EditorTemplate: Editor: @ModelType Date @Html.Telerik.DatePicker.Name(ViewData.TemplateInfo.GetFullHtmlFieldName(String.Empty)).Value(Model) In my…
ricastro
  • 422
  • 1
  • 5
  • 17
0
votes
1 answer

validate if a row is selected in telerik grid

Is there a way to know if a row is selected in telerik grid? As of Now, I have a function which gives me the selected row value. But It returns undefined if nothing is selected. Hence I want a better way know if a row is selected or not. Is there an…
user793468
  • 4,898
  • 23
  • 81
  • 126
1 2 3
99
100