Telerik Forums
UI for ASP.NET MVC Forum
2 answers
74 views

When i delete a row from a grid in batch mode it is just removed and actioned on save changes.

Is there a way to configure the grid so the deleted rows remain on the grid (ideally greyed out) until changes are saved?

Graeme
Top achievements
Rank 1
 answered on 03 Jul 2015
1 answer
85 views

So, the basic premise of what I'm trying to accomplish is pulling data about the schedule of events from the Telerik Scheduler to use in other contexts. 

For example, let's say that I want to be able to call some MVC action and pass in all of the titles for the events that are scheduled for today.

Or, as another example, let's say that each event is assigned to an owner (this is an event for Employee1, this other event is for Employee2, etc.) I want to be able to display all of the dates for scheduled events for a certain employee in a custom HTML solution; something along the lines of what the Agenda view looks like, but NOT inside of the Scheduler view. 

Is there a way to pull the data from the Scheduler to do these things? One solution would be to just get the event data from the database and parse the info from there. However, this would obviously require a bunch of extra logic when it comes to recurring events and figuring out which days of the week in which months those recurring events would occur. I would like to avoid having to figure that stuff out since it the Telerik Scheduler is already handling that logic anyways. 

Vladimir Iliev
Telerik team
 answered on 03 Jul 2015
4 answers
284 views
Hi, I currently have a kendo grid bound to a tempdata item which is a list of objects, on delete i remove the item that is being deleted from the tempdata item list , how can i refresh the grid ?  I tried returning the partial view that the grid is in but the partial view renders in the entire page even though i have it in an ajax.beginform, basically how can I make the partial view that contains the grid referesh in the delete action of the grid?
Jim
Top achievements
Rank 1
 answered on 02 Jul 2015
1 answer
105 views

Hi,

I'm trying to use the Upload control on the chrome mobile emulator.

I can't get it to post the file back to the server.

The Upload control is a part of a form that contains multiple fields.

The user can upload a single file.

The action of the post receives a model with a property of type HttpPostedFileBase. I tried changing to an IEnumerable but it still doesn't work.

I tried both ajax and regular posts.

What am I doing wrong?

Dimiter Madjarov
Telerik team
 answered on 02 Jul 2015
1 answer
718 views

I am getting a warning in the browser console (Chrome) with kendo date picker.

 

I am not setting date format to "yyyy-MM-dd". I have even tried to set up date format in the cshtml page for the kendo date picker.

@(Html.Kendo().DatePickerFor(m => m.StartDate)
           .Name("StartDate")
           .Format("MM/dd/yyyy")
           .Value(Model.StartDate))

Is this a default date format with date pciker? How can I change it?

Georgi Krustev
Telerik team
 answered on 02 Jul 2015
3 answers
214 views

Is it possible to define the grid attributes/properties in the MVC controller rather than the view to simplify the view at all?  I am currently evaluating Kendo before deciding whether or not to migrate from Infragistics IgniteUI.  

Infragistics IgniteUI igGrid allows you to define a GridModel (their object type) instance in your controller and pass it to the View which allows a much simpler bit of syntax in the view similar to:

Controller code:

    Public Function IGGridModel() As Infragistics.Web.Mvc.GridModel

        Dim grdModel As GridModel = New Infragistics.Web.Mvc.GridModel.GridModel()

        With grdModel
             . ID = ....

            .columns ....

             etc, etc

         End With

         Return grdModel

    End Function

 

View Code:

   <div ....  whatever>

        @Html.Infragistics().Grid(Model.IGGridModel)
  </div>

 

 

Kiril Nikolov
Telerik team
 answered on 02 Jul 2015
1 answer
176 views

I need to check all the child checkboxes when I'll check the parent checkbox. For example, in the attached file I need to check all the checkboxes (11M, 11MPRICE, 15M, 23M....) when I'll click BINS. And another case is if all checkboxes are selected then parent checkbox should be checked automatically. How can I do these?

 

 Thanks in advance.

Alexander Popov
Telerik team
 answered on 02 Jul 2015
2 answers
322 views

