I have an autocomplete input setup and it all works great - except when I look in inspector after either: selecting a suggested value; or typing in a value not in the list - the input value attribute is not set.
The value in my case is needed for my material design theme, which has the floating label. Without a value in the <input value="selected value"> the label returns to the middle of the field and overlaps with the selected text.
Any idea how to make the kendoAutoComplete also set the value of the input field?
Does anyone know how far AngularJS is supported for the treemap widget?
I get the feeling "k-data-source" and "k-rebind" don't seem to work. Is the treemap mature enough to be used with AngularJS
or should I stick to JQuery for this one?
thanks for the advice,
Arno
I have run into a problem while trying to do some on the fly charts.
I provided a dojo with the problem, what happens is that category axis doesn't scale the values so it goes like this 2015 - 2016 - 2015 -2016.
I can't seem to figure out the problem.
http://dojo.telerik.com/eWONO/11
Any help is much appreciated,
Thanks.
When you initialize a Gantt inside a div with "display:none", it cannot get the proper width, and it renders incorrectly.
Is there any way to redraw the gantt after make the parent visible?
Something like:
<script type="text/javascript">
function showAll() {
$("#div-parent").css("display", "block");
var gantt = $("#gantt").data("kendoGantt");
gantt.redraw();
}
</script>
Hi,
I have a grid with custom popup editor template using angularjs and it works fine so far. However, when I try to use a detailtemplate in this master detail grid, I have a problem. I have many ng-show directives like this snippet:
<script type="text/x-kendo-template" id="detailTemplate"> <div dir-loadtemplate class="detailText"> <ul> <li ng-show="showCert"><label>CERType: </label>#= CERType == null ? '' : CERType.Description #</li> <li ng-show="showEquipmentClass"><label>EquipmentClass: </label>#= EquipmentClass == null ? '' : EquipmentClass.Description #</li>I click on row 1, it is good, I click on row 2, it is good, I click on row 1, and some fields are now hidden because I have less fields shown in row 2 than in row 1.
I tried to refresh angular properties like showCert on detailExpand event of the main grid, and it does not work. I set breakpoint and it pass on the property set (showCert) and value is good.
$scope.ControlAccess = function (e) { $scope.showCert = e.AssignmentType != null && e.RequestType != null && e.RequestType.Id == "1" /*Nouvelle assignation*/ && e.AssignmentType.Id == "5" /*Document d'équipement*/; $scope.showEquipmentClass = $scope.showCert;Any idea?
Thank you
Thanks to Petyo for the great tip of using inverted ignore selector for draggable handle!
Please see https://plnkr.co/edit/RLfJEhDDB9k1heXwWb5X?p=preview
Is there a way to use Kendo UI Grid for filtering a table with multiple values in some cells?
I'm going to use Kendo UI, but originally posted the question here:
http://programmers.stackexchange.com/questions/313657/is-there-a-name-for-such-search-model
Is that possible with Kendo UI?


columns: [ {field: 'EmptyExport', values: ['red', 'white', 'blue']}, {field: 'GoodExport', values: [ {text: 'red', value: 'red'}, {text: 'white', value: 'white'}, {text: 'blue', value: 'blue'}] }]If you use the excel export feature for a grid with the columns listed above, the 'EmptyExport' field values don't make it into the excel grid (it's just an empty column), but the GoodExport field values do.
This is with version 2016.1.322