Telerik Forums
Kendo UI for jQuery Forum
3 answers
240 views
Hi,

We're trialing Kendo UI Mobile for an iOS app targeted for the iPad. The pane navigation in the SplitView doesn't seem to be working. Navigating within the same view works but links with the target set to the other pane don't work. There are no errors in the console.

Tried with v2013.2.626 and v2013.1.514, also using jQuery 1.9.1 and RequireJS. The online demo works in the browser but not in the contained app. Please advise. Thanks

<div data-role="splitview">
     
    <div data-role="pane" id="side-pane" data-layout="side-default">
         
        <div data-role="view" data-title="Level 1" id="menu-root">
            <ul data-role="listview">
                <li><a href="#menu-sub" >Sub Menu</a></li>
            </ul>
        </div>
         
        <div data-role="view" data-title="Level 2" id="menu-sub">
            <ul data-role="listview">
                <li><a href="#test" data-target="main-pane">Test</a></li>
                <li><a href="#messages" data-target="main-pane">Messages</a></li>
            </ul>
        </div>
         
        <div data-role="layout" data-id="side-default" >
            <div data-role="header">
                <div data-role="navbar">
                    <span data-role="view-title"></span>
                </div>
            </div>
        </div>
         
    </div>
     
 
     
    <div data-role="pane" data-layout="main-default" id="main-pane">
         
        <div data-role="view" data-title="Test" id="test">
            <p>Test!</p>
            <a href="#messages" data-role="button">Go To Messages</a>
        </div>
         
        <div data-role="view" data-title="Messages" id="messages">
            <p>Messages!</p>
        </div>
         
        <div data-role="layout" data-id="main-default">
            <div data-role="header">
                <div data-role="navbar">
                    <span data-role="view-title"></span>
                </div>
            </div>
        </div>
    </div>
     
</div>
Petyo
Telerik team
 answered on 17 Jul 2013
2 answers
382 views
I am using the 2013.1.514 build of kendo dataviz and was wondering if there a way to disable the hover over/click event on the chart's legend area as I don't require this functionality.

Thanks

Chris




Chris
Top achievements
Rank 1
 answered on 17 Jul 2013
1 answer
139 views
I have a list of Customer objects in my Model that appear in as a simple grid.

I need to be able to let the user select various customers then press our "Process Selected Customers" button.

Does the grid provide a select check box option for rows so that I can then get a list of the customers the user selected?

Note: It "Must" have check boxes, that's a requirement I have been given.
Dimiter Madjarov
Telerik team
 answered on 17 Jul 2013
1 answer
1.1K+ views
The second to open is not working.

<script>
$(document).ready(function() {
var window = $("#window"),
undo = $("#undo")
.bind("click", function() {
window.data("kendoWindow").open();
undo.hide();
});

var onClose = function() {
undo.show();
}

if (!window.data("kendoWindow")) {
window.kendoWindow({
width: "600px",
title: "About Alvar Aalto",
close: onClose
});
}
});
</script>

http://demos.kendoui.com/web/window/index.html

kendoui.complete.2013.1.514.trial.zip
Dimo
Telerik team
 answered on 17 Jul 2013
2 answers
675 views
I'm converting a web site that puts complex Razor code into a TD cell. How is Razor code put into a template on a Kendo Grid?

Sample of the code that needs to get run and put into a cell:

@if (item.IsActionAvailable())
      {
       using (Html.BeginForm("Subscribe", "abc", FormMethod.Post, new { id = @formId }))
                       {
                               <div id="@divId" class="subForm">
Dimiter Madjarov
Telerik team
 answered on 17 Jul 2013
1 answer
1.2K+ views
My Model has a Datetime that comes as a null sometimes. This renders as 1/1/0001

I can't edit the Model.

Is there a way to put in a condition in the Client Temple so that nulls are not displayed, something like this??

@(Html.Kendo().Grid(Model.Items as IEnumerable<XYZ>)
        .Name("KendoCrGrid")
       .Columns(columns =>
                {
                columns.Bound(e => e.SignUpDate).ClientTemplate("#= <condition> ? kendo.toString(date, 'MM/dd/yyyy')#");
Dimiter Madjarov
Telerik team
 answered on 17 Jul 2013
6 answers
179 views
I have added two TextBoxes and a button in an html page. When user focus on the textboxes the softkeyboard is displaying and its appearing over the textboxes in such a way that the user cannot see the textboxes and its content. Please provide a solution to prevent the overlapping of softKeyboard over the textbox.


Thanks,
Amrutha
Top achievements
Rank 1
 answered on 17 Jul 2013
2 answers
110 views
on an iPad or iPhone I am unable to predictably allow for a datapoint to be selected on a series for a line.  when I run under chrome on a desktop this works very well.

This isn't a bug as I believe the issue is simply that the end of a person's finger is quite a lot larger than the circle that represents the data point.  As a result the "click" events just aren't getting close enough.

Is there any way to allow for a larger hit radius on a point something I could do that would pickup events for near misses?  

I am using a single line series on top of a single area series.  The points are spaced apart enough that I if I had access to the datapoint's true x,y position I could probably make something work.
Jim
Top achievements
Rank 1
 answered on 16 Jul 2013
1 answer
168 views
I know there are server wrappers for ASP.NET MVC, JSP and PHP.

Why aren't there server wrappers for ASP.NET webforms?  Is there a technical reason or simply not enough demand?
Kiril Nikolov
Telerik team
 answered on 16 Jul 2013
3 answers
199 views
Hello,

I am having trouble with rendering a DatePicker.  When I use test data with a date format of 07/18/2013 the datepicker renders correctly.  When I get data from a web service call from a MySQL database the format is 2013-07-18 00:00:00 when retrieved using a SQL statement from phpMyadmin.  The date returned from as JSON is formatted as a JSON date /Date(1374120000000-0400)\.  When I use the JSON date the DatePicker does not render and instead shows a date Thu Jul 18 2013 00:00:00 GMT-0400 (Eastern Daylight Time).  What step(s) am I missing that will allow me to correctly render the DatePicker with the JSON formatted date?

Scott
Kiril Nikolov
Telerik team
 answered on 16 Jul 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
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
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?