Hi,
I am trying to implement kendo autocomplete on google maps. Normally it works fine but when I make the map full screen then autocomplete dropdown list is not selectable anymore. I tried to change the z-index but didn't work. Any ideas?
Here is my sample fiddle.
Btw. when debugging this thing, I noticed that the getUSerName function gets call an stupid amounts times when rendering the grid. Is this normal? or am I doing something wrong? I'm a bit concern about the impact it could have on the performance. I mean, my test data source had 3 results, but the function was being called like 15 times.. odd.
$(
'#GroupeID'
+ GroupeId).find(
'.k-header'
).each(
function
() {
$(
this
).css({
'transform'
:
'rotate(90deg)'
,
'-moz-transform'
:
'rotate(90deg)'
,
'-o-transform'
:
'rotate(90deg)'
,
'-webkit-transform'
:
'rotate(90deg)'
,
'-ms-transform'
:
'rotate(90deg)'
});
});
$(
'#GroupeID'
+ GroupeId).find(
'.k-grid-header'
).css(
'height'
,
'300px'
);
I noticed that the thembuilder appears to download the full CSS for the entire framework, which would be expected. Is there an existing option or a planned future option to download only the CSS needed? For example if I wanted to do a custom build of Kendo Ui for only the grid widget, would I be able to use the themebuilder to create a theme that contains only the CSS needed for grid (and any required base CSS stuff as well) ?
Just curious as it would be nice to be able to generate a smaller CSS file to match a custom build.
Thanks,
Alan
Hello,
the problem which I have encountered is as following. When using DropDownList when items are long text and there are a lot of them on Chrome browser(IE and Edge works fine). There can be seen a difference in time which is needed for drop down to appear. This gives UX.
It can be easily observed on demo with list with short items and long ones in Chrome vs Edge.
Any suggestions how to proceed with it?
Demo: http://dojo.telerik.com/ImOtevOq
Hi,
I have a requirement in my project to transpose a grid (i.e.
displaying tabular data in the flip axis so rows becomes columns and vice
versa).
For example: Below is the data we typically display in kendo grid. It has 3 columns : Name, Age and City
Name Age City
John 35 New York
Brian 37 London
Tom 38 Phoenix
I want to display above data in below manner:
Name John Brian Tom
Age 35 37 38
City New York London Phoenix
Hi,
As the title says, Im trying to remove a row from my grid without it affecting the datasource. The reason for this is that I have a list of ACTIVE users and if one is updated to be INACTIVE I need to remove it from the grid.
Things I've tried in the dataSource requestEnd(), if the type is an update, and the response object is inactive:
1) Remove it from the datasource. This does not work, becuase the next DS sync thats run, calls the destroy method on the deactivated record
2) execute a filter() on the dataSource to only display ACTIVE users but I get a JavaScript error "Uncaught TypeError: Cannot read property 'status' of undefined" and it points to the lie where the filter is executed.
Any advice would be appreciated.
Thanks and Kind Regards,
Grant
I initialize a list view in the ini handler of a bootbox.dialog (http://bootboxjs.com/examples.html) from a button in a grid:
$("#listview").kendoListView({...
The content of the dataSource is different from each grid row.
This initialization happen every time the button is clicked.
Can/Should I initialize only once and just update the dataSource.
Thanks in advance
Regards
Morten