Telerik Forums
Kendo UI for jQuery Forum
10 answers
482 views
Hello Kendo,

I was really excited about trying the Kendo mobile UI demos, but why do the demos display the virutal mobile device, even on my iPhone?  Can I see how the mobile UI renders the controls natively on my iPhone without the virtual mobile device?

Thank you.
Georgi Krustev
Telerik team
 answered on 10 Feb 2012
2 answers
900 views
Hi,

I am playing with the grid to consume data from a webservice. The webservice accepts only json object. So I try the params "take=5&skip=0&page=1&pageSize=5" to convert to a json string with parameterMap, but this dosn't work. Are there any emxamples?

Cheers,
George
Atanas Korchev
Telerik team
 answered on 10 Feb 2012
1 answer
122 views
Hopefully this is a simple question.  I have multiple places on my page which correspond to different items on the page for which a user can attach a file.  I want to have one file upload element on the page and just be able to call it from other elements.

How do I call the click on the element?  I don't see any information in your documentation telling me how to accomplish this.
Quincy
Top achievements
Rank 1
 answered on 10 Feb 2012
1 answer
387 views
Can you please give me some example code examples for customising the Filter pop up on a grid.

For example we would like to remove the 'Ends With' option from the first drop down and also is it possible remove the second part of filter argument e.g - remove the AND and second drop down on some of columns. Obviously some colums will be different.
Atanas Korchev
Telerik team
 answered on 10 Feb 2012
0 answers
183 views
I have a filterable grid that I need to apply filters at the client for all but one column.  I had hoped to be ablt to detect a filter has been applied to or removed from a column but cannot seem to find the feature.

Is it possible or is there something else I can do?



Matt
Top achievements
Rank 1
 asked on 10 Feb 2012
23 answers
978 views
Hi,

Most of the demos shown on this site are nice and pretty but clearly are happy exampleville projects.  Ie one page one control, everything works fast and nice, no problems ( and no real world challenges)...  My intent with this post is not to slam but to encourage.

We've been using Telerik libs for 3+ years  so this question comes from a lot of history putting together a "real world" web site with poly telerik controls...  There is a big difference between a single page, single control demo and a usable site - there were many integration challenge$ to get to a point where I would call our telerik based project a web site.

I love the Kendoui concepts shown here but fear the same steep path of getting a KendoUI based "portal site" running that we went through on the Telerik AJAX .net side ( to be different sites).

Is there an example project available that approximates a web portal wireframe that has multiple Kendoui controls interacting?

My suggestion for a "real world" portal project would minimally consist of:

A menu top bar with multiple items/sub items where the items were data driven (read: role based)
Each of the menu items opens content below the menu w/o a full page reload
   (any sub items shown from the menu float above the content area below the menu control)
One of the menu content pages should contain a data grid with
  - data originating from a SQL database with a 'large' number of records returned (say at least 10K rows)
    ( datasource is anything other than a static XML file someplace)
  - have the data displayed by the grid be the result of > 1 UI selections from controls above the grid
    (say selections from a calendar and from an auto fill control as 'where' conditions)
  - have the grid scale to fit the available space on the screen below the menu and criteria controls
  - have the rows in the grid scale to fit the available number of rows in the grid (no vert scrolls, pagesize adjusts)
  - resize the page, and have the grid resize to fit along with its data.
  - re-apply a new criteria with the UI controls and then have the grid update with a status indicator
  - have the dates in the returned data displayed in MM/DD/YYYY format
  - have the currency data returned formatted in $12.45 format
 - prevent long returned strings from wrapping to another row
 - have the grid columns sort the contents of the grid while maintaining the size and row count of the grid
 - Allow the data in the grid to be exportable
Have this example render in iOS/mobile and Mac and PC desktop browsers with the appropriate view/controls shown.
Have all of the Kendoui controls take their skin/style from a combo box positioned above the menu control

Each of these seemingly "duh" items were painful development mini project$ in the AJAX.net libraries.

