Hi,
is there a multiselect with an option to add free text values ?
Hi,
Is it possible to achieve multi select filtering in row filter mode. What we are looking for is a multi select dropdown as the control in filter row, when there is a finite number of values to filter like statuses.
Thanks
Vijith
I have a PivotGrid and a PivotConfigurator with a splitter. Now i want to set the height of both to 100% but can't get it to work.
I tried to do this like in your demo:
http://dojo.telerik.com/OSEco/6​
But that doesn't do the trick.
Here is my code:
http://dojo.telerik.com/UvUFi
I have set
html,body,form,fieldset,table,tr,td,img { height: 100%; margin: 0; padding: 0; font: 100%/150% helvetica, calibri, sans-serif; overflow: hidden;}and
"<div id=\"horizontal\" style=\"height:100%; border:0;\"><div id=\"configurator\"></div><div id=\"pivotgrid\"></div></div>"in the function "showGrid" (there is also the initialisation of the pivotgrid and the configurator aswell as the splitter).
What am i doing wrong?
I want the pivotgrid and the configurator to fill all the height they get from the parent splitter and the splitter should fill all the height that it can get.
In Internet Explorer 10, while we are add one row using "Add" button, the row will be added on the last position in the grid instead of top of the grid.
Hi,
We need check box selection functionality for the grid, with persistence of selection across pages. The following example in 'How To' section gives a way to implement it.
http://docs.telerik.com/kendo-ui/web/grid/how-to/Selection/grid-selection-checkbox
However when we implement it in our project this is going to be a default selection mode for most of the pages.
Do you plan to provide this as a selection mode option in the grid in coming releases? If yes when will it be available.
Thanks,
Vijith
Hi,
how can I prevent that grid.addRow sets the focus into my grid?
Thanks

Hi,
I am working with KendoUI '2015.2.624' and an
horizontal Linear Gauge where min, max and range values are decimal
numbers. In that case, it appears that the first label (min value) is clipped. When gauge is set as vertical, there is no issue (labels
are not clipped).
Here a scale example to reproduce the issue:
var scale = {
majorUnit: 15,
minorUnit: 5,
min: 10.25,
max: 50.23,
vertical: false,
ranges: [
{
from: 10.25,
to: 20,
color: "#2798df"
}, {
from: 20,
to: 45,
color: "#ffc700"
}, {
from: 45,
to: 50.23,
color: "#c20000"
},
]
};var scale = {
majorUnit: 15,
minorUnit: 5,
min: 1.25,
max: maxValue,
vertical: false,
ranges: [
{
from: 10.25,
to: 20,
color: "#2798df"
}, {
from: 20,
to: 45,
color: "#ffc700"
}, {
from: 45,
to: 50.23,
color: "#c20000"
},
]
};​
Of course I could round values but it may not always be possible to do so...
Is this a bug or do I need to set extra stuff somewhere ?
Thanks