Telerik Forums
Kendo UI for jQuery Forum
1 answer
396 views

I am using AngularJS with KendoUI gird and have some checkboxes in it. When i set "Editable:true" and change the checkbox, i get the event using ng-change. But when i use inline editing (editable:"inline") by adding command for Edit, i am not able to get the change event of the checkbox. Business case is on change of 1 checkbox, i have to check/uncheck other checkboxes in that grid row before saving it.

How can i get the change event for checkbox when using inline editing?

Milena
Telerik team
 answered on 04 Apr 2017
1 answer
127 views

Hi, I'm new to Kendo UI

I'm facing the problem in Tool tip when it is used with filter is applied for particular range tool tip is not working for each cell.

(I've specified the link here) http://dojo.telerik.com/oLOHA/11 In this link tool tip is not working( for  1st column till 15th row) so I'm not getting the solution for this please guide me about this...

Ivan Danchev
Telerik team
 answered on 04 Apr 2017
1 answer
155 views

I'm new to Kendo UI

Tool tip is not working when the filter is applied for particular rage in Kendo-Spreadsheet . Some one should please guide me about this

Ivan Danchev
Telerik team
 answered on 04 Apr 2017
2 answers
850 views
I have two problems that I would like to see if there is a good answer to -- both can be seen in the following dojo:

http://dojo.telerik.com/@dahlsailrunner/uGOhO

 

1.  The Month Date Picker filter does not seem to work.  I'm pretty sure on this one I'm just doing something wrong and need some guidance.  I've got a date (always the first of the month) displaying in MMM-yy format in the grid, and would like a date picker filter for the months to work as expected.  Whenever I apply the date filter though, no results are shown.  Any help here is greatly appreciated.

2.  This next problem is more weird.  I've added functionality to go elsewhere when you double-click a row in the grid (it will just show an alert with the selected community on the dojo example).  This works fine, but if you sort the portfolio column a time or two the behavior gets strange -- and will not always show you the row that you double-clicked.  Can you help me figure out how to ensure that the double-clicked row is always the one that is marked as selected?  Have I done something wrong with the data source schema or the definition of the grid?

Thanks in advance for your help.

-Erik

Erik
Top achievements
Rank 2
 answered on 04 Apr 2017
0 answers
125 views

Hi, I'm new to Kendo UI

I'm facing the problem in Spreadsheet when Tool tip  is used with filter is applied for particular range tool tip is not working for each cell.

(I've specified the link here) http://dojo.telerik.com/oLOHA/11 In this link tool tip is not working( for  1st column till 15th row) so I'm not getting the solution for this please guide me about this...

Vinay Kiran S
Top achievements
Rank 1
 asked on 04 Apr 2017
1 answer
353 views

Can someone explain why the transform is not being applied to the shape?

The second (red) square should be half the size of the first (blue) square.

http://dojo.telerik.com/@Harold@/IqoFa

<!DOCTYPE html>
<html>
  <head>
    <title>TransformScale</title>
    <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2016.3.914/styles/kendo.common.min.css">
    <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2016.3.914/styles/kendo.default.min.css">
    <script src="http://code.jquery.com/jquery-1.12.3.min.js"></script>
    <script src="http://kendo.cdn.telerik.com/2016.3.914/js/angular.min.js"></script>
    <script src="http://kendo.cdn.telerik.com/2016.3.914/js/kendo.all.min.js"></script>
    <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2016.3.914/styles/kendo.rtl.min.css">
    <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2016.3.914/styles/kendo.mobile.all.min.css">
    <script src="http://kendo.cdn.telerik.com/2016.3.914/js/jszip.min.js"></script>
  </head>
  <body>
    <div id="diagram"></div>
    <script>
      $("#diagram").kendoDiagram();
     
      var diagram = $("#diagram").getKendoDiagram();

      // Shape 1 (blue)
    
      var shape = new kendo.dataviz.diagram.Shape({ type: "rectangle", x: 10, y: 10, width: 200, height: 200, fill: "blue" });
      diagram.addShape(shape);
     
     
      // Shape 2 (red)
     
      shape = new kendo.dataviz.diagram.Shape({ type: "rectangle", x: 10, y: 300, width: 200, height: 200, fill: "red" });
      var geom = kendo.geometry;
      shape.transform = geom.transform().scale(.5);
      diagram.addShape(shape);
     
    </script>
  </body>
</html>

Stamo Gochev
Telerik team
 answered on 04 Apr 2017
0 answers
91 views
Hi, I'm new to Kendo UI
I'm facing the problem in Tool tip when it is used with filter is applied for particular range tool tip is not working for each cell.
(I've specified the link here) http://dojo.telerik.com/oLOHA/11 In this link tool tip is not working( for  1st column till 15th row) so I'm not getting the solution for this please guide me about this...
Vinay Kiran S
Top achievements
Rank 1
 asked on 04 Apr 2017
7 answers
312 views

is it possible to calculate how many lines there should be in the initial pagesize from the gridsize so I can at least initialize the grid without a scrollbar ?

A more advanced question would resize the pagesize depending on how large the browser is and follow its resizing, this might require a refresh of its data Im not sure.

 

I have a kendo grid in MVC and I get double scrollbars most of the time, one for the grid and one for the page, slightly annoying.

 

Regards,

Emil

 

Stefan
Telerik team
 answered on 04 Apr 2017
1 answer
151 views
Here's my situation:
When a user drags a node from a TreeView and drops it in a grid, I add a column.  That works...  When a user drops a node onto an existing column in the grid, I want to ask the user if they'd like to append that same column or insert a new column to the right of that one...  How can I do this?  

I'm struggling to identify the index of the column the user dropped on, etc...  Make the grid a kendoDropTargetArea?  Make each column its own DropTarget?
Vasil
Telerik team
 answered on 04 Apr 2017
3 answers
287 views

Ever since we upgraded to Kendo release 2016.3.1118, the context menu wrapping is broken, and is still broken with latest version. 

It seems the context menu will wrap item names that's not very long, like "Compare Forecast", like "Save As Excel". The width of context menu is always just slightly narrower than the longest item so it must wrap. Please see the plunk example: https://plnkr.co/edit/EyVABxhVKmgNMxf3ERkk?p=preview

 

Magdalena
Telerik team
 answered on 04 Apr 2017
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?