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
I have a support ticket going for this but having 24 hours go by for every response is pretty slow. I upgraded to the latest with the Telerik Control Panel and now no tool box items. I have followed all instructions for removing tbd files and even registry entries, but no luck. I even uninstalled and went back a version and still can't get tool box items.
Any one else had this problem? Any real fixes besides the usual instructions, which are not working for me?
thanks
Hi
Telerik Team,
Please find attached screen shot,
As per given screen shot you can see the value of XAxis witch shows the Name[ID] format, Both Name and Id are used to perform drill operation, I have set this values using `DataLabelsField`
Now what I want to do is,I just want to show Name not ID,Is there any way to show only Label not Id i.e Is there any provision to set value like DataValueField to set Value(Id) and DataLabelField to set Label(Name).
(DataValueField is just imaginary name)
So that this Id field will be used to perform drill operation. but User can not able to see it.
Thanks