Telerik Forums
Kendo UI for jQuery Forum
9 answers
312 views
Hi (Kamen Bundev)

Based on previous post, I have found new problem with internal build under IE7 and 8 control no longer able to select item in the list using mouse.

Thanks,
Maxim
Maushmi
Top achievements
Rank 1
 answered on 04 May 2015
11 answers
274 views
Hi,
I'm successfully using the imageBrowser with localstorage when opening the the "PostsView". I would like to change the folder while in the view but can't get this to work. If I goto another view and set localstorage with a different value I can then open the posts view with the desired folder. I would like to change the folder that the editor uses when changin the select value on the $scope.$watch.

controller
// set all folder options for select control, read localstorage and set a default if not value
$scope.datasets = ["archival","blackfish","bluefish","boats","codfish","crew","fluke", "porgy","strippedbass"];
var lc = localStorage.getItem("galleryid");
if (lc !==undefined){
$scope.dataset = lc;
} else $scope.dataset ='crew';

$scope.$watch("dataset", function () {
     localStorage.setItem("galleryid",$scope.dataset); 
     $scope.editor.imageBrowser.read();
     $scope.$apply();
});$scope.tooloptions = {

tools: [
"bold",
...
],
imageBrowser: {
messages: {
dropFilesHere: "Drop files here"
},
transport: {
read: {
url:'api/galleryKendo/'+$scope.dataset,
type:'GET'
},
create: {
url: '/api/upload',
type: "POST"
},
thumbnailUrl:'api/gallerythumbsKendo/'+$scope.dataset,
uploadUrl: 'http://localhost:8013/upload',// '/api/gallery/crew',//'api/upload',
imageUrl: 'http://localhost:8013/images/'+$scope.dataset+'/{0}'
}
}

html
<textarea style="width:100%;height:500px" kendo-editor="editor" k-options="tooloptions"
k-encoded="false" ng-model="currentPost.postContent"></textarea>
Alex Gyoshev
Telerik team
 answered on 04 May 2015
3 answers
146 views

Hi Team,

 

I am trying to bind JSON data to kendo scheduler. But unfortunately the JSON data i am getting from a rest service is not binding in Scheduler.

Below is the JSON i am getting from service:

 

[
{
"idschedule": 1,
"title": "Clark HAll",
"start": "2015-04-22T01:00:00.000Z",
"end": "2015-04-22T13:00:00.000Z"
},
{
"idschedule": 2,
"title": "Library",
"start": "2015-04-22T01:00:00.000Z",
"end": "2015-04-23T13:00:00.000Z"
}
]

 

 

JS

$(function() {    $("#scheduler").kendoScheduler({        date: new Date(),        startTime: new Date("2013/6/13 06:00 AM"),        height: 600,        views: [            "day",            { type: "workWeek", selected: true },            "week",            "month",            "agenda",            { type: "timeline", eventHeight: 50}        ],      editable:false,               dataSource: {                        transport: {                read: {                    url: "/viewSchedule",                    dataType: "json"                },                parameterMap: function(options, operation) {                    if (operation !== "read" && options.models) {                        return {models: kendo.stringify(options.models)};                    }                }            },            schema: {               id: "taskId",                model: {                                       fields: {                        taskId: { from: "idschedule", type: "number" },
                        title: { from: "title", defaultValue: "No title"},                        start: { type: "date", from: "start" },                        end: { type: "date", from: "end" }                                           }                }            }        }    });
});

 

 

 

Vladimir Iliev
Telerik team
 answered on 04 May 2015
1 answer
98 views
I am using the adaptive usage example in the scroll view.  But I want to add the little pager at the bottom to indicate what page the scroll view is on.  Anyone have a dojo / fiddle example on how to add that?
Vladimir Iliev
Telerik team
 answered on 04 May 2015
1 answer
199 views

I am creating a mobile app using the Kendo Grid for MVC. When a user clicks on one of the column filters, a drop down menu appears. When you then click on the filter options, the window opens to the right and is not visible in the view port. You have to scroll to the right to select any options.

Is it possible to open the sub-menu to the left?

Thanks for you help.

Danail Vasilev
Telerik team
 answered on 04 May 2015
5 answers
611 views
Hello,

I have a table I'd like to display that's small enough to not require server side paging ... I'd really just like to load a Kendo UI Grid on from the table and use paging.

It looks like I need to set page size on the data source, but I'm not sure how to do that when the data source is the HTML Table.

Any suggestions?

Thanks!
Dimo
Telerik team
 answered on 04 May 2015
1 answer
91 views

In IE 10, the column menus disappear when you scroll right.

In this dojo example, scroll down so you can see the scroll bar to go to the right.  Scroll all the way to the right, then back up so you can see the column menus.

You'll see that the column menus disappear altogether.

 http://runner.telerik.io/fullscreen/@chad.gregory@twtelecom.com/alUYi

 This only happens in IE10.  IE11 fixes the issue.  I don't know about IE9 or lower.

Any way around this?

Thanks,

Chad

Nikolay Rusev
Telerik team
 answered on 04 May 2015
3 answers
104 views

Hi 

I have a requirement where let us say we have a meeting in room 1 for three hours, Projector is reserved for one hour, Room is booked 3 hours

Calendar display in grey for three hours, and one hour in different color representing projector.

I wonder if some one can show me a path where different resources can have different reserved times.

Thanks

Nazer
Top achievements
Rank 1
 answered on 01 May 2015
3 answers
202 views

Hi

kendo v2014.2.1008

I am trying to implement one of your chart components and I am unable to get some of the date formats to work as required.

Using the MVC helper, I have tried doing the following:
CategoryAxis(axis => axis
            .Date()
            .MaxDateGroups(12)                 
            .BaseUnit(ChartAxisBaseUnit.Weeks)
                    .WeekStartDay(Model.WeekBeginningDay)
                    .Labels(labels => labels
                                .DateFormats(formats => formats
                                    .Seconds("HH:mm:ss")
                                    .Minutes("HH:mm")
                                    .Hours("HH:mm")
                                    .Days("dd/MM")
                                    .Weeks("dd/MM")
                                    .Months("MMM yy")
                                    .Years("yyyy"))
                              )

If I change the base unit to Months or Years then the formats used above do work (as proven by making changes to them). The Weeks format never seems to be applied.

Using the above, if I inspect the chart object in the developer tools console, I can see that only only some of those specified appear in the chart.options.categoryAxis.labels.dateFormats property (Weeks is not present).

If I set .Autobind(false) and then set these on document.ready() as follows:
        var DateLabelFormats = {
            seconds: "HH:mm:ss",
            minutes: "HH:mm",
            hours: "HH:mm",
            days: "d/M",
            weeks: "d/M",
            months: "MMM 'yy",
            years: "yyyy"
        };
        var chart = $("#ProjectHoursLineChart").data("kendoChart")
        chart.options.categoryAxis.dateFormats = DateLabelFormats;
        chart.dataSource.read();

When I inspect the chart object in the developer tools console I can see all formats are present, but still the Weeks format is not applied.

Can anyone please tell me how I get the date formats to work as specified above (I would like to use ChartAxisBaseUnit.Fit)?

Many thanks in advance

 

T. Tsonev
Telerik team
 answered on 01 May 2015
1 answer
219 views

Hi,

I have a serious performance issue using the Kendo UI Grid with signalr and Oracle Change Notification.

I get approximately 100 rows of data when databinding, but then the dependency pushes 1-2 update per secound. What I see is that the Internet Explorer process is using 45-55% of CPU, and the memory increases with 1MB every 2 secound.

I have tried to use different versions of jquery to eliminate know errors disposing DOM element, but still no luck. I really hope that you guys out there are able to give some input what to do.

Regards Rico

Alexander Popov
Telerik team
 answered on 01 May 2015
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
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?