Telerik Forums
Kendo UI for jQuery Forum
3 answers
540 views
Hi Guys,

Im looking to utilize the Kendo UI Gantt control for a particular scenario in our web application, where multiple tasks need to be displayed on the same row.
Is this configuration mode supported ?

Cheers!
IT
Top achievements
Rank 1
 answered on 12 Sep 2014
3 answers
234 views
We are using the bubble chart in our application displaying bubbles using the theme colors.  To do this we had set the theme member of the options object provided to the chart when created.
Kendo version 2014.1.528 was showing a different color for each bubble (cycling through the colors of the theme)
Attempting to upgrade to Kendo version 2014.2.903  (latest official version) the colors are now all the same.  This is obvious also in the demo area of your website, when looking at the bubble chart it used to show colors,  now it only shows the first color of the theme.

I have a plunker to demonstrate

http://plnkr.co/edit/TS5zxf

if you like, change the reference in the plunker to the older version and the colors will come back.

Is this intended?  If so why and what about those who don't want to dictact the individual bubble colors.

(also tried the latest internal build 2014.2.909 and the result is the same, single color only)


Thanks,
Rob.
Iliana Dyankova
Telerik team
 answered on 11 Sep 2014
1 answer
120 views
It appears that the Q2 release has broken the color shading of the candlesticks in the stock chart. Before the Q2 release, positive changes were signified with the color of the series and negative changes were gray. Now everything after the first two items are gray. This is shown on the demo as well.
http://demos.telerik.com/kendo-ui/financial/index

Alos, are the lines in the navigator suppose to be the same color as the series it represents. When I use multiple series in the stock chart, the series colors in the navigator do not correspond with the color on the stock chart itself. 

Thanks,
Mike
T. Tsonev
Telerik team
 answered on 11 Sep 2014
1 answer
147 views

We have a dropdownlist control which is a Language/Locale selector.  When the user changes their language selection, we make an AJAX call to change the user's current language on the server and then the client will refresh the page on AJAX success (this is the changeLanguage js function).

Because of WCAG 2 AA testing, we need to allow keyboard navigation.  There are 2 ways I see the keyboard user can navigate the dropdown list.
1 - tab onto the control, click Alt-Down Arrow, use the up/down arrow keys to choose the option you want, tab out of the control
2 - tab onto the control, use the up/down arrow keys choose the option you want, tab out of the control

Scenario 1: Tabbing out of the control should fire the change event and the close event.  If we associate changeLanguage function with either of these, we're looking good.
Scenario 2: We don't want to use the change event since the user may want to arrow up/down through several options before tabbing off the control, and that tabbing off the control should make their selection and fire the event.  The close event doesn't fire since we never opened the dropdown.  What makes sense would be to have an onblur event, but that event is not available via Kendo (AFAIK)

For both Scenario 1 & 2, the onblur event should work - or we can attach the changeLanguage function both both close and onblur, which should cover both scenarios.

So, for the onblur event, do I need to go outside the kendo events and use jQuery?  If I need to use jQuery onblur, on which element of the dropdownlist should I attach the event handler to?

Thanks,
--Ed

Georgi Krustev
Telerik team
 answered on 11 Sep 2014
2 answers
218 views
Is there a way to make the Kendo DropDownLists behave the way normal <select> works on the iPhone or an Android device when viewing a web page? For example, if you select a dropdownlist, instead of the list opening, an overlay is put on top of the browser screen that lets you scroll through the list.
Georgi Krustev
Telerik team
 answered on 11 Sep 2014
2 answers
383 views
Hi,

I'm using a Scheduler defined like this:

