Telerik Forums
Kendo UI for jQuery Forum
1 answer
343 views
I'm trying to build a page for the first time with Kendo and it's not working as planned. I have included all the required scripts and css links in the head element. But when I run the page the styles are not there, even though the scripts appear to work.  As of now I just have one combobox on the page. I'll paste my code below and any help is appreciated.

<html>
<head id="Head1" runat="server">
	<title>Mobile Manager</title>
	<link href="../../Styles/Site.css" rel="stylesheet" type="text/css" />
	<link href="../../Styles/Kendo/Web/kendo.common.min.css" rel="Stylesheet" type="text/css" />
	<link href="../../Styles/Kendo/Web/kendo.default.min.css" rel="Stylesheet" type="text/css" />
 
 
	<script src="../../Scripts/Kendo/Web/jquery.min.js" type="text/javascript"></script>
	<script src="../../Scripts/Kendo/Web/kendo.all.min.js" type="text/javascript"></script>
	<script src="../../Scripts/Kendo/Web/kendo.core.min.js" type="text/javascript"></script>
	<script src="../../Scripts/Kendo/Web/kendo.data.min.js" type="text/javascript"></script>
	<script src="../../Scripts/Kendo/Web/kendo.fx.min.js" type="text/javascript"></script>
	<script src="../../Scripts/Kendo/Web/kendo.popup.min.js" type="text/javascript"></script>
	<script src="../../Scripts/Kendo/Web/kendo.list.min.js" type="text/javascript"></script>
	<script src="../../Scripts/Kendo/Web/kendo.combobox.min.js" type="text/javascript"></script>
	<script src="../../Scripts/velsol.common.js" type="text/javascript"></script>
	<script src="../../Scripts/PageScripts/MobileManager.js" type="text/javascript"></script>
</head>
<body class="bodyBackGround">
	<form id="form1" runat="server">
	<div id="ContentContainer" style="positionrelative;">
		<input id="cmbDateRange" />
	</div>
	</form>
</body>
</html>
This is in MobileManager.js...
(function () {
 
	Velsol.Ajax.setPage("MyTestPage.aspx");
 
	$(document).ready(function () {
 
		$("input#cmbDateRange").kendoComboBox({dataSource:[
			{ text: "Today", value: "Today" },
			{ text: "Week to Date", value: "WeekToDate" },
			{ text: "Month to Date", value: "MonthToDate" },
			{ text: "Year to Date", value: "YearToDate" },
			{ text: "Yesterday", value: "Yesterday" },
			{ text: "Last Week", value: "LastWeek" },
			{ text: "Last Month", value: "LastMonth" },
			{ text: "Last Year", value: "LastYear" },
			{ text: "Custom", value: "Custom" }
		]});
 
	});
 
} ());
Richard
Top achievements
Rank 1
 answered on 06 Feb 2012
0 answers
114 views
i am using pie chart. my scenerio is to have only one categoryAxis (Location), and Series(Amount earned).But for some amount i am not getting the chart but still i am getting the title and labels(Category).  After adding some amount  with that Amount it started working.,
My question is Why it is happening, And  i am expecting this issue in future for some Amount again. 

By the way we are registered user in Kendo.

Do you any one have same issue with Pie chart?   Let you know if i find the reason and solution...,


Help me if you had this issue before and fixed it.


Regards

Karthikeyan Madhavan
Karthikeyan
Top achievements
Rank 1
 asked on 06 Feb 2012
1 answer
205 views

With the future of Silverlight looking bleak, I am closely watching the development of this new UI/Framework. The Telerik Silverlight RadRichTextBox supports a lot of key features that MS Word has (i.e. Advanced formatting and tab stops).

Will tab stops be supported in the first itiration of this control? This feature is extremely important to me for a large part of my user base will be also using iPad when not in the office and since Silverlilght is not supported on iPads, I am going to have to start redesigning a lot of are site since the core of it is Silverlight.

Dimo
Telerik team
 answered on 06 Feb 2012
1 answer
105 views
Hi,

I've found a bug in TabStrip, when I touch really fast the different app tabs the app goes blank.

I tested that on iPhone simulator and on a real device, same result in both.

Using Xcode, phonegap-1.4.1 and iOS 5.0.1

Thank you.

Kind regards,
Petyo
Telerik team
 answered on 06 Feb 2012
3 answers
202 views
Hi,
I have a Telerik Premium subscription which I understand includes a Commercial Licence for Kendo UI Web.

I’ve also downloaded Kendo UI DataViz as this is currently included free with Kendo UI Web. By taking advantage of this limited time offer, does this mean I also have a Commercial Licence for Kendo UI DataViz for as long as I maintain my Telerik Premium subscription?

Regards, Ian
Emilia
Telerik team
 answered on 06 Feb 2012
1 answer
142 views
When set format to YYYY/MM/DD in kendoDatePicker, and then change the month,
the month is always 00.

Results samples.  2000/00/05

Thank You

Sorry for my english.
Georgi Krustev
Telerik team
 answered on 06 Feb 2012
1 answer
55 views
In the site it is mentioned that Blackberry will be supported in version 1.
I do realise that we are now looking at a beta, but could there be some indication when we could expect Blackberry to work?
Because for now, the examples really do not work at all...

Thank you,
Antal
Sebastian
Telerik team
 answered on 06 Feb 2012
2 answers
294 views
I'm use Japanese.

Extend prototype, I use validation's messages, 
kendo.ui.Validator.prototype.options.messages = {
    required: "{0} /* here Japanese*/",
....
}

But  " {0}  " is columns 's  field property.  
I want to use columns 's  title property.

How can I do it?
Taiji
Top achievements
Rank 1
 answered on 06 Feb 2012
1 answer
203 views


Hey guys, I am trying to use conditionals in my template and it keeps blowing up (Invalid template error). Here is what I have

Here's the data:
var data = { type: 'success', message: 'A new contact was created!'};


Here's the template:
<script id="alert-template" type="text/x-kendo-template">
 
    # if (type == 'success'){ #
 
            <div class='alert-message success'>
                <a class="close" href="">x</a>
                <p>
                    #= message #
                </p>
            </div>
 
    # } elseif (type == 'error'){ #
 
            <div class='alert-message error'>
                <a class="close" href="">x</a>
                <p>
                    #= message #
                </p>
            </div>
 
    # } #
 
</script>

Any help would be greatly appreciated! Thanks!






Georgi Tunev
Telerik team
 answered on 06 Feb 2012
2 answers
259 views
First of all kendo ui mobile looks and works great! but I'm getting an annoying bug which I can't fix myself.
I've added a small form to a view and the virtual keyboard works as expected, but when I dismiss it the view isn't resized back so the working view is quite small.
This happens to me on a galaxy nexus running android 4.0.3.; kendoui is run from phonegap 1.3.0. How can I redraw the app after the virtual keyboard is dismissed?
Kamen Bundev
Telerik team
 answered on 06 Feb 2012
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
Drag and Drop
Application
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
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?