Telerik Forums
Kendo UI for jQuery Forum
8 answers
244 views
Whats the minimum browser requirements specifically for IE in order to run Kendo UI smoothly ?
Dimo
Telerik team
 answered on 22 May 2014
7 answers
200 views
Hi
  http://trykendoui.telerik.com/orod

  As you can see the editor doesn't appear to work on mobile, you can't enter any text and it looks odd.

(1) How can I fix this?
(2) I get the impression that the editor should work on mobile, does it?
(3) Are there any Web controls which don't work on mobile?

Is there any documentation about getting these Web controls to work on mobile or should it in general just work?

thanks
Kiril Nikolov
Telerik team
 answered on 22 May 2014
1 answer
112 views
I'm trying to use source binding to an observable array to enable the user to dynamically add new elements as required. My item template has a few hidden fields and a kendo ui editor. The editor is initialized with jQuery in the template. The problem, however, is that the editor is not being initialized properly after the view model has been bound.

I have created a jsBin showing the problem: jsBin

Notice that that editors for the initially-bound items are correctly initialized, but any added elements are not. If I unbind and re-bind the entire view model after each item is added then everything will work, but that seems like serious overkill. Any feedback would be appreciated.
Kiril Nikolov
Telerik team
 answered on 22 May 2014
1 answer
182 views
Hello,

the problem is validator is really slow(beacuse i have about 400 radio inputs - 130 radio button groups). Here is the code of the custom rule of the validator:

$("#testWizard").kendoValidator({
        rules: {
            radio: function (input) {
                     //if type radio and required attribute on the input
                if (input.is("[type=radio]") && input.attr("required")) {
                          //check if any radio button is selected from the radio button group
                    return $("#testWizard").find("[name=" + input.attr("name") + "]").is(":checked");
                }
                return true;
            }
        },
        messages: {
            radio: "Choose one of the items"
        }
    });

The best solution would be that validation code breaks when the first validation error is found. But i don't know how to achieve this.
Maybe any other suggestions?

Thanks

Kiril Nikolov
Telerik team
 answered on 22 May 2014
1 answer
153 views
Hi,

I have a few windows here: http://jsbin.com/manazohu/1/edit and they are draggable, the problem is that when I dragged the inner windows the outer one moved too. How can I make only the one I dragged move, and others stay still? Thanks.

Alex Gyoshev
Telerik team
 answered on 22 May 2014
3 answers
143 views
Hi, is it possible to make a kendoComboBox draggable ?

thanks
regards
Alexander Valchev
Telerik team
 answered on 22 May 2014
1 answer
133 views
Hi,

I am currently developing a Blackberry app using the Kendo-ui mobile and cordova. 

On load i create a kendo.mobile.Application with the platform set to Blackberry to set the css to mimic the native environment. However we prefer the look an feel of the loading activity spinner for the other platforms; 'window.app.showLoading()' particularly the iOS version.

Is it possible to make the spinner inherit the look and feel of another platform whilst keeping the base platform 'Blackberry'?

Ideally when we call window.app.showLoading(); i would like it to use the css for iOS. 

Is this possible and if so how?

Thanks ahead.
 
Kiril Nikolov
Telerik team
 answered on 22 May 2014
1 answer
683 views
I am trying provide a custom type in the schema of the datasoure object of kendogrid. Here is my code sample.


oThis.productsDataSource = new kendo.data.DataSource
            ({
                pageSize: 10,
                transport: {
                    read: {
                        url: crudServiceBaseUrl + "GetAll",
                        dataType: "json"
                    },
                    update: {
                        url: crudServiceBaseUrl + "Post",
                        contentType: "application/json",
                        type: "POST",
                        dataType: "json"
                    },
                    destroy: {
                        url: crudServiceBaseUrl + "Delete",
                        contentType: "application/json",
                        type: "DELETE",
                        dataType: "json"
                    },
                    create: {
                        url: crudServiceBaseUrl + "New",
                        contentType: "application/json",
                        type: "POST",
                        dataType: "json"
                    },
                    parameterMap: function (data, type) {
                        if (type !== "read" && data.models) {
                            return kendo.stringify(data.models[0]);
                        }
                    }
                },
 
                schema: {
                    model: {
                        id: "Id",
                        fields: {
                            Id: { editable: false, nullable: true },
                            Name: { validation: { required: true } },
                            ResourceCostBandId: {
                                //type: "servicePath.SLF.solutionEngine.Model.EntityRef",
                                fields: {
                                    Id: { editable: false },
                                    Name: { editable: false }
                                },
                                validation: { required: true }
                            }
                        }
                    }
                },
                batch: true
            });
//type: "servicePath.SLF.solutionEngine.Model.EntityRef",
How I can specify this type while defining a schema. My "EntityRef" has two fields
id and Name which are of type strings.

var grid = this.element.kendoGrid({
            columns: [
                { field: "Name", title: "Name", width: 200, validation: { required: true } },
                {
                    // Following binding not working but when I change it to following
                    //field: "ResourceCostBandId"
                    // It works but then it set the value on the ResourceCostBandId. I want it to be set on ResourceCostBandId.Id
                    field: "ResourceCostBandId.Id", title: "Cost Band",
                    width: 200, validation: { required: true },
                    template: "#= ResourceCostBandId.Name #",
                    editor: function (container, options) {
                        $('<input required data-text-field="Name" data-value-field="Id" data-bind="value:' + options.field + '"/>')
                            .appendTo(container)
                            .kendoDropDownList({
                                dataTextField: "Name",
                                dataValueField: "Id",
                                dataSource: oThis.controller.$scope.ResourceCostBands,
                                index: 0
                            });
                    }
                },
                { command: ["edit", "destroy"], title: " ", width: "172px" }
            ],
            toolbar: ["create"],
            pageable: { "pageSize": 5, "refresh": true, "pageSizes": true },
            autoBind: true,
            dataSource: oThis.productsDataSource,
            resizable: true,
            editable: 'inline',
            selectable: true,
 
        });

Anybody have idea who I can do that.

Thanks
Alexander Popov
Telerik team
 answered on 22 May 2014
2 answers
143 views
Hello everyone:

I want to modify the default options of window to:
{
    modal     : true,
    animation : false
}
Is there a way to override the default options?

I know that we can create a new kendo plugin which extend from kendo.ui.Window to do that. But that way, we have to change all our kendo widget name, that's what we want to avoid. Any suggestions? Thanks in advance.
hustcer
Top achievements
Rank 1
 answered on 22 May 2014
1 answer
467 views
Hi Team,

Could you please help us to delete a selected row in a grid by using keyboard delete key.

Thanks
Siva
Dimiter Madjarov
Telerik team
 answered on 22 May 2014
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
DropDownTree
ListBox
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
Licensing
PivotGridV2
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
LLM Kit
+? 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?