Hi,
I'm looking for a solution to search a node inside TreeView by input text.
My Tree Data is loadOnDemand = true.
Please let me know if anyone implement it already.
Thanks,
Ran
Is it possible to autosize the columns of a treelist such that each column is as wide as the widest entry (or the column header)? I don't want to hard-code column width values for each column as the number of columns we might use is dynamic.
I'm currently playing around with the TreeList here: http://dojo.telerik.com/epOQe
I can autosize the column by double clicking the column splitter; I'd love to be able to do that programmatically.
Hi Guys,
There appears to be a slight issue with 'Filter Multi-Checkboxes' whereby the vertical scrollbar is clipping list items.
This can be seen in the Grid / Filter Multi Checkboxes demo.
Hit the filter on the 'Product Name' column and scroll down to 'Jack's New England Clam Chowder' where you can see the last two characters are hidden by the scrollbar.
Now I appreciate I can override the CSS
.k-filter-menu.k-popup.k-group.k-reset.k-state-border-up {
width: 200px;
}
to fix the menu width but this is not really a solution when the column data is unknown.
Another solution would be to add a horizontal scrollbar
.k-multicheck-wrap {
overflow-x: auto;
}
But to me this just seems wrong when we are only taking about the space to show two more characters.
Therefore I have two questions
1) Do you consider this to be a bug and the calculation of the menu width should make allowances for a scrollbar to ensure all the data is seen.
2) If item 1 is not possible is there a way to dynamically increase the menu width say 10px in the filterMenuInit and columnMenuInit events so all data can be seen.
Regards
Alan
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...