Telerik Forums
Kendo UI for jQuery Forum
1 answer
105 views
The only documentation regarding the classes and styles that I could find is at http://docs.kendoui.com/getting-started/web/appearance-styling. However, this article lists only "commonly-used CSS classes" and I wouldn't consider the article to be "documentation" like the API reference.

I also couldn't find any mention of the various widget constructors or declarative initializers in the API reference. They are mentioned in scattered articles throughout the various sections at docs.kendoui.com, but they aren't in the API section as far as I could tell.

I really want to buy the Kendo UI Complete for MVC product, but I've been so frustrated by the documentation during my free trial period. Is there a Kendo UI user manual or reference book that you could recommend, or is docs.kendoui.com the only available documentation?
Alexander Valchev
Telerik team
 answered on 04 Jan 2013
2 answers
579 views
Greetings,  I'm using editable grid and I want to trigger validation of a note column after the user enters a valid key code in another column.  Any suggestions on how to call validate on another column?

I created this to help: http://jsfiddle.net/Tevyn/jxkPw/


Alexander Valchev
Telerik team
 answered on 04 Jan 2013
1 answer
1.2K+ views
I can see these 2 from the number format doc.  I would like to know what the others are or are these universal and not unique to Kendo UI

en-US
de-DE

Thanks,
Alexander Valchev
Telerik team
 answered on 04 Jan 2013
1 answer
173 views
I was recently reviewing the Chart/API/Methods demo. Here is my understanding of the approach used in the demo:
  1. Thanks to event bubbling, the change event for the "configuration" div fires when any of the chart configuration settings change.
  2. The change event handler calls the refresh function, which scans all the current settings in the configuration div and refreshes the chart.
Is my understanding correct? If so, I was wondering if there are any alternative approaches for widget configuration that utilize Kendo MVVM. In other words, while I understand that HTML elements can be bound to each other using a ViewModel and the Kendo MVVM framework, I'm curious if a Javascript object property, such as a chart series type, can be bound to an HTML element, such as a radio button, in a similar manner.

A related question:
My ultimate goal is to create an app in which the user can configure a chart to his/her liking and then save that configuration to his/her ASP.NET profile. Does anyone know of any documentation or tutorials that explain how to save, say, a Kendo Stockchart configuration to a persistent data store?
Alexander Valchev
Telerik team
 answered on 04 Jan 2013
1 answer
202 views
Hi,

basically I have a combo box with about 100 entries in it upon which the dropdown is not visible when you click on it, this happens in all browsers.

I have tracked the issue down to the "top" css property on the div with the class "k-animation-container" (the div which ends up containing the dropdown list). It seems that when I click on my comboBox the top property gets set to -10000px.

here is my code for creating the comboBox : 

$(document).ready(function () {
 
           // Create Data Source
           var individualDataSource = new kendo.data.DataSource({
               transport: {
                   read: {
                       url: "/Individual/JsonDataList/",
                       dataType: "json"
                   }
               },
               serverFiltering: true,
               schema: {
                   model: {
                       fields: {
                           Id: { type: "number" },
                           Display: { type: "string" }
                       }
                   }
               }
           });
 
           // Create Combo Box
           $('#Combo').kendoComboBox({ filter: "contains",
               suggest: true,
               placeholder: "Select Individual",
               dataTextField: "Display",
               dataValueField: "Id",
               dataSource: individualDataSource
           });
 
       });
And my page layout is this : 

<html>
<head>   
         <link id="favicon" rel="shortcut icon" href="http://localhost:52617/Content/favicon.ico"  />
    <link href="http://localhost:52617/Content/style.css" rel="stylesheet" type="text/css" media="all" />
    <link href="http://localhost:52617/Content/print.css" rel="stylesheet" type="text/css" media="print" />
    <link href="http://localhost:52617/Content/redmond/jquery-ui-1.8.6.custom.css" rel="stylesheet" type="text/css" />
    <link href="http://localhost:52617/Content/kendo.common.min.css" rel="stylesheet" type="text/css"/>
    <link href="http://localhost:52617/Content/kendo.default.min.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript" src="http://localhost:52617/Scripts/CombinedScripts.aspx"></script>
    <script type="text/javascript" src="http://localhost:52617/Scripts/kendo.web.min.js"></script>
    <script type="text/javascript" src="http://localhost:52617/Scripts/kendo.aspnetmvc.min.js"></script>
  
</head>
<body>
        <div id="pageheader">
            <a href="http://localhost:52617/" title="My Page">
        </div>
