I have develop a MVC3 Application in that i have use html5 video controls when i run the application it is playin Chrome but when i try to play in IE8 Browser it doesn't play the video just it show the white page only...How to play the video in all…
I am trying to populate a ComboBox (Telerik RAD COmboBox) in a test ASP.NET MVC3 app.
I have defined the ComboBox on my ASPX page and in the controller I have defined the action call that returns a JsonResult.
The problem I am having is that the Web…
I have the following legacy code that I would like to mimic, with all action links inside one column. However, I can't seem to get the Razor syntax right. How should I express this in Razor?
The ASPX column template is like this:
.Columns(column…
I'm trying to get a fixed height header and a content area the fills the screen. The content div contains a telerik mvc grid. I've tried a few suggested on stackoverflow but the control that is the content area always seems to size incorrectly…
Does anyone know what properties to set to make a Kendo MVC Textbox Multiline?
@(Html.Kendo().TextBox()
.Name("txtComments")
.Value(@Model.Comments)
.HtmlAttributes(new { style = "width:100%" })
)
Thanks.
I am using telerik mvc grid. In my table I have unique key defined for a field. And in controller I am catching the error using try ... catch inside DbUpdateException.
in catch block I want to handle the error and show error messsage in view. So…
I'm working with KendoUI MVC in MVC3.
I managed to get a dropdown in a grid column. But I have no clue on how to set the selected value, and when I save it doesn't save my selected value.
The grid
@using Perseus.Areas.Communication.Models
@using…
I am using Kendo UI grid with GridEditMode.InCell and I need to add a hyperlink for delete/destroy command in the grid column instead of the default "Delete" button.
My current code looks like:
c.Command(command => command.Destroy()).Width(90);
I have a grid that allows the user to filter. If the user changes the search word that is used to populate the grid, the filter from the previous search remains in place.
<%= Html.TextBox("UserName",…
When creating an MVC project via Visual Studio, Views are created with ".cshtml" files.
The KendoUI Server Wrappers have a model in the View whereas the KendoUI Web not only doesn't have any model, but there is no ".cshtml" files; only HTML. The…
I am using Kendo UI MVC grid. One of the properties of the model is bool, so I need to present it in grid as checkbox. By default Kendo UI present it as "true" and "false" values in the column. So you need to first time to click to get checkbox,…
I am getting A public action method 'cache' was not found on controller occasionally while executing the actionresult. Although here is no cache defined or used in my code.Don't know where from it is getting this. it is happening on telerik mvc…
i have a model with dynamic "propertys" (in DB level, something similar to Entity-Attribute-Value system).
The properties are in a field of Dictionary, and would like to show them into columns.
Model:
the model have a static array…
We are using about 3 DropDownList components inside a cardView kendo.ui.Window item.
When the window is closed, we're calling the 'destroy' method for each of the contained DropDownList items.
The problem is that the following code is not removing…