Tagged Questions
0
votes
0answers
56 views
Dynamic View Data in Telerik MVC Grid not working
I have created a telerik mvc grid with dropdown, ts working fine. Now every row dropdown has different list. Thats why I have added a column name in list.
but when I bind it in grid column its not ...
1
vote
1answer
41 views
MVCjqGrid. Add date column
I have a grid:
@(Html.Grid("grid")
.SetJsonReader(new MvcJqGrid.DataReaders.JsonReader { Id = "Id", RepeatItems = false })
.SetRequestType(RequestType.Post)
.AddColumn(new ...
0
votes
1answer
41 views
How to conditionally group or not group KendoUI grid based on Viewbag value - MVC4
I need to pass a column name or the value 'none' to my kendo grid to conditionally group it based on the value of a Viewbag element. When I pass the column name in it groups as expected. My issue is ...
1
vote
0answers
97 views
Kendo UI Grid - Won't display inherited columns
For all my model entities I inherit a base class but when I try to place one of the inherited fields on the grid it just does not show them.
My workaround is to create a wrapper property on the ...
0
votes
0answers
23 views
Which solution is better when using mvc to get average,set backgound color in a grid?Kendo-grid required only JSON datasource?
Which solution is better when using mvc to get average,set backgound color in a grid?
I use mvc,for example,in controller I return Json(list) and show the student imfomation in a grid in view,Now I ...
1
vote
0answers
401 views
Kendo Grid Column bound Dropdown Row wise binding
I am facing one issue on kendo grid.
I have Kendo grid in that i have one dropdown which is loading on the basis of ViewData["abc"] using editor template and also having 2 fields such as Arrival Date ...
0
votes
0answers
53 views
MVC / Javascript grid control supports custom templated cells
Is there any grid control which I can use with mvc (asp.Net) that allows customizing cell templates. My purpose is displaying multiple separeted values in a single cell. And then I want to do ...
0
votes
0answers
175 views
Devexpress MVC extension grid delete raw using command raw with out selected raw from grid issue
I have implemneted Devexpress MVC grid sample in my application and its worked properly. When i click delete button in comman button with select that raw, through error and do not perform any action. ...
0
votes
2answers
419 views
Kendo UI MVC Server Wrappers; Grid; DataSource; Model Definition - Missing Methods?
When defining a DataSource Model for a Kendo MVC Grid DataSource, I only have two methods to setup the model:
model.Field(p => p.ContractId).Editable(false);
model.Field(p => ...
0
votes
0answers
67 views
KENDO UI GridAction Usage
I have telerik grid it has ajax request as follows.
.DataBinding(dataBinding =>
{
dataBinding.Ajax()
.Select("FilterDetailsForCbu", "Actual", new { buyerId = ...
0
votes
0answers
86 views
How to populate telerik mvc grid based on text boxes on the same view of the grid?
in my mvc project i have a view with some textboxes and a empty telerik mvc grid on the botton.
Whith all the textboxes filled i have a model data, i need to send these data to a telerik grid as a ...
1
vote
2answers
230 views
How to scroll to last the item added in Kendo grid?
I have a Kendo grid that is always being updated by SignalR.
Currently my grid displays about 12 rows. Any rows added after that programmatically will not be visible as the scroll bar doesn't scroll ...
1
vote
3answers
1k views
Kendo mvc grid enable create, disable edit
Is it possible to enable only inserting new records in kendo grid, but disable editing records?
Best I could do is onDataBound remove "Edit" buttons in javascript.
I tryed setting Editable(ed => ...
1
vote
1answer
251 views
Disable/remove Kendo mvc validator
A simple question, or so I thought.
How to disable client side validation for kendo mvc grid?
I thought there would be a property: "Enabled", "validator" or such which I could set to false but I can't ...
0
votes
1answer
187 views
Kendo grid inside splitter next page
Here's my layout. I'm using a Kendo splitter control. The left pane contains a menu and the right is the main content. Some of the content pages contain kendo grids that can contain several pages ...
0
votes
1answer
1k views
kendo ui mvc grid editortemplate issue
What I am trying to do :
I have a form with Kendo UI controls like DatePicker(s), Dropdownlist(s), NumericTextBox(s) on the first half of the page
Second half has a Kendo UI MVC Grid control
This ...
0
votes
0answers
123 views
ASP.NET MVC and ParamQuery Grid [closed]
Does anyone have any experience with ParamQuery Grid on ASP.NET MVC project? How stable and usable this grid is and are there any serious issues you faced when using it?
To me it seems like an ...
2
votes
1answer
178 views
An editable dynamic table in ASP.net MVC
I could implement an editable table with know number of columns eg in:
How to have editable table in ASP.net?
In my case we have more than 100 tables and I am looking for a generic solution Where we ...
0
votes
3answers
487 views
json based grid for mvc using knockout, jbst, etc
I've an ASP.Net MVC3 web app been using jQuery Form Plugin for ajaxSubmit. I've a grid and I use ajax postback to refresh it while filtering, sorting & paging - in simple words I just replace the ...
0
votes
1answer
96 views
Displaying data in a MVC Web Page when the number of columns are not fixed?
I want to display the data in a Razor View in MVC from a customized datatype ('User' here) stored as a generic list. how to display that? the number of columns may vary, Is there a way to do this?
My ...
2
votes
2answers
765 views
Submit form with Kendo MVC Grid and other elements
I am trying to get a Form containing a telekik MVC grid and other elements to submit.
The View model contains contains three string fields and an IEnumerable collection.
The grid is server ...
0
votes
1answer
250 views
kendo grid delay loading giff
I am trying KendoUI Grid in an asp.net-mvc3 application. I would like to not display the loading giff or delay it to make it appear only after a few seconds of loading, not instantly! But I have no ...
0
votes
1answer
226 views
Controller method is not hitting in Datatables C# MVC
I am using Datatables in my application, but to fetch the data controller method is not getting triggered.
I am able to render the table on UI, but the data is coming is NULL.
Here is my code
...
-1
votes
1answer
394 views
How to use a Grid with MVVM (knockoutjs ) in ASP.NET MVC? [closed]
I am working on MVVM (knockoutjs ) in ASP.NET MVC with HTML template. I need a suitable grid, which support MVVM and which will be gradable, resealable, virtual scrolling, etc. I found kendo but its ...
2
votes
1answer
773 views
KendoUI ASP MVC Can not get Grids Selected row value
I am using Kendo UI Grid to show mail list, when i click on a row, i need to select a row and show mail body in editor from mail object which i already have in client side.
But can not get the ...
1
vote
1answer
271 views
kendoui grid only use create (no delete or update)
$("#grid").kendoGrid({
dataSource: {
transport: {
read: function(options) {
$.ajax( {
url: ...
0
votes
1answer
797 views
Custom command button from grid isn't updating partial view
I have created a sample project to illustrate my problem
Index.cshtml :
@using Kendo.Mvc.UI
@model IEnumerable<KendoUIMvcApplication3.Models.Product>
@{
ViewBag.Title = "Home Page";
}
...
1
vote
3answers
551 views
kenodui grid WebApi CRUD
On the KendoUI site, I've found a working example of a KendoUI grid with MVC wrappers.
I don't use those wrappers.
Is there already support for json(p) for WebApi?
I've tried with the ...
0
votes
1answer
1k views
Kendo Grid MVC combine ajax binding and server editing
Is there a way to combine ajax binding and server editing ?
I want current action such as reading, paging, sorting and deleting, to be done by ajax request and Create and Update by server editing ...
3
votes
1answer
1k views
kendo grid popup display
MVC4, razor views. I can open a detail window for a Kendo (Ajax) grid item using a client template and that works. My problem is that I lose my grid state (sorting/ordering,etc) when I return to the ...
3
votes
1answer
4k views
Kendo MVC Grid: Creating a Custom command button and passing parameters
Posted 1 hour ago (permalink)
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 ...
0
votes
0answers
664 views
Hierarchical Grid in Kendo UI with ASP.NET MVC
I am implementing 3 level hierarchy grid using the Kendo UI MVC controls. At First level there will be Users Roles, expanding users Roles will show all the Features defined for that role and expanding ...
1
vote
0answers
89 views
ASP.Net mvc , redisplaying table/grid data on error
I am quite new to mvc and while i was building a searchform i stumbled upon a state related problem. So, in asp.net mvc there is no such thing as viewstate like in asp.net forms. The question is how ...
2
votes
2answers
758 views
Kendo calendar in grid
Hello I am using Kendo grid to edit price lists.
I am trying to edit single value in table:
@(Html.Kendo().Grid(Model).Name("PriceList")
.Columns(columns =>
{
columns.Bound(p ...
0
votes
1answer
130 views
telerik MVC grid extension with razor [closed]
I'd like to know if there is a way to customize the footer template like this:
Sub Total: XXXXXX
Tax: : XXXXXX
Grand Total: XXXXXXX
Thanks!
0
votes
1answer
665 views
Extjs Grid Paging Toolbar Shows All Data and No Page Number
I am using extjs paging toolbar on my grid. I have pagesize 5, but it shows all data(default is I guess 25)... but when I click next page, it still shows the first 25 data. and also have issue with ...
0
votes
0answers
94 views
MVC Grid with drop down combo box column
I want to use ASP.NET MVC 4 in my web application. I have requirement to use grid with drop down combo box column. Which third party control provide this feature ? Any help is greatly appreciated.
0
votes
1answer
3k views
Using a Kendo Grid to create a new record inline how do I update the Key ID for the new record?
In my Kendo Grid I have the default "Add a new Record" button and I have it set to be editable inline. I managed to get the record inserted into the database but When the user does an update the on ...
1
vote
2answers
958 views
Using a Kendo Grid, how do you change the wording on the “Create” button in the toolbar?
I'm using a Kendo Grid I added the "create" to do an inline add of a record. How can I change the wording on the add button? Currently it reads: "Add a new Record" I want to simplify it to read just ...
1
vote
0answers
69 views
EditorTemplates
I can not understand why in "EditorTemplates" the data are not available for viewing.
Although for editing all works fine.
@model site_NorvuzIS.ref_IppSpecialist.vIppJournalDTO
...
1
vote
1answer
481 views
How to create a .NET/MVC gridview with drag-and-drop images that swap with each other?
I'm tasked with creating a website application that resembles a POS (Point-of-Sale) system's editing suite, which shows a grid of images with a fixed number of rows/columns (8X4 for 40 total squares) ...
0
votes
1answer
899 views
Need MVC 3 Grid with AJAX paging/sorting with unobtrusive javascript
I'm fairly new to MVC 3 and and looking for a grid component that allows sorting and paging, but will also use progressive enhancement so provide fully AJAX based sorting and paging.
Ideally I'd like ...
0
votes
1answer
281 views
MVC Grid without refreshing whole page
I'm want to implement paging in Grid in MVC4 application with paging. In paging i can send all data to the client and then to let it pages and sorts all data received
(For this i saw lot of jquery ...
0
votes
2answers
292 views
Telerik mvc grid client template incorrect output with a placeholder
I have the following client template...
.ClientTemplate("<a href='javascript:showQuestionChoiceWindow('<#= QuestionId #>') class='t-button t-grid-edit'>Choices</a>").Title("");
...
2
votes
3answers
581 views
Telerik Grid MVC and check all checkbox on all pages
On Telerik demo site we can see an example of how to implement kind of functionality: "check all checkbox in a grid's column". But in my case it has 2 disadvantages:
It didn't check all checkbox on ...
0
votes
1answer
800 views
Telerik MVC Grid Custom Column Image Button
I working with Telerik MVC Grid and i'm trying to change the button image of a custom column.
column.Command(Sub(cmd)
...
0
votes
0answers
156 views
How set dynamic Url Proxy in grid ext.net razor engine
how when listbox on change make grid reload Dynamic Url which content value selected list.
<select name="Installation" id="Installation">
@foreach (var item in Model) {
<option ...
0
votes
1answer
788 views
Multiple delete records from Telerik MVC Grid using checkboxes in Grid and a button
Say I have a Telerik MVC Grid, AJAX bound and I want to put checkboxes into the Grid so that User can check them and delete multiple checked records from a Ajax.ActionLink Button which is outside of ...
0
votes
1answer
574 views
Create DetailView for Telerik MVC Grid only on certain conditions
I know there is a question about conditional DetailView, I however feel that's not what I'm looking for. I've been messing around with the Telerik Grid for MVC, and I've managed to create a DetailView ...
0
votes
2answers
5k views
Kendo UI MVC Grid double click
I'm currently testing the Kendo UI MVC Extensions Beta.
I'm trying to implement a double click - edit but i don't know how i can get the rowId.
JS:
$('#GridPedidos table tr').live('dblclick', ...