<div id="menucontainer">        
   <div id="MenuItems">
       <ul class="menu">
           <li>Main Menu</li>
           <li><a href="http://localhost:52617/account/logon">Log On</a></li>
       </ul>
   </div>
</div>
<div id="main">
    <h2>Test</h2>
    <div id="comboDiv">
        <input id="Combo"/>
    </div
 </div>  
</body>
</html>

I am using Kendo UI v2012.3.1114 (JQuery is included in my combinedScripts.aspx)

I have also included a screenshot of the dropdown in action.

Any help with this would be much appreciated. 

A

 

 
Andrew
Top achievements
Rank 1
 answered on 04 Jan 2013
3 answers
204 views
The DatePicker popup doesn't work if the jQuery Globalize library was included before the Kendo UI lib in the page:

http://jsfiddle.net/XBSjf/1/

(the datepicker popup is shown, but the input field/mvvm model isn't updated with the selected date). Workaround: include jQuery Globalize after Kendo UI lib.
Iliana Dyankova
Telerik team
 answered on 04 Jan 2013
2 answers
438 views
For the following code :

<div class="QTFFDetail">
    @(Html.Kendo().Grid(Model.Case.Investigators)
        .Name("Dashboard")
        .Columns(columns =>
        {
   columns.Template(@<text></text>).ClientTemplate("<div>Investigator : #=FirstName# #=LastName# (#=Pernr#) <a href='\\#' style='float:right;' class='openFeedbackForm'>+ Create Feedback Form</a></div>");
   })
        .ClientDetailTemplateId("feedbackFormTemplate")
        .DataSource(dataSource => dataSource
            .Ajax()
            .Model(model => model.Id(p => p.Pernr))
            .Read(read => read.Action("GetAllInvestigatorsForCase", "CaseSummary"))
        )
    )
</div>

<script id="feedbackFormTemplate" type="text/kendo-tmpl">
    @(Html.Kendo().Grid<Intranet.Data.Review.Info.FeedbackFormInfo>()
        .Name("FeedbackForm_#=Pernr#") 
        .Columns(columns =>
        {
            columns.Template(@<text></text>).HeaderTemplate("<div>#=SubmissionDateString# </div>");
        })
                .ClientDetailTemplateId("reasonTemplate")
                .DataSource(dataSource => dataSource
                    .Ajax()
                    .Read(read => read.Action("GetByInvestigator", "FeedbackForm", new { pernr = "#=Pernr#" }))
                )
                .ToClientTemplate()
            )
</script>


... the columns.Template in the feedbackFormTemplate producs a javascript error (JavaScript runtime error: 'SubmissionDateString' is undefined) when I try to expand the row (SubmissionDateString is a property of Intranet.Data.Review.Info.FeedbackFormInfo).
I have seen a ton of nested grid examples, but none that show you how to customize a column in the child grid.

Please advise, thanks!
Jeffrey
Top achievements
Rank 1
 answered on 04 Jan 2013
9 answers
263 views
I have 2 line charts and one bar chart on the same page. I have buttons underneath each chart that will re-initialize the chart with new data. Everything works but when I press the buttons under each line chart, both charts render again. I only change the data of one of them and recreate it, but the other chart does it's loading animation again, even though nothing has changed in it.

Here is some pseudo code that I'm using to re-init the chart:

$('#graph1').empty();
createGraph('graph1', fullYear, -77);

The createGraph function does some work to create a settings object and then calls $el.kendoChart(settings);
Hristo Germanov
Telerik team
 answered on 04 Jan 2013
2 answers
459 views
I'd like to pass multiple parameters to the seriesClick event handler, but unsure how to handle the default parameters
The following works
...
seriesClick: onSeriesClick
function onSeriesClick(e) {
    var currentDate = new Date(2012, 0, 1);
    currentDate.setMonth(currentDate.getMonth() + e.category - 1);
however, when I need to pass in the additional parameter fails as it doesn't recognize e
 ...
seriesClick: onSeriesClick(e, contentItem),
function onSeriesClick(e, contentItem) {
    var currentDate = new Date(2012, 0, 1);
    currentDate.setMonth(currentDate.getMonth() + e.category - 1);
Steve
Top achievements
Rank 1
 answered on 03 Jan 2013
1 answer
147 views
I have KendoMobileListView. In the template I also have a check-box. when user click on an item of the list there is a click event being fired. I would like to ignore the click event when user select/unselect the check-box.

please help

Hagai
Alexander Valchev
Telerik team
 answered on 03 Jan 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?