Telerik Forums
Kendo UI for jQuery Forum
1 answer
82 views
If you set the application wide useNativeScrolling:true then it breaks the app if you have any ListViews like below with pull to refresh enabled
<ul data-role="listview" data-source="app.dataSourceGetUsers" data-pull-to-refresh="true"  data-auto-bind="false"
data-template="userItem" class="viewList">
    </ul>

This will generate this error and stop the app from processing any more 
Uncaught TypeError: Cannot call method 'setOptions' of null
Steve
Telerik team
 answered on 07 Nov 2013
1 answer
92 views
I noticed that my app shows only the first 5 tabstrip items in a Kendo Mobile UI app when the app is in portrait. Turning the phone makes the app show my 6th item on the tabstrip.

Is there a way to show smaller items in portrait mode or is there a preferred way to have a tabstrip item called 'more' that when clicked shows a popup with additional tabstrip items?

I have not been able to find such a thing on the Kendo site.
Steve
Telerik team
 answered on 07 Nov 2013
2 answers
163 views

Hi,

I am unsing Kendo with MVC 5. I am binding my Grid over Ajax. Reading works fine, but the controller method is never called. (see project attached)

thanks

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Customer_Update([DataSourceRequest] DataSourceRequest request, CustomerViewModel customer)
{
if(customer != null && ModelState.IsValid)
{

}
return Json(new[] { customer }.ToDataSourceResult(request, ModelState));


@(Html.Kendo().Grid<Rainbow.ViewModels.CustomerViewModel>()
    .Name("CustomersGrid")
    .Events(events => events.DataBound("onDataBound").DataBinding("onDataBinding").DetailInit("onDetailInit"))
    .Columns(c =>
    {
        c.Bound(i => i.Number).Title("Number");
        c.Bound(i => i.CompanyName).Title("Name");
        c.Command(command => command.Edit());
    })
    .Editable(editable => editable.Mode(GridEditMode.InLine))
        .DataSource(d => d.Ajax()
            .Events(events => events.Error("error_handler"))
            .Model(model => model.Id(c => c.Id))
            .Read(r => r.Action("CustomersGridData", "Customer"))
            .Update(r => r.Action("Customer_Update", "Customer")))        
    .Sortable()
    .Filterable()
    .Pageable())



25 Oct (Link to this post)

Hi,

I am unsing Kendo with MVC 5. I am binding my Grid over Ajax ( see attached project and code below). I receive the Date for the LastModified column 
with the Json result but the date is not displayed. 
I have already made another project with kendo with a similar setup and everything worked perfectly

25 Oct (Link to this post)

Hi,

I am unsing Kendo with MVC 5. I am binding my Grid over Ajax ( see attached project and code below). I receive the Date for the LastModified column 
with the Json result but the date is not displayed. 
I have already made another project with kendo with a similar setup and everything worked perfectly
Martin Ennemoser
Top achievements
Rank 1
 answered on 07 Nov 2013
1 answer
406 views
Hello, 
I have a datasource that is an javascript array(from json), and I attach him to my grid, until now everything is OK, I see my data on the grid :), 
but I want that every time that my datasource is changed(the array that I am attached to) will automatically update my grid, like auto bind,
for example, if I change value in a row in my javascript array, I want to see the change immediately in my grid , or if I add new row to my array, I want to see the change occur right away.
how can i achieve that?
Thanks, almog
Dimiter Madjarov
Telerik team
 answered on 07 Nov 2013
2 answers
302 views
Hi,

We have plans to migrate from ASP.NET Scheduler to KENDO UI MVC Scheduler and we are investigating if there are anything that's missing for this to work.

I cannot find the function to parse a rule in c# Kendo UI.

I need to iterate through the rules occurances to do some business logic.

I am also looking to change the rendering behaviour of the scheduler like done in this post
http://www.telerik.com/community/forums/aspnet-ajax/scheduler/oder-of-entry-in-scheduler.aspx#1155620
Is there a way to do this in Kendo UI?
Chris
Top achievements
Rank 2
 answered on 07 Nov 2013
1 answer
90 views
Hi all. I have an image on a view which i want to use as a 'back' button. Setting [data-role="backbutton"] gives me the right functionality but it crops the image up into the shape of the back button.

I have several views linking to this view, so I can't use the href option to link to the previous view.

Is there a way I can get the functionality of the back button without [data-role="backbutton"]?

Thanks!
Kiril Nikolov
Telerik team
 answered on 07 Nov 2013
6 answers
523 views
Is there any information or samples how to enable Kendo and ASP.NET AJAX Controls interoperate?   Until Kendo is as robust as the other controls you have, I need to somehow mix the two, but I am not sure what the best approach is for doing so.

Can someone offer some guidance?
Naveen
Top achievements
Rank 1
 answered on 07 Nov 2013
1 answer
398 views
Hello,

I need to be able to determine how the change event is triggered for a combo box.  For instance if the user just entered text and the AutoComplete Suggest opened the box ...or...if the user clicked the arrow to open the box.

I need to do something different in each case.

Is there anyway to determine this ?

Thanks,
Carrie
Dimo
Telerik team
 answered on 07 Nov 2013
1 answer
85 views

Here is some mock data:

[
        { Date: "10/15/2013", Alpha: .13, Beta: 3.63, Delta:22.18, Gamma: 25.94 },
        { Date: "10/16/2013", Alpha: 32.35, Beta: 20.25, Delta: 29.08, Gamma: 81.68 },
]


I have 4 series defined in my line chart for each of the data points.  I have set the first three to be stacked lines and the fourth (Gamma) to be non-stacked line on a second axis.  Both axes are set to min:0 and max: 100,  I am expecting the Gamma point to be at its true data value - for example 25.94 in the first data set above, because it is not stacked.  Instead it is still stacking, therefore being graphed at 51.82.

If I change the fourth series to area or bar, it works as expected, without changing anything else.

Bug?
Iliana Dyankova
Telerik team
 answered on 07 Nov 2013
3 answers
143 views
I have a single page app but I'd like to give more feedback to the user when the initial bulk of markup and script is loaded. Is there a supported way or me loading only a very small initial page which subsequently fetches and loads into the DOM all the other views that the application will use? This was I can show a progress bar or similar instead of just a blank screen. 
Petyo
Telerik team
 answered on 07 Nov 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
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?