Telerik Forums
Kendo UI for jQuery Forum
3 answers
404 views
Because of the way the MultiSelect field grows when many items are selected, there is a potential issue when it is used in a static form layout where fields are not supposed to grow in width/height... One way I can think of to get around this issue is have an option to show ellipses(...) when the width of the field is reached, clicking on the ellipses(...) will grow the field temporary to it full size showing all the selected values; the field shrinks back to default size on blur or out of focus.

Also, it would be great if you can add a multi-select option for the DropDownList or Combobox similar to some of the custom plugins found at this thread here.
Georgi Krustev
Telerik team
 answered on 09 Apr 2013
1 answer
116 views
How to repo:
1. goto : http://demos.kendoui.com/web/treeview/api.html
2. Click on "item 1.1"
3. Click on “Append node”
4. Collapse "item 1.1"
5. Try to expand "item 1.1"

I believe append node should automatically set the hasChildren to true, but now is not the case

Thanks
Alex Gyoshev
Telerik team
 answered on 09 Apr 2013
1 answer
272 views
Hello,

I have a treeview with property checkChildren enabled, around 1.5k nodes and lots of divisions between parents and childrens, 
the load is slow, but click at first one it's just deadly slow, sometimes to broke the script

At this jsfiddle, have 990 nodes and check/uncheck the first one (test 10) takes 6 seconds or more to check all childrens

There is any work from Telerik/Kendo to improve this funcionality?

If not, now has my suggestion

Tri-state behavior is great and deserve receive some attention

Thank you very much
Alex Gyoshev
Telerik team
 answered on 09 Apr 2013
2 answers
75 views
If a DataSource is created and some values are then recalculated, cancelling editor reverts to values before recalculation.

Example here:
http://jsfiddle.net/uBfQ3/17/

1. Observe discount values set
2. Observe disount values recalculated
3. Hit edit
4. Hit cancel
5. Observe values reverting to values before recalculation

What do I do to make values revert to calculated values and not 0?

Lars Lykke
Top achievements
Rank 1
 answered on 09 Apr 2013
1 answer
179 views
   I am using  kendo hierarchical grid.  Both parent and child grid rows are editable.  ( Sample : http://jsfiddle.net/hAsE3/2/  )
Here  with I have list out some requirement and issues.

1. How to access parent (master grid) row details from detail grid column.
  E.g: To get primary key value of the master grid row from child row.

2. Not able add new record in a Child grid when apply filter as,

      filter: [{
            "logic": "or",
                "filters": [{
                field: "EmployeeID",
                operator: "eq",
                value: e.data.EmployeeID
            }]
        }]

3. How to get the child grid datasource from Hierarchical grid.




Thanks and Regards,
Thirumurthi


Alexander Valchev
Telerik team
 answered on 09 Apr 2013
1 answer
410 views

I want add custom toolTip text to kendo Grid coulmn header. right now I can only have a toolTip text for the title of the column as explained below
http://jsbin.com/iropem/8/edit

Thanks,
Ephrem
Iliana Dyankova
Telerik team
 answered on 09 Apr 2013
7 answers
225 views
If I have an array of items, and I want to display it either as a Listview or Kendo Grid (based on a toggle) what's the best way to go about that?...is there a demo somewhere?

I've got the toggle bound fine, and right now the listview works...but the only thing I can think to do is toggle visibility on the list-grid markup based on the view, and that seems WAYYY wasteful to me.

How would you do it?
Alexander Valchev
Telerik team
 answered on 09 Apr 2013
2 answers
11.0K+ views
Is it possible to customize the popup editor box to show fields that are not visible in the grid, but are in the datasource the grid is bound to?

ie., if my datasource returns 10 fields and I want 5 of them to be shown in the grid, can I edit all 10 fields in the popup box?
Yogoo
Top achievements
Rank 1
 answered on 09 Apr 2013
2 answers
113 views
After doing two separate side by side examples of our apps and doing user acceptance testing with them.  I have a couple issues I would like help with.

1. The buttons within the NavBar are not the same tappable area.  I can fix some of this with css to make with wider or taller.  However it seems full native apps NavBar buttons in iOS can be tapped when tapping on the bottom portion of the status bar.  For example try to tap the back button by hitting closer to the carrier text on a full native app and it will go back. With Kendo UI within a Cordova shell it won't work unless you tap lower.  

Can you help me make this more native like? Watching people tap the back button sometimes 4 times makes for a lesser user experience.  Also have you seen this same effect in your internal testing?

I also have tested other known hybrid apps, which also exhibit this behavior, and wanted to know if this is a limitation to hybrid apps that use html for navigation.

2. Email Sending upon completion or cancel does not return to app

In a full native app in iOS when sending an email or trying to and canceling it goes back to the app.  I am currently using a mailto: link to create an email and it just goes to the email app after sending an email.

How can I get full native behavior using Cordova and Kendo on iOS?

3. Best practices for sliding transitions

What are the best practices for getting transitions to appear native like in iOS? Some times the screen scrolls inefficiently or jittery screaming a non native experience on a modern iPhone.

What are best practices on view initializations or other framework settings to minimize view transition speed/quality?

4. Text Selection

I want certain areas of my app to be selectable for users to copy and paste data, can this be done, or does this create lots of opportunities for undesired app behavior?

Petyo
Telerik team
 answered on 09 Apr 2013
5 answers
264 views
Hello, I have a problem in IE8 with pie chart when I have an item that occupies almost 100% of chart. In this case chart disappears but this occurs depending on chart size. You can resize window to find when the problem appears. I have found that problem does not exists neither in Chrome nor in IE9. The following code reproduces the problem: --- <!DOCTYPE html> <html> <head>   <link href="Styles/kendo/kendo.common.min.css" rel="stylesheet" type="text/css" />   <link href="Styles/kendo/kendo.default.min.css" type="text/css" rel="stylesheet" />   <style>     body, html     {       width: 100%;       height: 100%;       padding: 0;       margin: 0;     }   </style> </head> <body>   <script src="Scripts/jquery-1.7.2.js" type="text/javascript"></script>   <script src="Scripts/kendo/kendo.dataviz.js" type="text/javascript"></script>   <script type="text/javascript"> $(function() {   $("#chart").kendoChart(   {     title:     {       text: "Break-up of Spain Electricity Production for 2008"     },     legend:     {       position: "bottom",       labels:       {         template: "#= text # (#= value #%)"       }     },     seriesDefaults:     {       labels:       {         visible: true,         format: "{0}%"       }     },     series:     [       {         type: "pie",         data:         [ //          { //            category: "Hydro", //            value: 22 //          }, //          { //            category: "Solar", //            value: 2 //          }, //          { //            category: "Nuclear", //            value: 49 //          },           {             category: "Wind",             value: 27           }         ]       }     ],     tooltip:     {       visible: true,       format: "{0}%"     },     transitions: false   }); }); $(window).resize(function() {   var chart = $("#chart").data("kendoChart");   if (chart)   {     chart.redraw();   } });   </script>   <div id="chart" style="width: 100%; height: 100%">   </div> </body> </html> --- I've check your code and have seen that the problem occurs in VMLRing.renderPoints() method in case when outerStartPoint conisides with outerEndPoint. I think you should draw a circle in this case instead of an arc.
Hristo Germanov
Telerik team
 answered on 09 Apr 2013
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
Drag and Drop
Map
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
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?