I am using Kendo UI for ASP.Net MVC 2015.2.   I have defined a grid using razor syntax as follows:

 

                                                                Html.Kendo().Grid(Of NameValue)() _
                                                                .Name("grdTerms") _
                                                                .DataSource(Function(ds) ds.Ajax() _
                                                                .Batch(True) _
                                                                .ServerOperation(False) _
                                                                .Read(Function(r) r.Data(UIHelper.ToJSON(Model.MyNameValues)))) _
                                                                .Columns(Sub(c)
                                                                             c.Bound("Name").Title("My Name")
                                                                             c.Bound("Value").Title("My Value")
                                                                         End Sub) _
                                                                .Pageable(Function(pager) pager.Input(True).Numeric(False).Info(True).PreviousNext(True).Refresh(True).PageSizes(True)) _
                                                                .Scrollable() _
                                                                .Render()

 

The generated JQuery for the grid in the view shows that the datasource has JSON data assigned, yet no data appears in the grid.  The view code is generated as follows:

 

<div class="k-widget k-grid" id="grdTerms"><div class="k-grid-header"><div class="k-grid-header-wrap"><table><colgroup><col /><col /></colgroup><thead class="k-grid-header"><tr><th class="k-header" data-field="Name" data-index="0" data-title="My Name" scope="col"><span class="k-link">My Name</span></th><th class="k-header" data-field="Value" data-index="1" data-title="My Value" scope="col"><span class="k-link">My Value</span></th></tr></thead></table></div></div><div class="k-grid-content" style="height:200px"><table><colgroup><col /><col /></colgroup><tbody><tr class="k-no-data"><td colspan="2"></td></tr></tbody></table></div><div class="k-pager-wrap k-grid-pager"><a class="k-link k-pager-nav k-state-disabled k-pager-first" data-page="1" href="#" title="Go to the first page"><span class="k-icon k-i-seek-w">seek-w</span></a><a class="k-link k-pager-nav k-state-disabled" data-page="0" href="#" title="Go to the previous page"><span class="k-icon k-i-arrow-w">arrow-w</span></a><span class="k-pager-input k-label">Page<input class="k-textbox" type="text" value="1" />of 1</span><a class="k-link k-pager-nav k-state-disabled" data-page="2" href="#" title="Go to the next page"><span class="k-icon k-i-arrow-e">arrow-e</span></a><a class="k-link k-pager-nav k-state-disabled k-pager-last" data-page="1" href="#" title="Go to the last page"><span class="k-icon k-i-seek-e">seek-e</span></a><span class="k-pager-sizes k-label"><select><option>5</option><option>10</option><option>20</option></select>items per page</span><a class="k-pager-refresh k-link" href="/Test/Test" title="Refresh"><span class="k-icon k-i-refresh">Refresh</span></a><span class="k-pager-info k-label">No items to display</span></div></div><script>
jQuery(function(){jQuery("#grdTerms").kendoGrid({"columns":[{"title":"My Name","field":"Name","encoded":true},{"title":"My Value","field":"Value","encoded":true}],"pageable":{"input":true,"numeric":false,"refresh":true,"pageSizes":[5,10,20],"buttonCount":10},"messages":{"noRecords":"No records available."},"dataSource":{"type":(function(){if(kendo.data.transports['aspnetmvc-ajax']){return 'aspnetmvc-ajax';} else{throw new Error('The kendo.aspnetmvc.min.js script is not included.');}})(),"transport":{"read":{"url":"","data":[{"Name":"Test 1","Value":"1","Tag":""},{"Name":"Test 2","Value":"2","Tag":""},{"Name":"Test 3","Value":"3","Tag":""}]},"prefix":""},"pageSize":10,"page":1,"total":0,"schema":{"data":"Data","total":"Total","errors":"Errors","model":{"fields":{"Value":{"type":"object"},"Tag":{"type":"string"},"Name":{"type":"string"},"Dirty":{"type":"boolean"},"SupressEvents":{"type":"boolean"}}}},"batch":true}});});
</script>

 