$("#scheduler").kendoScheduler({
    date: new Date(),
    startTime: new Date("2013/11/27 07:00 AM"),
    endTime: new Date("2013/11/27 06:00 PM"),
    workDayStart: new Date("2013/1/1 08:00 AM"),
    workDayEnd: new Date("2013/1/1 6:00 PM"),
    selectable: true,
 
    views: [
        { type: "day", allDaySlot: false },
        { type: "week", selected: true, allDaySlot: false },
        "month",
        "agenda"
 
    ],
 
    editable: {
        template: kendo.template($("#schedulerTemplate").html())
    },
    dataSource: _dataSourceDetailedAppointmentScheduler,
    edit: _api.onEditScheduler,
    cancel: _api.onCancelScheduler,
    save: _api.onSaveScheduler,
    navigate: _api.onNavigate,
    moveStart: _api.onMoveStart,
    mobile: true,
    messages: {
        cancel: "Cancelar",
        date: "Fecha",
        deleteWindowTitle: "Borrar visita",
        event: "Visita",
        save: "Guardar",
        showFullDay: "Mostrar las 24 Horas",
        showWorkDay: "Mostrar horas laborales",
        time: "Hora del día",
        today: "Hoy",
        editor: {
            editorTitle: "Crear/Editar Visita"
        },
        views: {
            day: "Día",
            week: "Semana",
            month: "Mes",
            workWeek: "Semana laboral"
        }
    },
    resources: [
        {
            field: "CommertialRepresentativeId", // The field of the scheduler event which contains the resource identifier
            title: "Representante Comercial", // The label displayed in the scheduler edit form for this resource
            dataSource: [
                {
                    text: "Representante 1", // Text of the resource instance
                    value: 1, // Identifier of the resource instance, use that value to assign an event to this instance.
                    color: "#ff0000" // Used as the background of events assigned to this resource.
                },
            ],
            multiple: false // Indicate the this is a multiple instance resource
        }
    ]
 
});
But the k-current-nav styled anchor element:

<li class="k-state-default k-nav-current"><a role="button" href="#" class="k-link"><span class="k-icon k-i-calendar"></span><span data-bind="text: formattedDate"></span></a></li>
Does not display a formattedDate as it should. I went through the API but there seems to be no way to override this "formattedDate" property.

Could you please point me in the right direction?

Regards.

PS: I've attached an image file that shows an icon without any text where the formattedDate range should appear.
Dorian
Top achievements
Rank 2
 answered on 11 Sep 2014
1 answer
663 views
I'm trying to find an example of using server-side validation with scheduler.

All I can find is examples on using it with the grid, but the set up is very different so it's unclear how to adapt it.

In particular, the validation on grid examples I've found all do things like this:

function showMessage(container, name, errors) {
        //add the validation message to the form
        container.find("[data-valmsg-for=" + name + "],[data-val-msg-for=" + name + "]")
        .replaceWith(validationMessageTmpl({ field: name, message: errors[0] }))
    }
Yet there is no field with attribute 'data-valmsg-for' by default, so this will not work unless I manually insert one, yet there is no example of how this should be laid out.

When using client side validation, an error field is automatically added which looks like this:

<div class="k-widget k-tooltip k-tooltip-validation k-invalid-msg" style="margin: 0.5em; display: block;" data-for="last_name" role="alert"><span class="k-icon k-warning"> </span>last_name is required<div class="k-callout k-callout-n"></div>
But again this doesn't exist pre-error.

How can I hook these two things together?

Cheers, Paul.
Georgi Krustev
Telerik team
 answered on 11 Sep 2014
2 answers
208 views
Hey! I think there's a bug in the .center() method on map. Check it out:

http://dojo.telerik.com/azAsA

It tries to recenter on the same lat/lng after 5 seconds, but goes to Algeria haha
Tucker
Top achievements
Rank 1
 answered on 11 Sep 2014
1 answer
324 views

Hi,

Our data access layer returns a DataTable generated by a stored procedure using ADO .Net.
I've seen and tried your Kendo.DynamicLinq NuGet package. It works well with "normal" IQueryable objects, but I have the following issues:

Dynamic Linq queries don't work with Linq to DataSets
Converting the DataRows into DynamicObjects doesn't work with Dynamic Linq

Is there an example available to achieve what I want? (Namely server side paging, sorting & filtering)

Thank you.

Matt Barker
Top achievements
Rank 1
 answered on 11 Sep 2014
1 answer
138 views
In my custom editor template, the values of the html input fields only get serialised correctly if I manually enter them. If I use jquery to clear an element, it does not get synced with kendo, and the original values get serialised instead. 

How can I get kendo to sync? Is there a way to set a field through kendo instead?

Cheers, Paul.
Vladimir Iliev
Telerik team
 answered on 11 Sep 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
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
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
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?