Telerik Forums
Kendo UI for jQuery Forum
1 answer
187 views

     Hi, I have an iframe whose width and height can be changed dynamically. When the iframe width is increased/decreased, the chart is adjusting accordingly. However, when iframe height is decreased, the chart isn't getting auto-adjusted (fit) and scroll bar appears.

I know there is a property called chartArea to set height and width. However, given an iframe dimensions, I would like to know if there are any properties so that the chart gets auto-adjusted to fit and display.

Thanks
Vamshi

Tsvetina
Telerik team
 answered on 20 Dec 2018
1 answer
286 views

     Hi,

I can use kendo map as an image viewer?

In other words, i can produce my own custom tile provider that create the images flux from a static image? 

marc.

Konstantin Dikov
Telerik team
 answered on 20 Dec 2018
2 answers
108 views

Hello,

We have implemented a waterfall graph in one of our application. We display a graph for different years en like to make the annimation go from one year to the next. In de below sample is de default annimation. This animation makes it rather hard to see the difference between year 2018 and 209 for example because the annimation always start from the the bottom up.

http://g.recordit.co/aL5EaVS5Tw.gif

Thanks

Jan Willem

Tsvetina
Telerik team
 answered on 20 Dec 2018
14 answers
2.2K+ views
I've created a grid using the Kendo Web.  When using a datasource tied to a JavaScript array, the Edit/Update and Delete buttons appeared to function.  When I changed the datasource to pull from a Transport, the Edit button appears to work, but the Update button does not close the window and complete the edit.  Delete puts up the confirmation prompt and removes the line from the display, but I can't see any evidence that the HTTP call to the server is made. 

If I hook the Grid SAVE event to a function, I can see that the function gets called.

I've simplified the code down to "only" 126 lines and have included it below.

Am I missing something obvious?  If not, how would I proceed to troubleshoot this issue?

Thanks for looking at this.

001.<html>
002.<head>
003.<link  rel="stylesheet" type="text/css" href="http://cdn.kendostatic.com/2013.1.319/styles/kendo.common.min.css" />
004.<link  rel="stylesheet" type="text/css" href="http://cdn.kendostatic.com/2013.1.319/styles/kendo.default.min.css" />
005.</head>
006.<body>
007.<script src="http://code.jquery.com/jquery-1.9.1.js" ></script>
009.<script>
010.$(document).ready(function(){
011./* -- Begin Doc ready --*/
012.var dataSource = new kendo.data.DataSource(
013.{
014.    transport:
015.    {
016.        read:
017.        {
018.            url: "http://apvs26/HttpServices/api/SchedulingShiftDays",
019.            type: "GET",
020.            dataType: "json",
021.            data: function( e )
022.            {
023.                console.log("data"); return{
024.                  shift: "rbj01"
025.                };
026.            }
027.        },
028.        update:
029.        {
030.            url: function() { console.log("update invoked"); return "http://apvs26/HttpServices/api/SchedulingShiftDays";},
031.            type: "POST",
032.            dataType: "json",
033.            data: function( e )
034.            {
035.                console.log("update"); return{
036.                  shift: "rbj01"
037.                };;
038.            }
039.        },
040.        destroy:
041.        {
042.            url: "http://apvs26/HttpServices/api/SchedulingShiftDays",
043.            type: "DELETE",
044.            dataType: "json",
045.            data: function( e )
046.            {
047.                console.log("delete"); return{
048.                  shift: "rbj01"
049.                };;
050.            }
051.        }, 
052.        create:
053.        {
054.            url: "http://apvs26/HttpServices/api/SchedulingShiftDays",
055.            type: "PUT",
056.            dataType: "json",
057.            data: function( e )
058.            {
059.                console.log("create"); return{
060.                  shift: "rbj01"
061.                };;
062.            }
063.        },         
064.        parameterMap: function( data, operation )
065.        {
066.            console.log('Map called w/' + data ); console.log( 'operation=' + operation );
067.            var filter="$filter=";
068.            for(var property in data)
069.            {
070.                filter += property + " eq '" + data[property] + "'";
071.            }
072.            console.log('Resulting filter: ' + filter);
073.            return filter;
074.        },
075.        schema:
076.        {
077.            model:
078.            {  
079.                id: "DayNumber",
080.                fields:
081.                {
082.                    DayNumber: { type: "number" },
083.                    Hours: { type: "number" },
084.                    StartTime: { type: "string" },
085.                    EndTime: { type: "string" },
086.                    DayName: { type: "string" },
087.                    Description: { type: "string" }
088.                },
089.                set: function(e) {console.log( "set" ); }
090.            }
091.        }
092.    }
093.});
094. 
095.$("#grid").kendoGrid({
096.    dataSource: dataSource,
097.    pageable: false,
098.    scrollable: false,
099.    toolbar: ["create"],
100.    columns: [
101.        { field: "DayNumber", title: "Day", width: "9%"},
102.        { field: "DayName", title:"Name", width: "15%" },
103.        { field: "StartTime", title: "Start Time", width: "8%"},
104.        { field: "EndTime", title:"End Time", width: "8%"},
105.        { field: "Hours", title:"Hours", format: "{0:n}", width: "9%"},
106.        { field: "Description", title:"Description" },
107.        { command: ["edit", "destroy"], title: "Actions", width: "18%" }
108.        ],
109.    editable: "inline"
110.    //,save: onSave
111.});
112. 
113.function onSave(e)
114.{
115.    console.log("in onSave()");
116.    return;
117.}
118. 
119./* -- End Doc Ready -- */
120.});
121.</script>
122.<div id="gridcontainer">
123.    <div id="grid"></div>
124.</div>
125.</body>
126.</html>
Tsvetomir
Telerik team
 answered on 20 Dec 2018
