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
Hi,
Is there some kind of a guide that explains how to work with fixed / relative sizes in mobile development ?
I Have seen this documentation http://docs.telerik.com/kendo-ui/controls/hybrid/how-to/relative-content-size-using-flexboxes
But i'm lucking some information about how to define a size of an element (is it by px , should I always use em units) , same about font size ect.
It would be great if you can direct me to some guide or give a short explaination about the BKM's on mobile development lyout & sizing.
Thx
Sagi
In my grid I use the popup editing with a drop down list, when i edit an existing row i don't have any problem, but when i want to add a new row andi click on a value of the drop down list i get this error:
"0x800a138f - JavaScript runtime error: Unable to get property 'CD_PLANT' of undefined or null reference"
This is the template for the popup:
<script type="text/x-kendo-template" id="popup_editor">
<div class="k-edit-label" >
<label for="CD_PLANT" style="font-weight:normal">
plant
</label>
</div>
<div data-container-for="CD_PLANT" class="k-edit-field" >
<input kendo-drop-down-list k-data-source="lineCtrl.Plants"
k-data-value-field="'CD_PLANT'"
k-data-text-field="'DS_PLANT'"
data-bind="value: PLANT.CD_PLANT"/>
</div>
</script>
What is the problem? How can i solve it?
I'm required to support both of the following requests for a location search UI:
1. Bind and update state (required, enabled, etc) after each key press.
2. Do the same after right-click+paste.
Does the response to this thread still apply today? http://www.telerik.com/forums/model-is-not-updated-when-text-is-inserted-by-mouse-paste-bug
Is there a way to get these working with a single data-value-update setting, rather than resorting to jquery events for each field?
Also, I can't find any documentation on what values are supported for data-value-update. Are there any other options?
Thanks!