Telerik Forums
Kendo UI for jQuery Forum
0 answers
120 views
I'm trying to generate a popup for a grid that gets populated with a model that has nested models as properties.
I know the nested properties will not automatically show up in the edit popup (to my knowledge).
I tried using a custom template for the edit popup containing the additional fields that I require but this doesn't seem to work as-well.
Is it even possible to bind a hierarchical model to a (grid) popup up or must I create my own separate page for such scenarios?

Doni
Top achievements
Rank 1
 asked on 04 Oct 2012
0 answers
133 views
hello
i am using kendo tools getting stuff , i have used kendo window as confirmation box, but getting issues this comes again and again ..
Please help me..
pankaj
Top achievements
Rank 1
 asked on 04 Oct 2012
0 answers
74 views
I create a standard Kendo Grid :
GridBuilder<T> grid = helper.Kendo().Grid<T>()
                .Name(gridName)
                .DataSource(d =>
                    d.Ajax()
                    .Read(r => r.Action(string.Format("{0}GetPage", gridName), controllerName))
                    .PageSize(pageSize)
                )
                .Resizable(r => r.Columns(true))
                .Reorderable(r => r.Columns(true))
                .Pageable()
                .Selectable(select=>select.Mode(GridSelectionMode.Multiple))
                .Filterable()
                .Selectable()
                .ColumnMenu()
                .Scrollable()
                .Sortable(sort=>sort.SortMode(GridSortMode.SingleColumn))
                .Groupable()
The grid renders ok but when I try to filter the Boolean Column it looks like this



Is this a common bug or did I do something wrong ??


Nevermind...I found a solution...had to edit the .css file
Radu-Constantin
Top achievements
Rank 1
 asked on 04 Oct 2012
2 answers
216 views
I have tried my hands at the Kendo Grid example with both static array data and json data from a web service. The console shows the data returned from the web server but my grid does not display the data, although I the column headers and everything else displayed.
Please see code below:
========================================

<!DOCTYPE html>

<html>

<head>

    <title></title>

 <link href="styles/kendo.common.min.css" rel="stylesheet" type="text/css" />

<link href="styles/kendo.default.min.css" rel="stylesheet" type="text/css" />

 

<script src="js/jquery.min.js" type="text/javascript"></script>

<script src="js/kendo.web.min.js" type="text/javascript"></script>

 <script src="js/kendo.all.min.js" type="text/javascript"></script>

   <script src="js/kendo.all.min.js"></script>

    <script src="js/kendo.grid.min.js"></script>

   <script src="js/jquery-ui-1.7.3.custom.min.js"></script>

</head>

<body>

   

        <div id="example" class="k-content">

            <div id="grid"></div>

            <script>

                $(document).ready(function() {

                    $("#grid").kendoGrid({

                        dataSource: {

                                                                         

                            type: "jsonp",

                            transport: {

                                read: "http://localhost:3481/api/employees"

                                                                                              

                            },

                            schema: {

                                model: {

                                    fields: {

                                        Code: { type: "String" },

                                        Name: { type: "String" },

                                        ContactName: { type: "string" },

                                      

                                    }

                                }

                            },

                                                                                  

                         

                            serverPaging: true,

                            serverFiltering: true,

                            serverSorting: true

                        },

                        height: 250,

                      

                        sortable: true,

                        pageable: true,

                        columns: [

                               

                            {

                                field: "Code",

                                title: "ID",

                                width: 100,

                               

                            }, {

                                field: "Name",

                                title: "Name",

                                width: 200

                            }, {

                                field: "ContactName",

                                title: "Contact Name"

                            }

                        ]

                    });

                                                          

                });

            </script>

        </div>

 

 

</body>

</html>



Mahaveer
Top achievements
Rank 1
 answered on 04 Oct 2012
1 answer
125 views
We are looking to re-produce a data table we are building in HTML with the Kendo UI datagrid.  We have a parent/child relationship in the columns (Grocery, Liquor, Pharmacy), but if you click on a column, then the child columns display.  In our example, we clicked on liquor and liquor, beer and wine (the children of liquor) display.  

Is this possible to re-produce in the datagrid provided by Kendo and if so, could you provide an example.  We have looked at the grid within a grid, and visually our users would not like that option.

Thanks,
JD
Alexander Valchev
Telerik team
 answered on 04 Oct 2012
1 answer
35 views
When I make an html table a grid by  setting data-role="grid", the <th> tags can no longer support working buttons which are bound by the viewModel. The following jsfiddle illustrates the issue: http://jsfiddle.net/billmcknight/zHKtb/  As you can see in the plain table the buttons in the <th> tag can be bound to the view model and do work (i.e. call the view model method)  But in the second table where the only change is to set the data-role = grid, the button can no longer be bound by the view model.  Why does it work this way?
Alexander Valchev
Telerik team
 answered on 04 Oct 2012
1 answer
74 views
I'm brand new to the mobile development scene, but I know html/css. I can't seem to setup Kendo UI correctly. Whenever I try to open my app in my browser, nothing but text shows up. I need help in knowing where to extract the Kendo UI files, and how to set them up. Any help would be appreciated.
Iliana Dyankova
Telerik team
 answered on 04 Oct 2012
0 answers
191 views

When i perform a nuget on kendouiweb “Collection was modified; enumeration operation may not execute” error

Reproduce w/ 2012 RTM All upates
File->New MVC4 Application - Add to source control (TFS2012 Service)
-> Internet Application
Goto NuGet GUI and Install KendoUIWeb

Looks to be version 2012.2.710 updated 10/4/2012 which has yet to hit that date in USA EST... weird. Assuming that is some local server date?

Update...

Killed VS2012 as it was stuck in a loop of throwing that error every 30 seconds or so...

  Openedproject and ran:

PM> Install-Package KendoUiWeb
Attempting to resolve dependency 'jQuery (≥ 1.7.1)'.
'KendoUIWeb 2012.2.710' already installed.
Successfully removed 'jQuery 1.7.1.1' from xxx.
Successfully added 'jQuery 1.7.2' to xxx.
Successfully added 'KendoUIWeb 2012.2.710' to xxx.
Successfully uninstalled 'jQuery 1.7.1.1'.

I see the kendo scripts so i am assuming it is good now!


Felickz
Top achievements
Rank 2
 asked on 04 Oct 2012
2 answers
601 views
I know with jquerymobile, you can do something like this in the head and that will show the splash image while loading the web app initially, well, at least for the ios devices.

<link rel="apple-touch-startup-image" href="Images/Icon_114px.gif">

Would it be possible to show some splash screen rather than the white page while loading kendo mobile apps too?

Thanks, looking forward to your answer :)
Joe
Top achievements
Rank 1
 answered on 04 Oct 2012
0 answers
121 views
Using latest kendo.

I have a grid with the default modal popup editor. The form won't display in ie8 unless compatibility view is turned on (just a blank dimmed out screen).

Edit.
After some tinkering, this makes the popup visible in IE8 without compatibility mode.

div.k-window-content
{
    position: static;

}

div.k-window
{
    display: table;


}

Any ideas on what is going on here?
Marc
Top achievements
Rank 1
 asked on 03 Oct 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
Bronze
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
Bronze
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?