Telerik Forums
Kendo UI for jQuery Forum
2 answers
102 views

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

Boyan Dimitrov
Telerik team
 answered on 08 Apr 2016
4 answers
552 views

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.

Matt
Top achievements
Rank 1
 answered on 08 Apr 2016
7 answers
431 views

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

Dimiter Topalov
Telerik team
 answered on 08 Apr 2016
3 answers
383 views

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!

Dimiter Topalov
Telerik team
 answered on 08 Apr 2016
3 answers
533 views
I have a calendar select control on the right edge of my application that renders fine until it has the scrollbars to compete with, then I lose the Saturday column under the vertical scrollbar. (See attached screen shot of behavior in Chrome).
Dimiter Topalov
Telerik team
 answered on 08 Apr 2016
2 answers
135 views

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!

Max
Top achievements
Rank 1
 answered on 08 Apr 2016
1 answer
141 views
Is there any fix for the kendo diagram if the name exceeds the given kendo box ...
File is attached herewith this thread.
Daniel
Telerik team
 answered on 08 Apr 2016
3 answers
164 views

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.

Alex Gyoshev
Telerik team
 answered on 08 Apr 2016
1 answer
489 views

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?

Georgi Krustev
Telerik team
 answered on 08 Apr 2016
3 answers
242 views

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...

 

Boyan Dimitrov
Telerik team
 answered on 08 Apr 2016
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
DatePicker
Spreadsheet
Upload
ListView (Mobile)
ComboBox
TabStrip
MultiSelect
AutoComplete
ListView
Menu
Templates
Gantt
Validation
TreeList
Diagram
NumericTextBox
Splitter
PanelBar
Application
Map
Drag and Drop
ToolTip
Calendar
PivotGrid
ScrollView (Mobile)
Toolbar
TabStrip (Mobile)
Slider
Button (Mobile)
Filter
SPA
Drawing API
Drawer (Mobile)
Globalization
LinearGauge
Sortable
ModalView
Hierarchical Data Source
Button
FileManager
MaskedTextBox
View
Form
NavBar
Notification
Switch (Mobile)
SplitView
ListBox
DropDownTree
PDFViewer
Sparkline
ActionSheet
TileLayout
PopOver (Mobile)
TreeMap
ButtonGroup
ColorPicker
Pager
Styling
Chat
MultiColumnComboBox
Dialog
DateRangePicker
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Accessibility
Effects
PivotGridV2
Licensing
ScrollView
Switch
TextArea
BulletChart
QRCode
ResponsivePanel
Wizard
CheckBoxGroup
Localization
Barcode
Breadcrumb
Collapsible
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
TaskBoard
Popover
DockManager
TimePicker
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
BottomNavigation
Ripple
SkeletonContainer
Avatar
Circular ProgressBar
FlatColorPicker
SplitButton
Signature
Chip
ChipList
VS Code Extension
AIPrompt
PropertyGrid
Sankey
Chart Wizard
OTP Input
SpeechToTextButton
InlineAIPrompt
StockChart
ContextMenu
DateTimePicker
RadialGauge
ArcGauge
AICodingAssistant
SmartPasteButton
PromptBox
SegmentedControl
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?