3 answers
575 views

I can't find solution for this bug after update from 2017 to 2018 Kendo UI.

Everything is on the screenshot.

Thanks in advance

 

Dimitar
Telerik team
 answered on 20 Dec 2018
4 answers
743 views
I have set all the columns widths in a grid, when I resize one of the columns it seems to resize  the adjacent columns as well. 

When I don't set the column width on the last column it works as expected.
Here is a jsfilddle that has the behavior.
http://jsfiddle.net/mmowery/xpZHN/22/

I have tried to things like changing the scrollable, etc.

Hopefully, I am just missing something obvious.

Thanks in advance,
Michael
Konstantin Dikov
Telerik team
 answered on 20 Dec 2018
1 answer
135 views

Hey There,

I am looking for a way to export several elements of a page. This PDF should be in A4 format and the individual elements should be arranged on it. Is this possible with Kendo UI?

Marin Bratanov
Telerik team
 answered on 19 Dec 2018
3 answers
1.5K+ views
Hii,



   Can I show the total sum value of another Column to Current Header Row.

Please help me. it's urgent.

Here I want to show Disbursal Count sum Total group by Zone to header row of Zone Row as per my attachment.




Thanks,

Manoj Kumar
+91 9019625350
Alex Hajigeorgieva
Telerik team
 answered on 19 Dec 2018
3 answers
115 views

Hi Guys,

I noticed yesterday a new internal build of Kendo UI was released - Version 2018.03.1212

But trying to download this update via Bower generates the following error

       bower not-cached    https://bower.telerik.com/bower-kendo-ui.git#2018.3.1212
       bower resolve       https://bower.telerik.com/bower-kendo-ui.git#2018.3.1212
       bower ENORESTARGET  No tag found that was able to satisfy 2018.3.1212

       Additional error details:
       Available versions in https://bower.telerik.com/bower-kendo-ui.git: 2018.3.1205, 2018.3.1129 .........

Have you stop releasing Bower packages or is this just an oversight?

Regards
Alan

AGB
Top achievements
Rank 1
Iron
 answered on 19 Dec 2018
7 answers
903 views
Hello,

I am facing a problem getting my gantt charts to render properly. I am generating the gantt charts from JavaScript using the attached code.

The data that is entered into the datasource is also attached (in Excel), as well as the resulting look of the gantt chart (please observe that the titles and dates of tasks are OK in the list on the left).

The div I render to is part of a rather big page construct, and is on a kendo Tabstrip that is initially hidden. I am aware that when the initially hidden gantt tab is activated I need to re-render, and I believe I had it all working in version 2014.2.716, but not in my current version 2014.2.903

What am I missing - any advice?
Alex
Top achievements
Rank 1
 answered on 18 Dec 2018
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
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
TimePicker
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
SegmentedControl
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?