As can be seen, the dataSource has data assigned - "data":[{"Name":"Test 1","Value":"1","Tag":""}, .... yet the grid renders empty.

What am I missing?

 

 

Rosen
Telerik team
 answered on 01 Jul 2015
1 answer
94 views
I have a menu that I want to add tooltips to. So far, I have added a tooltip, but it is for the entire menu and I would like different tooltips for each menu item.

Is this possible and if so, how would I do it?

Here is the code I have so far:
<div style="background-color: #41526e; float: left">
    @(Html.Kendo()
          .Menu()
          .Name("Menu")
          .Items(items =>
          {
              items.Add().Text("Home").Action("Index", "Home").ImageUrl(Url.Content("~/Images/Home.png"));
              items.Add().Separator(true);
              items.Add()
                   .Text("Search")
                   .Action("Search", "Catalog")
                   .ImageUrl(Url.Content("~/Images/Search.png"));
              items.Add().Separator(true);
              items.Add()
                   .Text("First Action")
                   .Action("FirstAction", "Catalog")
                   .ImageUrl(Url.Content("~/Images/Promote.png"));
              items.Add().Separator(true);
              items.Add()
                   .Text("Second Action")
                   .Action("SecondAction", "Catalog")
                   .ImageUrl(Url.Content("~/Images/Promote.png"));
              items.Add().Separator(true);
              items.Add()
                   .Text("Subscription Stuff")
                   .Action("Index", "Subscription");
              items.Add().Separator(true);
              items.Add()
                   .Text("Schedule Stuff")
                   .Action("CreateSchedule", "Subscription");
          })
          .Orientation(MenuOrientation.Vertical)
    )
 
    @(Html.Kendo()
        .Tooltip()
        .For("#Menu")
        //.Filter("button")
        .AutoHide(true)
        .Content("Greetings, Puny Earthling! This is a tooltip for your edification.")
        .Position(TooltipPosition.Top)
        .Width(200)
    )
 
</div>

 

TIA,

Bob

Iliana Dyankova
Telerik team
 answered on 01 Jul 2015
4 answers
886 views

Hello,

 we are trying to export a Grid to Excel. This works fine, but since we are using percentage based width for some columns, this percentage ("30%") gets turned into a pixel count (30px), which in turn makes the Excel column way too small.

 

Is there a way to set a better width, or an automatic "Be as big as you need to be in Excel" for the export?

 

@(Html.Kendo().Grid<BusinessObjectLayer.BusinessObjects.CategoryOfCostBusinessObject>()
    .Name("CategoryGrid")
    .Columns(columns =>
    {
        columns.Bound(p => p.Title).Width("30%");
        columns.Bound(p => p.Rate).Width(70);
        columns.Bound(p => p.Description).ClientTemplate("#: convertHtmlString(Description, 50)#");
        columns.Command(command => { command.Edit().Text(" "); command.Destroy().Text(" "); }).Width(88);
    })
    .ToolBar(toolbar => { toolbar.Create().Text("Add Category"); toolbar.Excel().HtmlAttributes(new { @class = "pull-right" }).Text(" Export to Excel"); })
    .Excel(excel => excel
        .FileName("Categories.xlsx")
        .Filterable(true)
        .AllPages(true)
        .ProxyURL(Url.Action("ExcelExport", "Category"))
    )

Thanks for your help,

Klaus

Dimiter Madjarov
Telerik team
 answered on 01 Jul 2015
Narrow your results
Selected tags
Tags
Grid
General Discussions
Scheduler
DropDownList
Chart
Editor
TreeView
DatePicker
Upload
ComboBox
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
ListView (Mobile)
Pager
Accessibility
ColorPicker
DateRangePicker
Wizard
Security
Styling
Chat
MediaPlayer
TileLayout
DateInput
Drawer
SplitView
Barcode
ButtonGroup (Mobile)
Drawer (Mobile)
ImageEditor
RadioGroup
Sparkline
Stepper
TabStrip (Mobile)
GridLayout
Template
Badge
LinearGauge
ModalView
ResponsivePanel
TextArea
Breadcrumb
ExpansionPanel
Rating
ScrollView
ButtonGroup
CheckBoxGroup
NavBar
ProgressBar
QRCode
RadioButton
Scroller
Timeline
TreeMap
TaskBoard
OrgChart
Captcha
ActionSheet
Signature
DateTimePicker
AppBar
BottomNavigation
Card
FloatingActionButton
Licensing
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
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?