Telerik Forums
Kendo UI for jQuery Forum
1 answer
160 views
While coding a hybrid mobile application using kendo ui mobile I faced a the following problem :the drop down list does not have a down arrow when run on android devices. in app.js I am forcing the IOS7 platform to get the same experience on both android and ios

app.application = new kendo.mobile.Application(document.body, {platform: "ios7"});


here is the simple code I used at the example and there are no added styles.
 
<div data-role="view" id="test-view">

<
h3>Drop down list </h3>
<
select>
<
option>Option 1</option>
<
option>Option 2</option>
<
option>Option 3</option>
</
select>
</div>



please check this image showing the different results on different platforms , works fine on ios and the simulator but not on
 android

Demo


I wonder if there is a style rule that I can change to force the drop down arrow to show on the android device.
Kiril Nikolov
Telerik team
 answered on 31 Mar 2014
1 answer
185 views
While coding a hybrid mobile application using kendo ui mobile I faced a the following problem :the drop down list does not have a down arrow when run on android devices. in app.js I am forcing the IOS7 platform to get the same experience on both android and ios app.application = new kendo.mobile.Application(document.body, {platform: "ios7"});here is the simple code I used at the example and there are no added styles.<div data-role="view"
id="test-view">

<h3>Drop down list </h3>
<select>
<option>Option 1</option>
<option>Option 2</option>
<option>Option 3</option>
</select>

</div>please check this image showing the different results on different platforms , works fine on ios and the simulator but not on androidhttp://postimg.org/image/8378mmy7f/I wonder if there is a style rule that I can change to force the drop down arrow to show on the android device.
Kiril Nikolov
Telerik team
 answered on 31 Mar 2014
3 answers
141 views
Hi,

Can I use the Kendo editor in a Kendo mobile application?

Thanks,
Martin
Kiril Nikolov
Telerik team
 answered on 31 Mar 2014
1 answer
77 views
How can I detect which background theme (light/dark) Windows Phone is operating under?
Kiril Nikolov
Telerik team
 answered on 31 Mar 2014
2 answers
153 views
Hi experts,

I'm using Kendo MultiSelect controller, I use MVVM design to bind this controller to a viewModel.
1. 
<select id="selectedCategories" style="width: 700px" data-role="multiselect" data-value-field="name" data-text-field="name" data-bind="source: selectedCategoryOptions, value: selectedCategory, events: { change: selectedCategoryChange }" />
2. 
var viewModel = kendo.observable({
        selectedCategory: [],
        selectedCategoryOptions: [],
});
3.
        var preCustomSubCategories = ["newItem1"];
        var selectedCategory = viewModel.selectedCategory;
        var selectedCategoryOptions = viewModel.selectedCategoryOptions;
        for (var i = 0; i < preCustomSubCategories.length; i++) {
            var item = { name: preCustomSubCategories[i] };
            if (!IsInCategoryArray(item, selectedCategory)) {
                selectedCategory.push(item);
            }
            if (!IsInCategoryArray(item, selectedCategoryOptions)) {
                selectedCategoryOptions.push(item);
            }
        }
        viewModel.set("selectedCategoryOptions", selectedCategoryOptions);
        viewModel.set("selectedCategory", selectedCategory);

If preCustomSubCategories item is exist in the options, it will be selected; but if preCustomSubCategories item is not exist in the options, it will be added to both options list and select list, but in the controller UI show nothing select. It's interesting that when i select a newItem2  again, the previous added newItem1 will show in controller UI, but newItem3 not show in controller UI.


















Chuanlong
Top achievements
Rank 1
 answered on 31 Mar 2014
3 answers
97 views
I keep getting the following error. I have sql server 2008 express full edition on my windows 7 laptop. How can I configure this demo so that it works?

​[SqlException (0x80131904): A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 52 - Unable to locate a Local Database Runtime installation. Verify that SQL Server Express is properly installed and that the Local Database Runtime feature is enabled.)]<br>   System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) +5352431

Sebastian
Telerik team
 answered on 31 Mar 2014
4 answers
212 views
I have a Stock Chart, and somehow I cannot seem to format its CategoryAxis' labels' formatting... 
I use

categoryAxis: {
            labels: {
            dateFormats:
                {
                    months: "MMM",
                    years: "yyyy",
                    weeks: "dd/MM",
                    days: "dd/MM",
                }
            }
}

But I still get the default formats... I need to have "MMM" for months but I always get "MMM 'yy"...
Is there a way to fix this? I am unable to fix it... I know the baseUnit for StockCharts with Navigator is "fit", 
but I tried modifying demos on the web, and it worked, my case is special somehow...

Hope to get the solution asap! Thanks :)
Burak
Top achievements
Rank 2
 answered on 31 Mar 2014
1 answer
113 views
hello all, We have a problem in our application.
We are using DataViz to show a chart inside an iframe.
BUT, the items in the legend are too big and the text not aligned as it should.
this is the example in XXX with the data in the example:
http://trykendoui.telerik.com/IsoD


this is how it's look in out web application:
http://trykendoui.telerik.com/EGag

anyone have a suggestion why the legend items are bigger in our application?
Iliana Dyankova
Telerik team
 answered on 31 Mar 2014
1 answer
84 views
hi,
im using kendo ui and im having a problem. thee is a combo box that hold some text values, and i hv a kendo grid that has many columns. one of the columns has editor template and that editor template has a combobox . that combobox has to be rebinded on the index change of the outer combo box but it just binds on the first time and is not updated when the index of the outer combobox is changed. any help wud be appreciated. can provide more details if need. im pretty new to the mvc.

this is my editortemplate

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<dynamic>"  %>

<%=        
    Html.Kendo().ComboBoxFor(m => m)
   .BindTo((System.Collections.IEnumerable)ViewData["Prd_Groups"])
   .DataValueField("PRD_GROUP")
   .DataTextField("PRD_GROUP")
   .Name("PRD_GROUP")   
   //use the data-skip attribute to prevent adding the default value binding and add the data-bind attribute for the custom binder
   .DataSource(dataSource => dataSource
    
    .Read(read => read.Action("loadprdgrp", "MarketMaster"))
  )
   .HtmlAttributes(new { data_skip = "true", data_bind = "nullableValue: PRD_GROUP" })
 %> 

























Vladimir Iliev
Telerik team
 answered on 31 Mar 2014
11 answers
1.0K+ views
I'm getting error: Microsoft JScript runtime error: Object doesn't support property or method 'kendoGrid'

Grid:
@(Html.Kendo().Grid(Model)
        .Name("CodeManager")   
    .Columns(columns =>
    {       
        columns.Bound(p => p.CodeID);
        columns.Bound(p => p.Status);       
    })   
    .DataSource(dataSource => dataSource   
        .Ajax()        
        .Read(read => read.Action("_Filtering", "CodeManager"))
    ))
Daniel Mitchell
Top achievements
Rank 1
 answered on 31 Mar 2014
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
MultiColumnComboBox
Chat
DateRangePicker
Dialog
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Effects
Accessibility
PivotGridV2
ScrollView
BulletChart
Licensing
QRCode
ResponsivePanel
Switch
Wizard
CheckBoxGroup
TextArea
Barcode
Breadcrumb
Collapsible
Localization
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
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?