I am using the 2016 Q1 SP3 release of the Kendo mobile controls with the Nova theme, and the drawer icon is not showing up. Here is a snippet of my markup:
<a href="#drawer" data-rel="drawer" data-align="left" data-icon="drawer-icon" data-role="button"></a>This can be reproduced using the sample code from the Kendo Mobile drawer demo - http://dojo.telerik.com/onUDi
Interestingly, if I go back to the 2015 Q3 SP1 release of the Kendo controls, it works. So it appears that something was changed with the Q1 2016 release.
http://dojo.telerik.com/Axiti
I found this in the Kendo css files - the icon is defined there but it doesn't render anything in the browser.
.km-drawer-icon:after,.km-drawer-icon:before,.km-hamburger:before,.km-hamburger:after{ content: "\e105";}hi,
cant find a link to download the service packs of kendo ui e.g. "Kendo UI Q1 2016 SP3"
i see the release history http://www.telerik.com/support/whats-new/kendo-ui/release-history but no link
thank you
b
Is there a way to enable the multi-select widget to filter more than one field?
Let's say we want to filter data like the following:
var data = [ { name: "ABC", city: "City1", id: 123 }, { name: "DEF", city: "City2", id:456 }];The dataTextField is "id" as well as the dataValueField:
$scope.selectOptions = { dataTextField: "id", dataValueField: "id", valuePrimitive: true, autoBind: false, tagMode: "single", filter: "contains", filtering: function(e) { // magic here? } }, dataSource: { transport: { read: function(options) { //get data }); } } } };How can I achieve that the multi-select suggestions show all items which field values contain the letter "D"?
I am new in telerik phonegap.can any one tell me that...
how can we use php file in telerik phonegap and how to call webservice?
Here is my scenario . When the page loads initially , I will select some items from the multiselect and when they go back to the same screen , I need to show those items as already selected . My problem is , if I go back , the widget displays only the last selected item ( sometimes I get all the items in the list, but this is inconsistent ) . I even tried to clear the filter and reset the datasource , but it takes the last filter value and displays only the last selected item( not all the items selected list ) . Please advice on what I am doing wrong .
$scope.init= function()
{
ar kmsList = $('#benchmarkDropDown').data("kendoMultiSelect");
if( kmsList != null )
{
kmsList.dataSource.data(managerInsightsDatabaseFactory.benchmarkObjs);
if( kmsList.dataSource.filter != null ){
kmsList.dataSource.filter({});
}
kmsList.value(managerInsightsDatabaseFactory.benchmarkIds);
kmsList.trigger("change");
}
<select kendo-multi-select id="benchmarkDropDown" class="k-content"
k-options="benchmarkDropdownOptions" ng-disabled="ui.disableBenchmarkMultiSelect" style="width: 100%">
</select>
In the factory
managerInsightsDatabaseFactory.benchmarkDropdown = new kendo.data.DataSource(
{
type: "json",
transport: {
read: "rest/reporting/filteredBenchMarks"
},
valuePrimitive: true,
schema: {
model: {
fields: {
name: { type: "string"},
id: { type: "string" }
}
}
},
pageSize: 100,
serverPaging: true,
serverFiltering: true
});
I am trying to use the datetimepicker. Please see attached. It has this blue border and background that I need to remove so it looks like other bootstrap components I am using. I have tried everything css wise I can think of but have not been able to override the color. How can I do this? Thanks. Code looks like this:
<div class="col-lg-4 col-md-5 col-sm-5">
<div class="input-group">
<input id="actionDate" class="form-control input-sm"
kendo-date-time-picker
ng-model="vm.currentTreatmentAction.ActionDate" />
</div>
</div>
I need to use a specific date time format dd-MMM-yyyy HH:mm. I am getting a validation error "The field Start Date Time must be a date." when using "13-Apr-2016 11:12" which should be valid.
Razor
@using (Html.BeginForm())
{
@Html.HiddenFor(m => m.PersonId)
@(Html.Kendo().DateTimePicker()
.Name("StartDate")
.Value(Model.StartDate)
.HtmlAttributes(new { placeholder = "dd-MMM-yyyy HH:mm" })
.Format("dd-MMM-yyyy HH:mm")
.ParseFormats(new[] { "dd-MMM-yyyy HH:mm" })
.Culture("en-GB")
.TimeFormat("HH:mm"))
<input type="submit" value="OK" name="submitButton" />
}
Model
public class ConfirmPGDViewModel
{
[Required]
public long PersonId { get; set; }
[Display(Name = "Start Date Time")]
[Required]
public DateTime? StartDate { get; set; }
}
Controller
public ActionResult ConfirmPGD(long personId)
{
var viewModel = new ConfirmPGDViewModel
{
PersonId = personId,
StartDate = DateTime.Now,
};
return this.View(viewModel);
}
We have come across an issue in our application when using Internet Explorer 11.
We have a kendo-editor on a bootstap modal. If the modal is closed while the kendo-editor has focus, all input controls within our application get locked.
Everything works just fine in Chrome. I have not tested other browsers. Unfortunately our customers have IE as their corporate policy.
My colleague has created a dojo to demonstrate this issue.
Can you suggest a workaround?
Thanks,
Paul

Hello,
I have a very large grid with different rows height.
So when I try to load everything, the memory consumption is pretty high, and the browser is slow.
Because of the interfaces, I can't use pagination, and as I've seen in an other post, having virtual scroll with different rows height can be problematic.
So I tought of an other solution, is it possible to load only the 50 first rows, and when I start to scroll, the 50 next rows is loaded, but unlike virtual scrolling, the first rows do not get removed. So at first you only have 50 <tr />, but if you scroll a lots, you will have as much <tr /> as you have scrolled.
Is there an options for this in kendo ui grid?
Thank you
Hi,
Few engineers on team recently acquired Kendo UI licenses. During our demo of Kendo UI (2016.1.226), we found 2 bugs with Grid control's filtering. I called Telerik to report it and I was transferred to an account executive. He acknowledged the bugs and assured that they will be fixed in the next release. The next release is out - 2016.1.406. The bugs still exist.
Both the issues can be tried in the below dojo. The dojo is pointing to the latest Kendo UI 2016 Q1 SP2 release.
Here are the steps to reproduce.
Filter issue 1:
Filter issue 2
These are very easy to reproduce.
Telerik Admins,
When can this be fixed?
Thanks,
Rahul