Telerik Forums
Kendo UI for jQuery Forum
1 answer
148 views

Hello Team,

Recently, I upgraded my web app to use Kendo's latest version of UI for ASP.NET MVC i.e. 2016 Q1. Everything worked perfectly fine except a small problem with Gantt inside a TabStrip. Please take a look at this snippet: http://dojo.telerik.com/UCETu.

It works fine but It just keeps the columns area collapsed by default. Any suggestions?

Thanks,

George.

Dimitar Terziev
Telerik team
 answered on 24 Feb 2016
3 answers
223 views

hi,when using the tooltip feature of the bar chart,we find sometimes(not always,according to the window initial size ) it will fires the windows resize event.

chrome is fine ,this problem only occurs in IE8

our code snippets  :

var currentHeight;
var currentWidth;

$(window).resize(function () {
var windowHeight = $(window).height();
var windowWidth = $(window).width();

if (currentHeight == undefined || currentHeight != windowHeight
|| currentWidth == undefined || currentWidth != windowWidth) {
currentHeight = windowHeight;
currentWidth = windowWidth;
kendo.resize("#ourChartDiv");  // we want to dynamically resize the chart size according to the window size
}
});

we find kendo.resize method will remove the tootip again,so we got the following exception 

in kendo.ui.js ( Kendo UI v2014.3.1119 )

          var size = {
                width: this.element.outerWidth(),
                height: this.element.outerHeight()
            };

this.element is null 

I want know how to resolve or avoid this problem ,thanks in advance !

 

Iliana Dyankova
Telerik team
 answered on 24 Feb 2016
2 answers
108 views

Hi,

Over the last few days, I tried to build a demo using the kendo ui. I came across a few problems.

One of them is inability to change current column with mouse when, grid has editable.mode set to inline and sortable widget was added.

I have prepared simple demo http://dojo.telerik.com/EQIsA.

Is there any possibility to change column using mouse and sitll to have a sortable widged added? 

Best regards,

von
Top achievements
Rank 1
 answered on 24 Feb 2016
1 answer
143 views

hello,

 

i need to POC Angular2 + Kendo UI,

My company want to new UI framework tools for new Company UI framework. My job is Angular2 + Kendo UI POC.

 

Where can i found correct version for npm install and documentation of Kendo UI Angular2 , we are using ATOM editor for development.

 

Regards,

 

Sebastian
Telerik team
 answered on 24 Feb 2016
2 answers
93 views

Migrating from version 2015.2.902 to version 2015.3.930 cause splitter not to be generated at all.  Also in 2016.1.112 it doesn't work

 

Code that working well in 2015.2 :

<div kendo-splitter role="main-view" class="main-panels1 1 " k-orientation="horizontal" ng-style="{height:contentHeight(-40)}"
                k-panes='[{ collapsible: true, size: "50%" }, { collapsible: true }]' >

 

    

Alex Gyoshev
Telerik team
 answered on 24 Feb 2016
3 answers
112 views

Hi.

I'm trying to implement an Angular project using KendoUI but I'm only able to add controls using JQuery syntax but not Angular syntax.

This works : 

  <div id="paymentRequestsGrid"></div>

and in my controller I do this :

  var grid = $("#paymentRequestsGrid").kendoGrid({
  ...

 

However, this does not work :

  <div id="paymentRequestsGrid" k-options="gridOptions"></div>

and in my controller :

  $scope.gridOptions = {
  ...

I does not crash my app, just doesn't render anything on the web page.  I've included the following in my project:

* kendo.common.min.css
* kendo.bootstrap.min.css
* kendo.bootstrap.mobile.min.css
* jszip.min.js
* kendo.all.js
* kendo.culture.is-IS.js


I just wanted to throw this up in the air and hope this will, at least, get me in the right direction ;)

Best regards,
Karl

Kiril Nikolov
Telerik team
 answered on 24 Feb 2016
1 answer
296 views

Hello Friends.

I have two grids in my MVC project. One is main Grid which is contain Employee Payments info with custom button [SelectEmployee] to access other grid which is inside a window with all employees list.

Grid_01 :

[AddNew][SaveChanges][Cancel][SelectEmployee]
+-----+-------+-----+
|EmpId|EmpName|Amout|
+-----+-------+-----+
|  01 |Name_01| 5000|
|  02 |Name_02| 6000|
|  03 |Name_03| 7000|
+-------------------+

Amount is Editable.

and the second grid which listed all employees inside the window  is like

Grid_02:

[Add to Payment]
-------+-----+-------+-----+------+-------+
|Select|EmpId|EmpName| Job |Amount|Payment|
-------+-----+-------+-----+------+-------+
|  []  |  01 |Name_01| ACC |  5000|  Bank |
|  []  |  02 |Name_02|  HR |  6000|  Cash |
|  []  |  03 |Name_03|  IT |  7000|  Cash |
+-----------------------------------------+

 

So, My question is. +

1. when open grid_02 window, if employee already available in Grid_01 then it has to be auto selected (checkbox).

2. if i select something from Grid_02 and click [Add to Payment] button it has to be auto save in the DB then Grid_01 auto refreshed.

3. prevent from save/select duplicate data.

Radoslav
Telerik team
 answered on 24 Feb 2016
1 answer
228 views

Hi,

Is there a way to disable because it does not use the dependency?

thanks

Bozhidar
Telerik team
 answered on 24 Feb 2016
5 answers
1.2K+ views

I am using Angularjs in combination with bootstrap. The chart displays after the data has been retrieved using the ng-show="hasData()" option. I want the chart to fill the width of the parent element.

When the chart displays: the "g" element is only 400px wide while the "svg" has 100% width. In the controller constructor I resize the containing element when the window is resized, however, this doesn't happen until the window is resized.

I attached two pictures showing what I'm talking about.

Iliana Dyankova
Telerik team
 answered on 24 Feb 2016
1 answer
150 views
I suppose I found a bug in datepicker.The scenario to reproduce is quite easy, it can be done on any demo (for example here: http://demos.telerik.com/kendo-ui/datepicker/index) - open a datepicker, navigate to year period selection (2000-2099) and then click left arrow to go to earlier years 1900-1999. At this moment left arrow becomes disabled because that it the earliest date that can be selected. Notice that when you move the mouse pointer away from the arrow the hover effect doesn't disappear. The element still has class k-state-hover. I don't think that is expected behavior, is it?
Viktor Tachev
Telerik team
 answered on 24 Feb 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
ScrollView
Switch
TextArea
BulletChart
Licensing
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
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?