Hi, we have a menu that is near the right edge of our screen.
So, we need to use the popupCollision option to prevent it to went over the window.
We tried the [popupCollision = "fit"] attribute, and that works fine by allowing the menu to be displayed a little bit to the left of the "top box", without going over the windows edge.
Also, we have submenus. So we also need to make these submenu open to the left instead of right if there's no place.
So, we also tried the [popupCollision = "flip"].
Now, the submenu opens to the left, but we have the intial problem of the menu being outside the screen.
Third option, like your documentation suggests, we used [popupCollision = "fit flip"]
(http://docs.telerik.com/kendo-ui/api/javascript/ui/menu#configuration-popupCollision)
But, I think there's a bug, both can't be used together.
"flip" is applied, but "fit" is not.
Can we get both working at the same time? Your documentation said we can.
http://dojo.telerik.com/@foxontherock/UkIZa/2
Can I suggest, if it works fine, to set the "fit flip" as the default option? :-)
I don't see any use case where I wouldwant to use it!


Hello,
my name is Max and we are strongly using Kendo solutions in our company (and we really appreciate the work you guys have done!).
Anyway, I probably need an explanation - I'm using Kendo Grid with a different dynamic groups, and this Grid has aggregate both for the groups, subgroups and for the whole grid itself.
I managed to show the dynamic aggregations based on user selection from the list of aggregate function, but I noticed that Grid somewhy recalculates all (or some) of them on page change. Maybe it's an expected behavior, then the question is - is it possible to disable that?
The problem is that currently I'm using 30K rows with 30 columns Grid and they will be really bigger, so recalculation takes some visible time (like 1s).
Thanks in advance!
I set a break point in the constructor of my controller and I noticed that the controller is getting called several times on the startup of my project.
In my _Layout I have a menu control setup like:
@(Html.Kendo().Menu()
.Name("myMenu")
.Animation(a =>
{
a.Open(o =>
{
o.Expand(ExpandDirection.Vertical);
o.SlideIn(SlideDirection.Down);
o.Fade(FadeDirection.In);
});
})
.HoverDelay(100)
.Items(i =>
{
i.Add().Text("Job Profiles")
.Items(child =>
{
child.Add().Text("Item 1").Action("Act1", "Home");
child.Add().Text("Item 2").Action("Act2", "Home");
child.Add().Text("Item 3").Action("Act3", "Home");
child.Add().Text("Item 4").Action("Act4", "BadController");
child.Add().Text("Item 5").Action("BadAction", "Home");
});
})
)
So in my Home Controller I will see it being called 4 times.
Why does this happen? It's not like it's validating the action/controller at this time, because Item 4 and Item 5 should blow up. (It will blow up, but only when the user clicks on the items).
This is causing poor performance due to initialization that I have occurring in the constructor.
Please advise.
Hi ,
I am working on a web page where i want to display a Calendar control by which user can select on which day to run a batch file every month,so the date control needs to be customized to display only one month page (without month name on top) with 31 Days and user can select the Day of the month.
Is this possible with kendo Date picker?
Hi,
i want to use the grid in an existing html form. When I submit the form, I want to get the changes in the grid and submit them by using an hidden field.
When the form throws an serverside error I want to reload the grid and reapply the changes without saving them in the database.
i think this is normal form behaviour but it seems that it is not supported out of the box for the grid. How can I achieve this wanted behaviour?
a getchanges and applychanges method for the grid would be super...
Hello,
Is it possible to change/customize the way year selection in DatePicker works? Specifically - I would like to have a year drop-down or something similar when clicking the year, as I find the decade/century UI clunky and unintuitive. Something like this jQuery widget is what I had in mind.
Thanks.
Hi
I'm using custom download builder tool to reduce size of kendoUI js file.
In the Kendo UI Custom Download page, there is only one checkbox for chart and this checkbox creates a 470KB js file.
Kendo UI contains many kinds of chart, like bar, line, pie, but only line chart is needed.
Can I create a custom js file which contains only line charts?
