Telerik Forums
UI for ASP.NET MVC Forum
1 answer
103 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
109 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
990 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
224 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
784 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.3K+ 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
136 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
190 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
348 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
364 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
Grid
General Discussions
Scheduler
DropDownList
Chart
Editor
TreeView
DatePicker
ComboBox
Upload
MultiSelect
ListView
Window
TabStrip
Menu
Installer and VS Extensions
Spreadsheet
AutoComplete
TreeList
Gantt
PanelBar
NumericTextBox
Filter
ToolTip
Map
Diagram
Button
PivotGrid
Form
ListBox
Splitter
Application
FileManager
Sortable
Calendar
View
MaskedTextBox
PDFViewer
TextBox
Toolbar
MultiColumnComboBox
Dialog
DropDownTree
Checkbox
Slider
Switch
Notification
Accessibility
ListView (Mobile)
Pager
ColorPicker
DateRangePicker
Security
Wizard
Styling
Chat
DateInput
MediaPlayer
TileLayout
Drawer
SplitView
Template
Barcode
ButtonGroup (Mobile)
Drawer (Mobile)
ImageEditor
RadioGroup
Sparkline
Stepper
TabStrip (Mobile)
GridLayout
Badge
LinearGauge
ModalView
ResponsivePanel
TextArea
Breadcrumb
ExpansionPanel
Licensing
Rating
ScrollView
ButtonGroup
CheckBoxGroup
NavBar
ProgressBar
QRCode
RadioButton
Scroller
Timeline
TreeMap
TaskBoard
OrgChart
Captcha
ActionSheet
Signature
DateTimePicker
AppBar
BottomNavigation
Card
FloatingActionButton
Localization
MultiViewCalendar
PopOver (Mobile)
Ripple
ScrollView (Mobile)
Switch (Mobile)
PivotGridV2
FlatColorPicker
ColorPalette
DropDownButton
AIPrompt
PropertyGrid
ActionSheet (Mobile)
BulletGraph
Button (Mobile)
Collapsible
Loader
CircularGauge
SkeletonContainer
Popover
HeatMap
Avatar
ColorGradient
CircularProgressBar
SplitButton
StackLayout
TimeDurationPicker
Chip
ChipList
DockManager
ToggleButton
Sankey
OTPInput
ChartWizard
SpeechToTextButton
InlineAIPrompt
TimePicker
StockChart
RadialGauge
ContextMenu
ArcGauge
AICodingAssistant
SegmentedControl
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?