Hi,
I'd like to know how can I show DropDownList as the default control type for specific column in GridView control on its initial loading instead of showing the default label in each row for specific column.
I'm using in-cell edit mode and I followed your demos to show DropDownList for specific column by using ClientTemplate and ForeignKey Column Type ..Its working good, However, I'd like to show this DropDownList always for this columns in all rows in GridView initial loading not only when focus on the related cell.
MyView:
@(Html.Kendo().Grid<GIWebDemoApp.Models.ViewModels.ProductCategoryViewModel>()<br> .Name(
"grid"
)<br> .Columns(columns =><br> {<br> columns.Bound(p => p.ProductName);<br> columns.Bound(p => p.Category).ClientTemplate(
"#=Category.CategoryName#"
).Width(160);<br> columns.Bound(p => p.UnitPrice).Width(120);<br> columns.Command(command => command.Destroy()).Width(90);<br> })<br> .ToolBar(toolBar =><br> {<br> toolBar.Create();<br> toolBar.Save();<br> })<br> .Editable(editable => editable.Mode(GridEditMode.InCell))<br> .Pageable()<br> .Sortable()<br> .Scrollable()<br> .HtmlAttributes(
new
{ style =
"height:430px;"
})<br> .DataSource(dataSource => dataSource<br> .Ajax()<br> .Batch(
true
)<br> .ServerOperation(
false
)<br> .Events(events => events.Error(
"error_handler"
))<br> .Model(model =><br> {<br> model.Id(p => p.ProductID);<br> model.Field(p => p.ProductID).Editable(
false
);<br> })<br> .PageSize(20)<br> .Read(read => read.Action(
"GetAllProductsAndRelatedCategories"
,
"Product"
))<br> .Create(create => create.Action(
"AddProductsAndRelatedCategories"
,
"Product"
))<br> .Update(update => update.Action(
"UpdateProductsAndRelatedCategories"
,
"Product"
))<br> .Destroy(destroy => destroy.Action(
"RemoveProductsAndRelatedCategories"
,
"Product"
))<br> )<br>)
-----------------------------------------------
<p>
public
ActionResult Manage() </p><p>{ </p><p>PopulateCategories(); </p><p>
return
View(); </p><p>}</p>
private
void
PopulateCategories()<br> {<br> var dataContext =
new
NORTHWNDEntities();<br> var categories = dataContext.Categories<br> .Select(c =>
new
CategoryViewModel<br> {<br> CategoryID = c.CategoryID,<br> CategoryName = c.CategoryName<br> })<br> .OrderBy(e => e.CategoryName);<br><br> ViewData[
"categories"
] = categories;<br> <br> }
I'm working with Kendo UI on an MVC application. We have a grid and when the user opens the row for editing we have a dropDownList that holds company names. I'm trying to get the DDL to default to the company name that's pertinent to the row.
Here's the column code:
columns.Bound(e => e.company_business_name).Width(220).Title("Company")
.EditorTemplateName("CompanyName");
and here's the editorTemplate code:
@model string
@(Html.Kendo().DropDownListFor(m => m)
.DataTextField("Text")
.DataValueField("Value")</
p
><
p
>
.BindTo((System.Collections.IEnumerable)ViewData["Companies"])
)
and the method that fills the DDL:
private void PopulateCompanies()
{
var companyList = new List<
SelectListItem
>();
if (!string.IsNullOrEmpty(Session["Companies"] as string))
{
companyList = (List<
SelectListItem
>)Session["Companies"];
}
else
{
companyList = new DataAccess().GetCompanies(CurrentSettings.getUser().userId);
CacheCompanies(companyList);
}
ViewData["Companies"] = companyList;
}
The dropDownList is populating, and displays when I click edit, but the selected value is blank. How can I set it to the value that was in the grid when it was in display mode?
Hello,
I want to create a helper method that wraps a Kendo UI widget as described here:
http://docs.telerik.com/kendo-ui/aspnet-mvc/helpers/grid/faq#how-to-create-helper-methods-rendering-predefined-widgets-i-can-further-configure
using
Kendo.Mvc.UI;
using
Kendo.Mvc.UI.Fluent;
using
Microsoft.AspNetCore.Mvc.ViewFeatures;
namespace
Gpdb.Helpers
{
public
static
class
HtmlHelperExtensions
{
public
static
GridBuilder<T> MyKendoGrid<T>(
this
HtmlHelper helper,
string
name)
where T :
class
{
return
helper.Kendo().Grid<T>()
.Name(name)
.Groupable()
.Pageable()
.Sortable()
.Scrollable()
.Filterable()
.Pageable();
}
}
}
but this doesn't work because of the following error (see attached Picture) - what I'm missing?
The grid below defaults to 10 records per page. Is there a way to change this value?
Thanks!
@(Html.Kendo().Grid(Model).Name("Orders").Columns(c =>
{
c.Bound(m => m.WORK_ORD_NO);
c.Bound(m => m.WMS_STATUS);
c.Bound(m => m.WO_STATUS);
c.Bound(m => m.LINKED_ORDER);
c.Bound(m => m.ASSIGNED_TO);
c.Bound(m => m.SHIPPER_NO);
c.Bound(m => m.QUANTITY);
c.Bound(m => m.REQ_SHIP_DATE);
c.Bound(m => m.EST_SHIP_DATE);
c.Bound(m => m.ACT_SHIP_DATE);
})
.Sortable()
.Filterable()
.Pageable()
.Groupable()
)
Hi,
Why isn't it possible to disable/hide the ColumnMenu on specific columns like Filterable or Sortable i.e. ColumnMenu(false)
robert
I have a grid that has an option to export in PDF, how can i export the pdf calling a report of telerik?
The thing is that when i click the button on to export in PDF i want that the export to be with the report of telerik that i made with the telerik reports designer.
is that possible?
I hope someone can help me.
Big hugs.
How can i export to PDF only the rows that has a column check?.
I found this example in Export to Excell http://docs.telerik.com/kendo-ui/controls/data-management/grid/how-to/excel/export-checked-columns-only
Is possible to do this with PDF Export? If anyone has an example of how to do this, I will appreciate it.