Telerik Forums
Kendo UI for jQuery Forum
1 answer
118 views
Hi,
you can see here:
www.iperbooking.net/mobilekendo/iperbooking
clicking on "mappa" in the menu, the view of google maps appears.
In ipod, iphone 4s, and chrome you can move, zoom in and zoom out inside map correctly.
In samung galaxy nexus you can't move, zoom in and zoom out inside map correctly.
Someone else has noticed this same issue?

Thank you
Petyo
Telerik team
 answered on 17 Dec 2012
1 answer
122 views
I'm using Icenium, but having some KendoUI issues.  I'm trying to use kendo.support.mobileOS.tablet to show a different layout for tablets than phones.  In Icenium, it is identifying both the android simulator and the android tablet simulator as tablets, but this seems to be an issue with the simulator (you can see the ticket here).  My Galaxy Note 2 is identified as a phone (which could really go either way, but is arguably correct).  My HP Touchpad with Android 4.0 installed on it correctly reports being a tablet.  However, my Nexus 10 is not being identified as a tablet because kendo.support.devicePixelRatio = 2.  With the really high resolution displays coming out, I think that the logic for if an Android device is a tablet or not needs to be revisited.  Maybe look only at the resolution, or the resolution divided by the devicePixelRatio?  Thanks for looking into this.

-Keith
Petyo
Telerik team
 answered on 17 Dec 2012
1 answer
200 views
Hi there,

I have a rather weird requirement... currently we are using the upload widget, and is using it to upload zip files. The files can be huge, and a significant portion of the zip content can be discarded and not uploaded.

Thus I am wondering is there anyway for us to:
1.) intercept the upload widget just before it performs the upload
2.) retrieve the user selected files
3.) run it on a custom script which converts the zip files into the smaller desired file
4.) uploads these converted files instead

We are wondering whether is there any API or ways to perform steps 1,2 and 4 using the upload widget? Currently, I listened to upload event, which fulfills steps 1 and 2, but is unsure how we could achieve step 4. Thank you!
Dimo
Telerik team
 answered on 17 Dec 2012
5 answers
327 views
Hello.

I have created ASP .NET MVC 4 Web API application, added the necessary Kendo UI files and settings (js, styles, web.config) and registered the necessary scripts and styles in Index.cshtml.
After that, I added empty Kendo grid in javascript block.
When I launched the application in Internet Explorer 8 browser, I have got the following error: Object doesn't support this property or method.
 When I launched the application in Internet Explorer 9 browser (on another machine), I have got no error and the operation succeeded.

As I can see, the problem is in the Internet Explorer 8 browser.
What should I do to make Kendo UI work properly on Internet Explorer 8?

Thanks,
Alex.
Atanas Korchev
Telerik team
 answered on 17 Dec 2012
16 answers
505 views
We're currently testing the KendoUI Grid to see what is the maximum number of row that can be handled (with an OData Service).

To run our tests, we did create a table with 1 000 000 records.  After displaying 553 385 records, the grid starts to struggles... only half of the row #553 386 is displayed, and then we can't scroll any further in the list.

Did someone else noticed bugs with the grid when displaying more than 500 000 rows?
Rosen
Telerik team
 answered on 17 Dec 2012
3 answers
86 views
I've got an application that uses custom onclick events in the pager controls to redraw html elements in the grid upon paging. This works great for everything except going past the boundries. I haven't been able to figure out a way to prevent the First and Previous buttons from firing the onclick event when the currently selected page is in the first page and preventing the Next and Last buttons from firing onclick events when the currently selected page is the last page.

I've also noticed that once a paging event occurs the numerical links 1, 2, 3.... are rewritten and any custom events assigned to them get removed. How can I tell that a paging event is has just occured and re-bind the onclick events to the paging numerical links?

Thanks!
Marcin Butlak
Top achievements
Rank 2
 answered on 15 Dec 2012
1 answer
81 views
I have created my first Kendo UI Mobile application using Icenium. The app only has a login page at the moment with a couple of fields and a button. When I rotate the phone and switch from portrait to landscape, I get a very annoying flash (black to white to black) as the background adjusts. How to I correct this?
Alexander Valchev
Telerik team
 answered on 15 Dec 2012
3 answers
542 views
I've been trying to figure out how I'd dynamically create tabs on a tabstrip (and consequently, views) and I thought that trying a hand with a datasource and template might be the way to go, after seeing that it works with listviews. The way I currently have it set up is as of the following:

<div data-role="footer">
    <div id="crewlistTab" data-role="tabstrip" data-source="catDataSource" data-template="departmentTabs">
    </div>
</div>
 
<!--Template for tabs-->
<script type="script/x-kendo-template" id="departmentTabs">
    <a href="#" data-icon="contacts">#: AccountDepartmentId#</a>
</script>
 
<script type="text/Javascript">
var catDataSource = new kendo.data.DataSource({
        transport: {
            read: {
                url: "../Server-Side/connectDP.php",
                type: "GET",
                dataType: "json"
            }
        },
        schema: {
            data: "categories"
        }
    });
</script>
But nothing generates.
Is there a way to fix this or another way to go about dynamically creating tabs & views altogether?
Petyo
Telerik team
 answered on 15 Dec 2012
4 answers
684 views
I have a kendo listview where I need to embed a kendo grid inside each listview row (the listview row uses a defined template) ... how can this be accomplished?  

Thanks!
Doug
Nikolay Rusev
Telerik team
 answered on 15 Dec 2012
1 answer
462 views
I am trying to follow along with the sample at http://docs.kendoui.com/getting-started/framework/mvvm/bindings/visible.  I am using Icenium to build a mobile app, my index page consists of:
<!DOCTYPE html>
<html>
    <head>
        <title></title>
        <meta charset="utf-8" />
        <script src="cordova.js"></script>
        <script src="kendo/js/jquery.min.js"></script>
        <script src="kendo/js/kendo.mobile.min.js"></script>       
        <link href="kendo/styles/kendo.mobile.all.min.css" rel="stylesheet" />       
    </head>
    <body>       
        <div id="view" data-role="view">
            <div data-bind="visible: isVisible">some content</div>
            <button data-bind="click: hide">Hide</button>
        </div>
 
        <script>
            var app = new kendo.mobile.Application(document.body, { transition: "slide" });
             
            var viewModel = kendo.observable({
                isVisible: true,
                hide: function() {
                    this.set("isVisible", false);
                }
            });
             
            kendo.bind($("#div"), viewModel, kendo.ui.mobile);           
             
        </script>
    </body>
</html>
Yet when I click the button in the simulator, the content is not hidden ... is this a bug in the version of kendo UI mobile that icenium uses, or am I doing something wrong?  According to the kendo.mobile.min.js it appears to be v2012.2.913.
Alexander Valchev
Telerik team
 answered on 15 Dec 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
ScrollView
Switch
TextArea
BulletChart
Licensing
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
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
TimePicker
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
SegmentedControl
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?