Telerik Forums
Kendo UI for jQuery Forum
0 answers
73 views
In chrome, I change date value to next date from UI ( open date selector to select ).
Sometimes change event is not fired.
John
Top achievements
Rank 1
 asked on 05 Nov 2012
0 answers
103 views
Incremental search is a very useful feature to have for a grid. Does KendoUI grid currently support this functionality? And if not, is it in the works?
Samuel
Top achievements
Rank 1
 asked on 05 Nov 2012
3 answers
176 views
Hi, 

I have added a DateTimePicker in our MVC 4 web application. It looks very odd at first time.
Can you please tell what's a problem behind it and how to solve it?

I have attached screenshot.

In master page, 

<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/kendo/2012.2.913/kendo.common.min.css")" rel="stylesheet" type="text/css" />
        <link href="@Url.Content("~/Content/kendo/2012.2.913/kendo.metro.min.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/kendo/2012.2.913/kendo.dataviz.min.css")" rel="stylesheet" type="text/css" />
    
<script src="@Url.Content("~/Scripts/kendo/2012.2.913/jquery.min.js")"></script>
<script src="@Url.Content("~/Scripts/kendo/2012.2.913/kendo.all.min.js")"></script>
<script src="@Url.Content("~/Scripts/kendo/2012.2.913/kendo.aspnetmvc.min.js")"></script>



Regards.
Kalpesh
Stephen Tearle
Top achievements
Rank 2
 answered on 05 Nov 2012
4 answers
322 views
Hi,

I would like to see a working example of a MVVM Grid with 'popup editing' (edit button for each grid row that will trigger a popup containing a prefilled form representing the grid row that was selected/edited). I've been searching and searching but didn't find any clues or working example. Looks like Kendo MVVM solution is not ready for this...

Basically, I would like to see a MVVM equivalent to the following example:
http://demos.kendoui.com/web/grid/editing-popup.html


Thanks,
Frank
FRANCOIS
Top achievements
Rank 1
 answered on 04 Nov 2012
0 answers
100 views
Hello,

I'm new to Kendo Mobile and like it very much. I made a first application with 2 pages both are using the same layout.
If I now navigate to the 2nd page and press back it says "loading" but doesn't load the first page again.
After that it seems to break my whole application.

Can anyone help me out with my problem?

Thanks for your help.

Regards 
Joachim
Joachim
Top achievements
Rank 1
 asked on 04 Nov 2012
5 answers
1.0K+ views
This is my new Error: Microsoft JScript runtime error: Object doesn't support property or method 'kendoGrid'.

Here is what my grid looks like

@(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", new { classifications = @ViewBag.SelectedCatgory }))
    )
)


Thanks
Dennis
Saurabh
Top achievements
Rank 1
 answered on 04 Nov 2012
0 answers
92 views
Hi,

I have problem with a kendo grid. It is rendered in an window which opens after clicking a button.

Firstly it makes two POST requests.
Secondly in IE an error htmlfile invalid element occurs. Can anybody help me with that?

@(Html.Kendo().Grid<WebUI.Models.ViewModels.Weather>()
.Name(Constants.GridName).Columns(columns =>
        {
            columns.Bound(o => o.DictionaryId)
                .ClientTemplate("<input type='checkbox' name='" + Constants.GridCheckbox + "' value='<#= TestCaseDictionaryId #>' />")
                .HeaderTemplate(
                    @<text>
                        <input type="checkbox" title="@Constants.GridCheckAllTitle"
                            id="@Constants.GridCheckAll" onclick="@(Constants.GridCheckAllOnClick)(this)" />
                    </text>)
                .Width(50)
                .HeaderHtmlAttributes(new { style = "text-align:center" });
            columns.Bound(o => o.Name);
            columns.Bound(o => o.Package);
            columns.Command(command => command
                .Custom(Constants.GridName + "Add").SendDataKeys(false)
                .Text("add")
                .Click(Constants.GridName + "Click")
                .SendState(false)).Width(100).Title("Actions").HtmlAttributes(new { style = "text-align: center" });
        })
        .Groupable()
        .DataSource(dataSource => dataSource.Ajax()
            .Read(read => read.Action("AjaxKendo", "ReadDataFromServer")
                .Data(Constants.GridName + "AdditionalData"))
                .PageSize(50).Group(group => group.Add(e => e.Package)))
        .Events(events => events.DataBound(Constants.GridName + "OnDataBound"))
        .Sortable().Pageable(p => p.Refresh(true)).Filterable().Scrollable(scrolling => scrolling.Height(450)));
Mic
Top achievements
Rank 1
 asked on 04 Nov 2012
1 answer
375 views
I would like to implement a template in the grid toolbar. I am just not sure how to add the "Add a new record" button that will call the
.ToolBar(toolbar => toolbar.Create().Text("Create"))

I am NOT using .NET so I will get an error Uncaught SyntaxError: Unexpected token >

Please see my template code in the jsbin below.

http://jsbin.com/ojevoc/23/edit
OnaBai
Top achievements
Rank 2
 answered on 04 Nov 2012
1 answer
117 views
I have a  mobile app using Kendo Mobile, works great on iOS but doesn't work at all on Android. Is there any easier way to debug what actually is going on with the android browser? Or any other recommendations on testing for android.
Ali
Top achievements
Rank 1
 answered on 03 Nov 2012
1 answer
229 views
I want to show Selected Main Menu Item also if any Sub Menu Item is selected. e.g. we have menu Items are

Main-1
    Sub-1
    Sub-2
    Sub-3
Main-2
    Sub-1
    Sub-2

and so on...

Now whenever user selects Sub-2 of Main-1 Menu then Sub-2 and Main-1 should be shown in different background color or with different style. So how can we do this in Kendo Menu?

Thanks

Anil Lakhani
Jayesh Goyani
Top achievements
Rank 2
 answered on 03 Nov 2012
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
Date/Time Pickers
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)
SPA
Filter
Drawing API
Drawer (Mobile)
Globalization
Gauges
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
OrgChart
TextBox
Effects
Accessibility
ScrollView
PivotGridV2
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
Popover
DockManager
FloatingActionButton
TaskBoard
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
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
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?