I have RadScheduler which shows a TimelineView one day at a time. As its a hotel, they work until 03:00 in the next morning on the same shift.
This means on the TimeLineView, the "Date Header "shows "May 15-May 16" as dates by default for example, because of the 03:00 finish.
Its technically correct of course, but they have requested that I show only the start date to avoid confusion, so just "May 15"
Is there a 'hack' to stop the default timeline-view header showing the end date?
I found a very small glitch.
1. Toggle full screen
2. Finish AJAX spell checker
3. Then full screen icon is not selected even the editor is in full screen mode.
Hi,
I've looked around and tried the Style Builder as well but can't find what I'm looking for, which is the CSS to make the bottom border on the Bootstrap Tab Strip Skin extend all the way to the right instead of stooping after the last tab.
All help appreciated.
Cheers,
J
Hi,
I have a Radgrid within a dataform. When the user click edit on the Dataform I can get the Radgrid to display in Batch edit mode.
But on pressing the Update button on the Dataform, how do I get the values of the edited grid in code behind.
I already use the _ItemUpdating event for the Dataform, and thought I would be able to see the values of the edited grid with EditItems
But it seems not.
Many Thanks for any help
Mark

Hello,
Does anyone know of a way I can make all my Edit buttons in RadGrid larger? Currently, the 'Telerik' skin has an edit button which is 12 x 12 px, which is difficult to click. Is there a skin that uses bigger edit buttons (so far all the ones I've seen use the same small edit buttons). Alternatively, is there a way I can set my own edit button globally, without having to manipulate each and every GridEditCommandColumn?


Hi ,
I am trying to replicate the example in following demo:
https://demos.telerik.com/aspnet-mvc/grid/filter-multi-checkboxes
I need to include search box in checkbox filtering ,like one already done on Product Name column in the demo above. However i am unable to add .Search(true) to Filterable method in kendo grid . I am getting error as search is not a member of commandbuilder.
Can you please suggest me what am i missing. As it is very urgent. Help would be appreciated. Following is my complete view.
@modeltype List(Of Display_Data.ServiceReference1.Empolyee)
@imports Display_Data.Empolyee
@imports Kendo.Mvc.UI
<link href="~/Content/kendo/2016.1.412/kendo.default.min.css" rel="stylesheet" />
<link href="~/Content/kendo/2016.1.412/kendo.common.min.css" rel="stylesheet" />
<script src="//kendo.cdn.telerik.com/2016.2.504/js/jquery.min.js"></script>
<script src="//kendo.cdn.telerik.com/2016.2.504/js/kendo.all.min.js"></script>
@code
Html.Kendo().Grid(Of Display_Data.Empolyee)() _
.Name("grid") _
.Pageable() _
.Editable(Function(m) m.Mode(GridEditMode.PopUp)) _
.Filterable() _
.Sortable() _
.Columns(Sub(c)
c.Bound(Function(p) p.Name)
c.Bound(Function(p) p.Age)
c.Bound(Function(p) p.City).Filterable(Function(f) f.Multi(True).Search(True))
c.Bound(Function(p) p.Expertise)
End Sub) _
.DataSource(Sub(d)
d.Ajax() _
.Create(Function(read) read.Action("UpdateData", "Student")) _
.Update(Function(read) read.Action("UpdateData", "Student")) _
.Read(Function(read) read.Action("Display", "Student")).Model(Sub(m)
m.Id(Function(i) i.Expertise)
End Sub).ServerOperation(False)
End Sub) _
.Render()
End code