Please let me know how I can help with the creation of  demo above  - I am SURE that the above scenario will not be a one hit wonder request- in fact I'd bet that there are a fair number of users thinking of applications along the same lines but haven't gone through assembling the demos shown on your site into a larger project (like what we did on the Telerik AJAX.net side)

Kind Regards,
AJ



Sebastian
Telerik team
 answered on 10 Feb 2012
2 answers
290 views
I have made a nice grid. Everything was fine until I made it editable.

When clicking in a cell, Firebug showed this error:

model is undefined

In Chrome:

Uncaught TypeError: Cannot call method 'editable' of undefined

After some research, I found the cause of the problem, and its solution. I want to share it here. If someone else faces the same issue, may save a bit of time...

The problem happened because I had a rowTemplate configuration for the grid. When the row is generated by Kendo, it automatically adds a data-id attribute to the table-row (tr) element. To fix the issue, I had to add this to my row template. In my case, the whole row contents are generated by a JavaScript function. I manually added the missing data-id attribute in the tr like this:

function myRowBuilderFunction(data) {
    return '<tr data-id="' + data.my_id_field + '">' + table_cells + '</tr>';
}

Of course, the data-id attribute must have the proper "id" value for that row.

I hope this helps...
João
Top achievements
Rank 1
 answered on 10 Feb 2012
1 answer
134 views
I want to sort a text column alphabetically ascending but with empty values at the end rather than the beginning. Is there a way to specific a custom sort order such as this?

Thanks for your help,
Gary
Rosen
Telerik team
 answered on 10 Feb 2012
3 answers
177 views
I found a bug in IE 7 and 8 (sorry we have to use this versions in Windows XP).
I modified your example to a very basic version. If you try the following code, then you see that the calender popup is NOT closed.
If you add the following line after line 22 (CSS of #container"): "padding: 1px" then it works like expected.

Try this code:
<!doctype html>
<html>
    <head>
        <title>Basic usage</title>
        <link href="../../../source/styles/kendo.common.css" rel="stylesheet"/>
        <link href="../../../source/styles/kendo.default.css" rel="stylesheet"/>
        <script src="../../../source/js/jquery.min.js"></script>
        <script src="../../../source/js/kendo.core.js"></script>
        <script src="../../../source/js/kendo.fx.js"></script>
        <script src="../../../source/js/kendo.popup.js"></script>
        <script src="../../../source/js/kendo.calendar.js"></script>
        <script src="../../../source/js/kendo.datepicker.js"></script>
 
        <style type="text/css">
            body {
            padding: 0;
            margin: 0;
            font: 76% tahoma, verdana, sans-serif;
            color: #303030;
        }
        #container {
            margin: 10px;
        }
        </style>
 
    </head>
    <body>
        <div id="container">
            <input id="datepicker" value="10/10/2011" style="width:150px;" />
        </div>
 
        <script>
            $(document).ready(function() {
                // create DatePicker from input HTML element
                $("#datepicker").kendoDatePicker();
 
            });
        </script>
    </body>
</html>


The bug only exists in IE 7 and 8, not in IE 9 or in Firefox or in Chrome or in Safary.

Thank you for your exciting work - excellent!
Kamen Bundev
Telerik team
 answered on 10 Feb 2012
3 answers
132 views
When using a list in both iOS and Android try scrolling down so the list shows some empty space at the top. Quickly tap that space and the list will het stuck, it won't go back down automatically. Sometimes the list wil disappear completely! I discovered this while using Kendo UI Mobile together with PhoneGap but also noticed the same effect in the browser.
Petyo
Telerik team
 answered on 10 Feb 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
Drag and Drop
Application
Map
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
Licensing
ScrollView
Switch
TextArea
BulletChart
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
TimePicker
FloatingActionButton
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
StockChart
ContextMenu
DateTimePicker
RadialGauge
ArcGauge
AICodingAssistant
SmartPasteButton
PromptBox
SegmentedControl
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?