Telerik Forums
UI for ASP.NET MVC Forum
1 answer
72 views

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>        }

 

     

Eyup
Telerik team
 answered on 14 Nov 2016
3 answers
80 views
Hi! Is there a way to move the shapes in the diagram with the arrow keys? Or I'd need to do it myself capturing key events and moving the selected shapes?
Vessy
Telerik team
 answered on 14 Nov 2016
1 answer
936 views

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?

Ivan Danchev
Telerik team
 answered on 11 Nov 2016
5 answers
165 views
Hi,

I am having an issue with Dropdown list templates/value templates when used inside an editor popup called from a grid.  The code, when applied to a standard view works well.

Is this a known issue?

Regards,
Mike
Peter Milchev
Telerik team
 answered on 11 Nov 2016
6 answers
723 views

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?

Danail Vasilev
Telerik team
 answered on 11 Nov 2016
2 answers
2.2K+ views

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()
    )


Chris
Top achievements
Rank 1
 answered on 10 Nov 2016
3 answers
118 views

Hi,

Why isn't it possible to disable/hide the ColumnMenu on specific columns like Filterable or Sortable i.e. ColumnMenu(false)

robert

Vessy
Telerik team
 answered on 10 Nov 2016
2 answers
151 views
VS2015 keeps nagging me to update my project with the latest version of Telerik MVC. Currently I'm using 2016.2.607. I got tired of the nagging, so I used the Upgrade wizard, and absolutely nothing in my code worked anymore.  It was by far one of the most horrible upgrade experiences.  What is the best way to update this to the latest version without having to basically re-write everything?
Dyanko
Telerik team
 answered on 10 Nov 2016
1 answer
312 views

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.

Stef
Telerik team
 answered on 10 Nov 2016
3 answers
338 views

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.

Pavlina
Telerik team
 answered on 09 Nov 2016
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?