Telerik Forums
Kendo UI for jQuery Forum
3 answers
140 views
If the view does not start with an opening bracket, an exception is thrown. For example try the following.
var view = new kendo.View(" <p>hey ho</p>");
view.render("#app");
Please regard the space character in front of the "p" element.

Michael G. Schneider
Petyo
Telerik team
 answered on 07 Mar 2013
4 answers
861 views
Hello,

I am trying to dynamically create a Kendo Window but the resulting object always comes back undefined for some reason. I am trying to initialize the new window using $('<div />').appendTo(document.body) as the container. The window seems to get created correctly at first - it opens and loads the remote content inside (via Ajax), however, the returned object (container.data('kendoWindow')) is always undefined. Please take a look at the following jsFiddle and inspect the debug logs in the console:

http://jsfiddle.net/obry/2sthT/2/

Thank you
Alex Gyoshev
Telerik team
 answered on 07 Mar 2013
1 answer
116 views
Hi,

I am using multiple mvc3 web applications in a solution. I followed the steps from the kendo documentation and i was able to work with kendo on my startup project. When i add the same steps to the other projects, i get an error on the view saying htmlhelper.kendo not found. I have added the namespace correctly to the /Views/Web.config file, included the js and css flles references on the _layout.cshtml and also added a reference to the Kendo.Mvc.dll on my projects.

Is there anything i am missing out?

Thanks,
Saran
Saran
Top achievements
Rank 1
 answered on 06 Mar 2013
4 answers
529 views
Hello everyone,

I copied the demo grid source for the remote data, and when I click the add button and the popup form is filled out everything looks good.  If I click on the edit button or delete button the datasource is still calling the server with the create part of the transport and ignoring the update/destory.    How can I get this working?

dataSource = new kendo.data.DataSource({
                            transport: {
                                read:  {
                                    url: crudServiceBaseUrl,
                                    dataType: "jsonp"
                                },
                                update: {
                                    url: crudServiceBaseUrl + "?action=update",
                                    dataType: "jsonp",
                                    type: "POST"
                                },
                                destroy: {
                                    url: crudServiceBaseUrl + "?action=destroy",
                                    dataType: "jsonp"
                                },
                                create: {
                                    url: crudServiceBaseUrl + "?action=create",
                                    dataType: "jsonp",
                                    type: "POST"
                                },
                                parameterMap: function(options, operation) {
                                    if (operation !== "read" && options.models) {
                                        return {models: kendo.stringify(options.models)};
                                    }
                                }
                            },
                          etc....
                        });

 $("#grid").kendoGrid({
                        dataSource: dataSource,
                        pageable: true
etc....
});
Craig
Top achievements
Rank 1
 answered on 06 Mar 2013
1 answer
702 views
hi.
   I have implemented a message box using kendoui grid control. I want to use template to implement bold font for showing un-read message. Can anyone tell me what should i do.
Iliana Dyankova
Telerik team
 answered on 06 Mar 2013
3 answers
1.0K+ views
In my application, I need to be able to disable (make unedtiable) a cell based on the value of another cell in the same row.
How can I achieve this using the Kendo UI grid?

Currently, all I can figure out how to do is set the editable attribute for an entire column. But this won't work for me because I need to have some cells in that column be editable while others are not.
Dimiter Madjarov
Telerik team
 answered on 06 Mar 2013
1 answer
163 views
I'm having a problem with the kendo Grid when I configure it for selectable: "row".
If I click around quickly on the grid, I get into a state where the currently selected row doesn't follow the cell currently being edited.
I couldn't figure out how to reproduce it reliably, but usually within 4-5 fast clicks it will happen.
The behavior occurs on Firefox, Chrome, and IE.

See the attached image.
Petur Subev
Telerik team
 answered on 06 Mar 2013
5 answers
133 views
I'm trying to bind a unordered list of checkboxes to a dropdown. It's very similar to cascading dropdowns. The trouble is that when the ul is bound with the template the checkboxes aren't bound to the array in the view model right away. When I change the dropdown selected item the ul updates but the checkes don't update until I click on them. It's difficult to explain so I've created a jsbin here.

In the example, I check App1, then select Administrator from the dropdown, and then select Instructor from the dropdown. App1 is no longer checked but if I click App2 to check it, App1 becomes checked. So the binding must have occurred.

Any help would be appricated.
Daniel
Telerik team
 answered on 06 Mar 2013
4 answers
223 views
I have an application that contains locations of various gas stations and I would like to give the user the ability to open the native maps application on their device to view this location (and then navigate to it if they desire).  Is there a way to do this with Kendo Ui mobile?  I know that typically you just need a link to a particular url to do this from a webpage but it gets opened in a child view in my Kendo app (note I am referring to a hybrid app built with icenium).


I have tried both of the following:
<a href="http://maps.google.com/maps?q=dallas">map link</a>
<a data-rel="external" href="http://maps.google.com/maps?q=dallas">map link</a>

Neither will launch the Google maps application on an android device (tested with Nexus 4 running android 4.2.2)
David
Top achievements
Rank 1
 answered on 06 Mar 2013
3 answers
115 views
I have a grid that has a detailTemplate for which the primary control is a tabstrip.

If my users clicks on the contents of a tabstrip's tab the entire tabstrip becomes draggable.  

I don't have any need for dragging and would like to disable this behavior. Is there any way to do this?

Please let me know if this isn't expected behavior and I can create a fiddle for it.

Thanks
Jim
Top achievements
Rank 1
 answered on 06 Mar 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
Drag and Drop
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
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?