The "remove" buttons are disappearing when editing the last row of the grid as shown in the following example. Steps to reproduce the problem:
- Access the link
- Press the "Show Buttons" button
- Edit the last line of the grid
Hi,
Would you please let me know if I can avoid the treemap animation on mouse hover. Normally the treemap tile shrinks a bit when user does a mouse enter. I just want to avoid that behaviour. I've attached the screenshot for reference.
Regards
Prasanth
So I recently attempted to drop in the latest version of kendoUI (as of 8/16/2017) and found many formatting differences/issues.
The most annoying was how you decided to roll out font icons vs image icons - we now have missing icons all over the place. It would have been best if you just used the same css class name for the same icon.
Do you have a migrate .css file that will re-map them back, like most other UI libraries that make unnecessary breaking changes?
Hello ,
I am trying to use custom editors for an editable kendo ui grid in my angular app. For some reason( which I am not able to trace) the custom editor is not triggered.
I am expecting the following to be triggered but it does not work.
console.log("Editor Launched", options);
Here is the plunker for the same:
http://plnkr.co/edit/WioRbXA3LHVVRQD95nXA?p=preview
We have a large data grid with virtual scrolling (needed for performance), all data on client (server operation = false).
This is a big list of parts.
What is the best way to allow the user to scroll to a part number that is currently not rendered in the grid?
Why isn't the menu scrolling working? I am trying to use it with the Angular directive.
<ul kendo-menu k-scrollable="true"
http://dojo.telerik.com/IFULi/2
Hi Team,
I have a kendo grid ,that has each 10 column different filterable options.
Eg: column 1,2 and 3 has the below config
columns : [{
field : "xx",
title : 'xx'
filterable :operators: {
string: {
eq: "Equal to",
neq: "Not Equal to",
contains: "Contains",
doesnotcontain: "Does not contains",
startswith: "Starts with",
endswith: "Ends with"
},extra:false
}},
{
field : "yy",
title : 'yy'
filterable :operators: {
string: {
eq: "Equal to",
neq: "Not Equal to"
},extra:false
}},
{
field : "zz",
title : 'zz'
filterable :operators: {
string: {
eq: "Equal to",
neq: "Not Equal to",
contains: "Contains",
doesnotcontain: "Does not contains",
startswith: "Starts with",
endswith: "Ends with"
},extra:false
}}]
Now filter is applied to column 1, I need to change dynamically the column of 2 and 3 ,and I tried the below
angular.element("#allApsGrid").data("kendoGrid").columns[1].filterable.operators.string = {contains:"Contains to"};
angular.element("#allApsGrid").data("kendoGrid").columns[2].filterable.operators.string = {contains:"Contains to"};
But setting this dynamically is not reflecting in the kendo grid , I still see the old values of all operators. Can someone please help me here as how can I set custom per column filter dynamically ?
I am dynamically trying to create CRUD grid in AngularJS .
I successfully created Grid by assigning dataSource to Grid Options Dynamically.
But I have having problems when I click on Editting Data .
Clicking on Edit Command Button throws me an Error like this:
Uncaught TypeError: Cannot read property 'slice' of null
at ve._extractFormat (http://localhost:59366/kendo/js/kendo.all.min.js:27:19054)
at new init (http://localhost:59366/kendo/js/kendo.all.min.js:175:2141)
at HTMLInputElement.<anonymous> (http://localhost:59366/kendo/js/kendo.all.min.js:32:3585)
at Function.each (http://localhost:59366/Scripts/jquery-1.10.2.min.js:21:5347)
at M.fn.init.each (http://localhost:59366/Scripts/jquery-1.10.2.min.js:21:1999)
at M.fn.init.e.fn.(anonymous function) [as kendoNumericTextBox] (http://localhost:59366/kendo/js/kendo.all.min.js:32:3559)
at number (http://localhost:59366/kendo/js/kendo.all.min.js:196:1854)
at init.editor (http://localhost:59366/kendo/js/kendo.all.min.js:197:709)
at init.refresh (http://localhost:59366/kendo/js/kendo.all.min.js:200:795)
at new init (http://localhost:59366/kendo/js/kendo.all.min.js:197:176)
Data Type of my Column is Number .
Can you give me an example of Dynamic Grid CRUD Edit and Update Operations ? So that I can know where I am going wrong.
Thanks .
Hello, i want to make last tooltip in series always visible, regardless of the hover effect. I found how to make all tooltips always visible, but it does`t help. Pls help me
my code:
<script>
var
stats1 = [
{
"value"
: 15,
"date"
:
"24/01/16"
},
{
"value"
: 13,
"date"
:
"26/01/16"
}
];
function
createChart() {
$(
"#chart1"
).kendoChart({
title: {
text:
""
},
dataSource: {
data: stats1
},
seriesDefaults: {
type:
"area"
},
series: [{
type:
"area"
,
field:
"value"
,
}],
categoryAxis: [{
labels: {
format:
"d/M/yyyy"
,
rotation: -90
},
field:
"date"
,
baseUnit:
"days"
,
axisCrossingValues: [100]
}],
valueAxis: {
labels: {
format:
"N0"
}
},
tooltip: {
visible:
true
,
format:
"{0}%"
,
template:
"#= kendo.format('{0:dd/MM/yyyy}',category) #: #= value #"
}
});
}
$(document).ready(createChart);
</script>
if has a lot of data when first time type to search is very slow ,but after will quickly more
how to fix it?
and can I no mater how many results just show only 20 results