Telerik Forums
Kendo UI for jQuery Forum
14 answers
369 views
Hi!

I'm testing the scheduler and seem to be having a problem wrt. getting recurring events to "behave" in a Norwegian setting. The app is an ASP.NET MVC4 web application. I have set both uiCulture and culture to nb-NO in web.config, and I've loaded kendo.culture.nb-NO.min.js in _Layout.cshtml.

If I am in DayView, choosing today's date (which is a Tuesday) and try to set up a weekly recurring event, the dialog has pre-selected Wednesday as the weekday for the recurring event. If I change that to Tuesday manually, all seems to work fine. However, this should not be necessary.  ;-)  

All day names are listed in Norwegian, and the first-day-of-week is Monday, just as it should be. Only the preselected weekday seems to be wrong.

Have I missed something in the config, or is this a bug...?

Best regards,
  Gunnar


gunnisen
Top achievements
Rank 1
 answered on 17 Sep 2013
4 answers
603 views
I have no problem using Kendoui with requirejs except when I try to localize the dates using kendo.culture().  For another project without requirejs I have no issues.

My settings are

require.config({
  paths: {
      jquery: 'lib/jquery-1.7.2.min',
      kendo: 'lib/kendo.web.min',
      kendoCulture: 'lib/cultures/kendo.culture.es-MX.min',
      knockout: 'lib/knockout-2.1.0',
      knockout_kendo: 'lib/knockout-kendo.min',
      underscore: 'lib/underscore-min',
      json2: 'lib/json2',
  }
});
 
require([
    'jquery',
    'kendo',
    'kendoCulture',
    'knockout',
    'knockout_kendo',
    'underscore',
    'json2'
    ], function (
        $,
        kendo,
        kendoCulture,
        ko,
        knockout_kendo,
        _,
        json2) {
 
        // Start of Main Function
        $(function () {
 
 
            kendo.culture("es-MX");
 
              $("#tabstrip").kendoTabStrip({
                        animation:{
                            open:{
                                effects:"fadeIn"
                            }
                        }
 
                    });
 
            // knockout Bindings
   
        });
});

The error message that I get is that kendo is undefined when the kendo.culture("es-MX") command is called.

Thanks,

Alberto



Mihai
Telerik team
 answered on 17 Sep 2013
2 answers
390 views
i have implemented Menu as per demo.
but i click on the menu / mouse over nothing happen.

i need step by step process to work with Kendo Menu, Children and innerChildren.


by 
Shan .A
Kiril Nikolov
Telerik team
 answered on 17 Sep 2013
3 answers
136 views
In this demo - http://demos.kendoui.com/web/grid/detailtemplate.html

Is there any way to customize the show/hide triangle? As in, can we show text/links? Something like "Show Details/Hide Details"?
Kiril Nikolov
Telerik team
 answered on 17 Sep 2013
4 answers
205 views
Hi,

I have defined a ListView declaritively like this:

<ul data-role="listview" data-bind="source: myDataSource" data-template="myTemplate" data-bound="displayEmptyText" data-endless-scroll="true">
</ul>

The displayEmptyText function checks the number of data items in the DataSource and displays "No items available" if there are 0 items. This works when I set endless-scroll to false but doesn't fire the event when endless-scroll is true.

Is this going to be fixed in a coming release? Is there a better way to achieve the display of the "No items available" message?

Cheers

Dean
Petyo
Telerik team
 answered on 17 Sep 2013
2 answers
184 views
Is there any plan to implement something like the Silverlight RadTreeListView in the kendo suite?

The kendo tree is nice, and the kendo grid is cute, but every single Silverlight app I've built over the past 3 years has used the RadTreeListView. My customers are now demanding html solutions instead of Silverlight, but they are still giving me functional specifications that require the functionality of a TreeListView control. I am reluctant to roll my own...

Do you have any plans to add hierarchical support in the grid, or tabular support to the tree?
MikeWiese
Top achievements
Rank 1
 answered on 17 Sep 2013
1 answer
163 views
Hello,

We have developed a mobile application with remote views, where we are navigating between pages using app.navigate. I am now experimenting with the Router and want to set up a route for, say, '/things/:thingId' which displays the remote view 'views/thing-detail.html' for the correct thing (so we can address that particular page from an email, for instance). My code for the route set up is as follows:
application.router.route( "/things/:thingId", function ( thingId ) {
    var store = application.managedContext.getEntityStore( "things" );
    store.find( thingId ) // potentially async call which returns a promise to return a thing
    .done( function ( thing ) {
        application.kendoApplication.navigate( "views/thing-detail.html" );
        application.views.thingDetailViewModel.setSelectedThing( thing );
    });
});
This works, but when kendoApplication.navigate is called the URL is updated to #views/thing-detail.html, which is not what I want to happen (I want it to stay as /thing/123). In the SPA examples I have read, the views and layouts are constructed programmatically. If I want to use the router in this way, will I have to do the same, or is there a way to have the Router and Mobile Application work together (or am I going about this the wrong way!)?
Petyo
Telerik team
 answered on 17 Sep 2013
4 answers
221 views
Hello,

i am evaluating your kendo Ui controls for an web project and got an error while loading data in the kendo scheduler. 
i attached a file of the error stack from chrome to this

this is my javascript file
function showCalendar(userID) {
    var apiUrl = "/svc/pimapi/calendar/" + userID;
 
    $("#scheduler").kendoScheduler({
 
        time: "Europe/Berlin",
        views: ["week", "day", "month"],
        height: 600,
        dataSource: {
            type: "json",
            transport: {
                read: { url: apiUrl }
            },
 
            schema: {
                data: "ResponseItems",
                model: {
                    fields: {
                        Title: { from: "Stichwort", type: "string" },
                        Start: { from: "Terminstart", type: "date" },
                        End: { from: "Terminende", type: "date" },
                        Description: { from: "Memo", type: "string" }
                    }
                }
            }
        }
 
    });
}

some sample data: 

{"ResponseItems":[{"Stichwort":"test","Terminstart":"04.09.2013 16:00:00","Terminende":"04.09.2013 16:30:00","Memo":"testtest","Art":"T2"},{"Stichwort":"testtest","Terminstart":"05.09.2013 12:00:00","Terminende":"05.09.2013 13:00:00","Memo":"testetestetst\r\n\r\nPARTY","Art":"T1"}]}


maybe you could help me showing some appointments in my scheduler?


regards
Dominic
Atanas Korchev
Telerik team
 answered on 17 Sep 2013
3 answers
561 views
I have a grid with row selection and detail for each rows, ex:

var grid = $('#myTable').kendoGrid({
   selectable: "row",
   detailInit: function() { /* load detail items with json ajax request */ },
   change: function() {.... }
}).data('kendoGrid');

When I click on the button that shows the details, the change event is also triggered. Is there a way to prevent that?
jwize
Top achievements
Rank 1
 answered on 17 Sep 2013
2 answers
289 views

How do i freeze the first columns and header of kendo-Grid in a scrollable mode
?

Peter
Top achievements
Rank 1
 answered on 16 Sep 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
Map
Drag and Drop
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
MultiColumnComboBox
Chat
DateRangePicker
Dialog
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Effects
Accessibility
PivotGridV2
ScrollView
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
TaskBoard
Popover
DockManager
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
TimePicker
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
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?