Telerik Forums
Kendo UI for jQuery Forum
1 answer
170 views
Is is possible to have nested scroll views?

I want a normal scroll view but at the bottom (above the 1st scroll view paging indicator, I want to display another scrollview
Petyo
Telerik team
 answered on 24 Apr 2012
1 answer
136 views
Hi,

Anybody got this Kendo Mobile – Overview (below) in zip file?

http://demos.kendoui.com/mobile/m/index.html#index

The Kendo UI mobile download does not include a working index.html for Kendo Mobile Overview.

I want one that I can put in my hard drive and run, not online, similar to jQTouch.

http://jqtouch.com/

You can download jQTouch and got working index.html + working demos / examples (i.e. Clock and ToDo) that you can use in PhoneGap and QuickConnect.

Thanks.








Petyo
Telerik team
 answered on 24 Apr 2012
2 answers
1.4K+ views
I want a new event to intercept when the window is closing.
The close event do not work, because I can't cancel the action.

What can I do with this version of Kendo Window. (2011.3.1129)

Stef.
Alex Gyoshev
Telerik team
 answered on 24 Apr 2012
0 answers
97 views
Whats the best way to check if kendo is available or not?  I have a widget and I need to be able to determine that the user has linked it into the page or not.
sitefinitysteve
Top achievements
Rank 2
Iron
Iron
Veteran
 asked on 24 Apr 2012
2 answers
177 views
I have a change event hander for my datasource

change: function (e) {
    newData(e);
}

Right now, if the newData exits normally, without hitting the return statement, then all works fine. But if i uncomment the last line in the listing below (which returns nothing) then the datasource is not updated in the Grid that is mapping it. I have tried returning true, false, this and e, but nothing works:

What is an event handler supposed to return (documentation needs to be filled, as well as what the value of e is supposed to be).

btw searchData below is that handle for the datasource

function newData(e) {
    $("#recCount").text(searchData.total());
 
    chartData.series = [];
    chartData.names = [];
    var groups = searchData.view();
    var groupCnt = groups.length;
    var group;
//    if (groupCnt == seachData.total()) return; // nothing grouped, no meaningful chart can be created.
Dr.YSG
Top achievements
Rank 2
 answered on 23 Apr 2012
2 answers
182 views
Hi,

For some reason popup does not work in IE. jsfiddle sample
Access denied error.
FYI: Version 2011.3 1407 does not have this issue.
Maxim
Top achievements
Rank 1
 answered on 23 Apr 2012
0 answers
147 views
Hi,
i have a problem with the dropdown-box. It does not submit any value.
My Form looks like this:
<form action="/setseeker/users/add/" id="UserAddForm" method="post" accept-charset="utf-8">
	<input type="hidden" name="_method" value="POST"/>
<span class="label">Mail</span>
	<div class="input text required">
		<input name="data[User][email]" maxlength="255" type="text" value="" id="UserEmail"/>
	</div>
SOME OTHER FORM ELEMENTS
	<span class="label">Pro Nutzer</span>
	<div class="input select">
		<select name="data[User][ispro]" id="UserIspro">
		<option value="0">Nein</option>
		<option value="1">Ja</option>
		</select>
	</div>

	<div class="submit">
		<input  type="submit" value="Erstellen"/>
	</div>
</form>
The Post looks like:
Array
(
    [_method] => POST
    [data] => Array
        (
            [User] => Array
                (
                    [username] => 
                    [password] => 
                    [email] => test@web.de
                    [newpassword] => 1
                )

        )

As you can see, there is no value for
<select name="data[User][ispro]" id="UserIspro">


I dont know whats wrong. I hope someone of you may help me to fix this error.

Thanks
Nico
Nico
Top achievements
Rank 1
 asked on 23 Apr 2012
0 answers
75 views
Sorry, I found the error in my code and so would like to delete this post.
Lee
Top achievements
Rank 1
 asked on 23 Apr 2012
6 answers
516 views
Hello,

I am using kendo mobile, and I am trying to navigate to a view in page-init event, but it is not working.
<!DOCTYPE html>
<html>
  <head>
    <title></title>   
    <script type="text/javascript" charset="utf-8" src="jquery.min.js"></script>
    <script type="text/javascript" charset="utf-8" src="kendo.mobile.min.js"></script
    <link href="kendo.mobile.all.min.css" rel="stylesheet"/>
  </head>
  <body>
         
        <div data-role="view" id="settings" data-layout="commonLayout" >
            Login
        </div>
         
        <div data-role="view" id="favorites" data-layout="commonLayout" data-init="favoritesPageInit">
            Featured
        </div
         
        <div data-role="layout" data-id="commonLayout">
            <footer data-role="footer">
                <div data-role="tabstrip">
                    <a href="#favorites" data-icon="favorites">Favorites</a>
                    <a href="#settings" data-icon="settings">Setting</a>
                </div>
            </footer>
        </div>
         
        <script type="text/javascript" charset="utf-8">
            var app = new kendo.mobile.Application($(document.body), { initial: "settings" }); 
             
            function favoritesPageInit(e){
                app.navigate("#settings");
            }
        </script>
  </body>
</html>
When I am running the simple code above, click on the 'favorites' icon of the tabstrip, I am expecting to navigate to the 'login' view, but it is not working well.

Am I missing anything?

Thanks,
Amr
AmrElsayed
Top achievements
Rank 1
 answered on 23 Apr 2012
2 answers
598 views
Imagine that I have a kendoui datasource.
Is it possible to add a custom property/attribute like this ?
var dataSource = new kendo.data.DataSource({
    xpto = "3", <---
    transport: {
        read: {
            // the remote service url
            url: "http://search.twitter.com/search.json",
            // JSONP is required for cross-domain AJAX
            dataType: "jsonp",
            // additional parameters sent to the remote service
            data: {
                q: "html5"
            }
        }
    },
    // describe the result format
    schema: {
        // the data which the data source will be bound to is in the "results" field
        data: "results"
    }
});

rlapao
Top achievements
Rank 1
 answered on 23 Apr 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?