Telerik Forums
Kendo UI for jQuery Forum
0 answers
85 views
Hi,

Please help me to make upload sucsess in ipad by replying with exact code.

Regards,
Praveen.
Praveen
Top achievements
Rank 1
 asked on 06 Jul 2012
0 answers
137 views
Hi,

I am using Keno UI tools in my Mobile Application Development. Here I am using Kendo Datepicker which  works fine in Ipad,but not display the selected date in Android phone.Actually the date is there ,but not visible in the andriod browser. How to solve this issue ? Please help.!

Regards,
Praveen.
Praveen
Top achievements
Rank 1
 asked on 06 Jul 2012
4 answers
893 views
When I use the ****  data-bind="source: datasource"  **** setting on a ListView within a Mobile View, I end up with all of my data on one long, single list item, instead of separate items.  What a I doing wrong?  Is this an inappropriate use of data-bind?  

If I instead initiate the ListView separately in Javascript then it properly displays the items...  though we were trying to pass all of this through MVVM.  Is this not the right way to do this?

<!DOCTYPE html>
<html>
<head>
    <script src="jquery.min.js" type="text/javascript"></script>
    <script src="kendo.all.min.js" type="text/javascript"></script>
    <link href="kendo.mobile.all.min.css" rel="stylesheet"
        type="text/css" />
    <link href="kendo.common.min.css" rel="stylesheet"
        type="text/css" />
    <link href="kendo.default.min.css" rel="stylesheet"
        type="text/css" />
</head>
<body>
    <div data-role="view" data-title="Home" id="vHome" data-transition="slide">
        <ul data-role="listview" data-style="inset">
            <li><a href="#vMyDatabase">This Breaks</a></li>
            <li><a href="#vMyDatabase2">This Works</a></li>
        </ul>
    </div>
    <div data-role="view" data-title="My Database" id="vMyDatabase">
        <ul id="lMyDatabase" data-role="listview" data-style="inset" data-template="tMyDatabase"
            data-bind="click: ShowCustomer, source: MyDatabase">
        </ul>
    </div>
    <div data-role="view" data-title="My Database" id="vMyDatabase2" data-init="initTest">
        <ul id="lMyDatabase2" data-role="listview" data-style="inset" data-template="tMyDatabase"
            >
        </ul>
    </div>
    <script id="tMyDatabase" type="text/x-kendo-template">
        <div style="font-weight:bold;">#= Name #</div>
        <div style="font-weight:normal;font-size:smaller">#= City #, #= State #</div>
        <div style="font-weight:normal;font-size:smaller">ID: #= ID #</div>
    </script>
    <script type="text/javascript">
 
        var TestData = [
            { Name: "Company A", City: "Phoenix", State: "AZ", ID: "00000001" },
            { Name: "Company B", City: "Los Angeles", State: "CA", ID: "00000002" },
            { Name: "Company C", City: "Santa Fe", State: "NM", ID: "00000003" },
            { Name: "Company D", City: "Boulder", State: "CO", ID: "00000004" },
            { Name: "Company E", City: "Seattle", State: "WA", ID: "00000005" },
            { Name: "Company F", City: "Portland", State: "OR", ID: "00000006" },
            { Name: "Company G", City: "San Diego", State: "CA", ID: "00000007" },
            { Name: "Company H", City: "Boise", State: "ID", ID: "00000008" }, 
        ];     
 
        var app = new kendo.mobile.Application($(document.body), {
            initial: "vHome"
        });
 
        var viewModel = kendo.observable({
 
            ShowCustomer: function(e) {
                // something here for drilldown
            },
 
            MyDatabase: new kendo.data.DataSource.create({ data: TestData })
        });
 
        kendo.bind($("#vMyDatabase"), viewModel);
 
 
        // And this way works
         
        var dsMyDatabase = new kendo.data.DataSource.create({ data: TestData })
 
        function initTest() {
 
            $("#lMyDatabase2").kendoMobileListView({
                dataSource: dsMyDatabase,
                template: $("#tMyDatabase").text(),
                style: "inset",
                click: function (e) {
                    // something here for drilldown
                }
            });
        }
    </script>
</body>
</html>

d2uX
Top achievements
Rank 1
 answered on 06 Jul 2012
6 answers
254 views
Hello,



I am attempting to use the Editor control as an EditorTemplate for HTML fields in my MVC4 application. The editor will display fine, but for some reason the code will never update and the value always comes back up the Model as null. Any ideas what I am doing wrong?



Here is the code for Html.cshtml:



@model System.String

@Html.AntiForgeryToken()

<textarea id="@Html.DisplayNameFor(c => c)" rows="10" cols="30" style="width:500px;height:250px">@Model</textarea>

<script>

$(document).ready(function () {

$("#@Html.DisplayNameFor(c => c)").kendoEditor();

});

</script>



Thanks!
Mikael
Top achievements
Rank 1
 answered on 06 Jul 2012
1 answer
189 views
I need to change the text of the loading popup. I have tried the following configuration:

<script>
     
new kendo.mobile.Application($(document.body), {
         loading
: "myNewLoadingText"
     
});
</script>

but then I specify a 'loading' parameter, the popups omit the text completely. Is the above code incorrect or is this a bug with Kendo UI? 
Iliana Dyankova
Telerik team
 answered on 06 Jul 2012
0 answers
183 views
Hi,

How to set automatically wrap text for labels on the categoryAxis if they are too long.Please find the attached

Please find the attached sample graph.

Thanks!
Rajesh
Rajesh
Top achievements
Rank 1
 asked on 06 Jul 2012
0 answers
65 views
Hi,
  i think you cannot do that.i have search but some content have missing..you can see on that kendo code is scrap.

attorneys
www.attorneysmax.com/
Peter
Top achievements
Rank 1
 asked on 06 Jul 2012
0 answers
76 views
Hi,

   I have rquirement to show series label text in two lines.
   Is it possiable to give html template format for series label text..?

   Please find the attached sample graph.


thanks,
Rajesh
Rajesh
Top achievements
Rank 1
 asked on 06 Jul 2012
2 answers
234 views
Hi everyone,

i want to ask the kendo team if there are any plans to implement

a) reordering tabs by dragging a tabHeader
b) being able to move a tab to a different tabControl by dragging a tabHeader.

Much the same functionality as fro instance in your WPF Dockmanager.
Alternatively, will there be (or is there already) any support for drag/drop with the tabHeaders?

Thanks a lot for a great framework which saves me so much time and the logic of which is even a thing of beauty!

Greetings
Kai
Kai Schiffer
Top achievements
Rank 1
 answered on 06 Jul 2012
4 answers
1.8K+ views
Hello,

I'm using a template for my tooltip, and I'd like to format the ${value} part of the template. Can you let me know how the syntax would look to format as say currency? Thanks

tooltip: {
    visible: true,
    template: "${category}<br />Claim Cost: ${value}"
}
Alex
Top achievements
Rank 1
 answered on 05 Jul 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
Application
Map
Drag and Drop
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
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?