
Hello,
I have created a sample diagram. Please see the attachment(sample diagram.zip). In this i have static data, may i know how we can have dynamic data for the following.
1. Shapes - i would like to define if it is circle or rectangular in the data source
2. Connectors - content text, points need to be dynamic.
In additional to that, i would like to format the content like font size, alignment,color.
Can you please help me here on how to achieve these things.
Best Regards,
Devendra
Hi
I'm am working with the AngularJS directive of Kendo-UI grid.
I like to implement remote paging and sorting myself (for example using $http), and programmaticly update the table with page-size, page number, total amount of rows and sorted column.
Do you have an example or best practices for doing it?
Thanks
Shay
I've used Kendo UI since almost the very first release, and the following problem has been there all this time.
From what I see by looking at your .js source code, when using batch/inCell edit mode you already know which model field is being edited when you call the "edit" event, yet you don't give that info to us in the event arguments. Why not? Many, Many times when developers handle the Edit() event in batch/inCell mode, the model field being edited is important to know.
You could very easily pass that to the event. I don't understand why you've let it be this way for so long. Please explain.
I use Kendo MVC mobile view in my layout view.
When I try to render body in the content function nothing is happening.
I expect that it would just render all views / partial views that I have in any of the page that are rendered in RenderBody().
Kendo MVC MobileView declaration:
@(Html.Kendo().MobileView()
.Name("drawer-home")
.Layout("drawer-layout")
.Content(@<text>
<div class="content">
@RenderBody()
</div>
@Html.Action("Footer", "Layout")
</text>)
)
RenderBody() data example:
<div class="mainWarrper">
@if (Model != null)
{
if (Model.CarouselViewModel != null)
{
Html.Partial("_CarouselView", @Model.CarouselViewModel);
}
if (Model.OnPageMenu.Any())
{
Html.Partial("_Menu", @Model.Menu);
}
if (Model.Category != null)
{
Html.Partial("_Category", @Model.Category);
}
}
</div>
When I debug this code everything every thing seems to run and execute as it should, but still nothing is rendered to my website and I'm getting an empty "mainWarrper" div while the @Html.Action("Footer", "Layout") rendered as it should.
Thank you.
Have you any advice on how to address the performance issues we seem to have with internet explorer
We are loading a fairly large datasource into the scheduler and with chrome its nice and nippy when we page
IE can take up to 10 seconds (dependance on size of datasource)
Any advice? (apart from to use chrome :p)
Thanks Guys
I am having difficulty ensuring that the text in my buttongroup widget is consistently vertically aligned with adjacent widgets.
For instance I have created my own toolbar to show the problem and displayed it along side the kendo toolbar. I cannot get the text in the buttongroup to be vertically aligned with the other widgets in my toolbar. However in the Kendo toolbar the text is all consistently vertically aligned. I have tried setting vertical-align and line-height but these failed. Please explain how I can show a buttongroup in my toolbar with the text consistently vertically aligned with the other widgets.
My HTML is:
<!DOCTYPE html><html ng-app="myApp"><head lang="en"> <meta charset="UTF-8"> <title>ButtonGroup Test</title> <style> body { background-color: dimgrey; } </style></head><body ng-controller="AppCtrl" style="font-size: 80%; font-family: 'Arial' "><div kendo-toolbar k-options="toolbarOptions"></div><div style="height: 5px;"></div><div style="background-color: white; padding: 5px;"> <select kendo-drop-down-list style='width: 150px;'> <option>Paragraph1</option> <option>Paragraph2</option> </select> <kendo-button>Button</kendo-button> <kendo-mobile-button-group style="display: inline-block;"> <li>Option 1</li> <li>Option 2</li> <li>Option 3</li> </kendo-mobile-button-group> <kendo-button style="float: right;" sprite-css-class="'k-icon k-i-hbars'" ></kendo-button></div><script type="text/javascript" src="../vendors/jquery/dist/jquery.min.js"></script><script type="text/javascript" src="../vendors/angular/angular.min.js"></script><link rel="stylesheet" href="../vendors/kendo/styles/kendo.common.css" /><link rel="stylesheet" href="../vendors/kendo/styles/kendo.default.mobile.css" /><link rel="stylesheet" href="../vendors/kendo/styles/kendo.default.css" /><script src="../vendors/kendo/js/kendo.all.min.js"></script><script type="text/javascript" src="app.js"></script></body></html>Hello
A lot of you have asked. and we delivered - Kendo UI Developer Certifications are here. http://www.telerik.com/kendo-ui/developer-certification
The test is a set of comprehensive questions that assesses your WORKING knowledge of the Kendo UI framework. We didn't want to follow the approach by other certification bodies and help 'print' certificates. Kendo UI Certification. You can see more about our approach at my blog post here http://www.telerik.com/blogs/introducing-kendo-ui-developer-certification.
Our complete support team has now gone through certification exam. Soon certification will also be a requirement for any of our partners doing Kendo UI work.
Exam topic wise, you can expect:
- Kendo UI setup in a new project.
- Kendo UI dependencies and requirements.
- Templates
- DataSources
- MVVM
- General knowledge of what widgets Kendo UI contains
- Some specific widget options questions (Grid, AutoComplete, Slider, Splitter, Scheduler)
- Mostly Kendo UI Web/Framework, very little DataViz, no Kendo UI Mobile
There is no book to study from; we'd like to certify your EXPERIENCE and WORKING knowledge of Kendo UI.
See more at: http://www.telerik.com/kendo-ui/developer-certification
Sasha Krsmanovic
Hi.
I have a grid written in razor, using server data source (not ajax) with grouping and aggregated columns on the group.
Now, how can I access all columns aggregates in the GroupHeaderTemplate method?
