Telerik Forums
Kendo UI for jQuery Forum
2 answers
189 views

Hi,

I want to change dynamically category axis tile. I'm using angular and want to do that angular way. Here is code: http://dojo.telerik.com/@arturkula/ulOgI/13

When clicking on category radios the category axis title should change. 

The title changes only when i'm using jquery.

Can it be achieved not using jquery?

Thanks for your help.

 

Artur
Top achievements
Rank 1
 answered on 04 Nov 2015
2 answers
156 views

Hello,

 I have a scheduler setup (Kendo UI) with a recurring event every 2 weeks. Everything seems fine until you get to the New Year, it then goes to the first of the year (even though that is only 1 week away from 12/25/2015) and then continues to recur every 2 weeks from 01/01/2016.

 $("#dvCalendar").kendoScheduler({
date: new Date(),
views: [{ type: "month" }],
selectable: false,
dataSource: {
data: [{
id: 1,
start: new Date("2015/11/13 8:00"),
end: new Date("2015/11/13 17:00"),
title: "Payday",
description: "Payday",
recurrenceRule: "FREQ=WEEKLY; INTERVAL=2;"
}],
},
editable: false,
});

 

Result is fine until 12/25/2015, it then goes to 1/1/2016 and proceeds to recur every 2 weeks from 1/1/2016...

 Am I missing a setting or something? I am using version "Kendo UI Beta v2015.3.916" of the file kendo.web.min.js.

Thanks!

Vladimir Iliev
Telerik team
 answered on 04 Nov 2015
1 answer
133 views

Hey,

I'm using php wrappers in order to build my Kendo remote binding Grid.
the restfull server is rendering the output as a JSON format using jsonapi.org v1.0 standard.

ex: {
  "links": {  ...  },
  "data": [
    {
      "type": "people",
      "id": "7",
      "attributes": {​...},
      "relationships": {...},
      "links": {...}
    }
  ],
  "included": [{...}]
}

using this standard will force you to separate the "foreign keys( ex: positions of the people , compound objects)" and include it into the "included" attribute
you can read more about it in the following link: http://jsonapi.org/format/#document-compound-documents

in my code:

working code:

$EmailAddressField = new \Kendo\Data\DataSourceSchemaModelField('EmailAddress');
$EmailAddressField->type('string');
$EmailAddressField->from('attributes.EmailAddress');
$schema = new \Kendo\Data\DataSourceSchema();
$schema ->model($model)->data('data');​

not working code:

$PositionField = new \Kendo\Data\DataSourceSchemaModelField('Position');
$PositionField->type('string');
$PositionField->from('included.attributes.​Description');
$schema = new \Kendo\Data\DataSourceSchema();
$schema ->model($model)->data(new \Kendo\JavaScriptFunction('function(result) { return result; }'));​

 i cant figure out how ​to link my schema->model->data to the whole object , not just the 'data', i need also to get the data that are inside the "included" attribute.

any help?

Georgi Krustev
Telerik team
 answered on 04 Nov 2015
5 answers
1.7K+ views

I have my grid set up so that it receives some additional information in the json response. I want to use this additional information in the row's commands, but I can't quite figure out how. I've tried putting it in a hidden column, and the data is rendered (but not shown, as expected), but if I try to use #= variable # it literally appends that to the classes, not the value of that row cell.

How can I reference a row value elsewhere in the row? Using a template is fine if necessary.

Kostadin
Telerik team
 answered on 04 Nov 2015
1 answer
101 views

On event edit window:

<select kendo-drop-down-list ng-model="data.AbsenceTypeId" k-options="absenceList" class="form-control" />

...

<button class="save-button btn btn-default" ng-click="save(this)">Save</button>

 

Data to list is binding:

$scope.absenceList = {
    dataSource: {
        transport: {
            read: {
                url: 'api/absences',
                dataType: "json"
            }
        }
    },
    dataValueField: "Id",
    dataTextField: 'Name',
    optionLabel: {
        Id: "",
        Name: ""
    }
}

 

 And save event:

$scope.save = function (e) {
   ...
};

 

When I open event and next clik "save" (don't change anything) sometimes in "e.data.AbsenceTypeId" is null sometimes right value. I don't see the rules. Any ideas?

I use Angular.

Vladimir Iliev
Telerik team
 answered on 04 Nov 2015
2 answers
615 views

Hi,

I would like to create line chart showing only dots/circles, but not showing lines connecting dots.

What is the best/proper/elegant way to do that?

Here is my code: http://dojo.telerik.com/@arturkula/uxAti/7

Thanks in advance for your help.

Artur
Top achievements
Rank 1
 answered on 04 Nov 2015
2 answers
69 views

In the next themes : 

- Fiori 

-Material 

- MaterialBlack 

-Nova, 

  when are using the arrow keys, moving cell by cell,  the selection is not visible  and the cells are not highlighted. 

  ​As a temporary solution,  we have created a css rule that add cell borders. Not showing a border for this 4 themes is this a Telerik choice? There is a better solution? Is this an issue that are you trying to solve in a next release?

   Thank you.

     Regards,

            Cristina. â€‹

 

Cristina
Top achievements
Rank 1
 answered on 04 Nov 2015
1 answer
176 views

Seems to be decimal separator is not right for de-CH culture. As far we can see, inside the "kendo.culture.de-CH.min.js" file, we have definition that decimal separator is "," (comma), BUT should be "."(point) .

In attached screen shot you can find some details.  ​Version of Kendo UI is 2015.2.805

 

Could you, please, check it?

Thanks.​

Daniel
Telerik team
 answered on 04 Nov 2015
1 answer
106 views

Hello,

Another bug in version "Kendo UI v2015.3.1023".  Current time marker is not displayed on page GET request. It is displayed after page resize only. Example: http://dojo.telerik.com/UYAxe.

Dimitar Terziev
Telerik team
 answered on 04 Nov 2015
5 answers
227 views

Hi,

Combobox is not selecting the right item in the dropdown when using data virtualization for paging 

I have tried the same virtualization configuration(through K-option) with DropdownList but DropdownList selects the right item no matter how quick the text is inputted (as long as you don't tab out of the control).

Combobox without Virtualization also does not have this issue.

When using combobox with Virtualization and if the user types in quickly (only for the first time after launch), it selects the first element in page 0 instead of selecting the right element.

I have demonstrated this behavior in plunker. 

http://plnkr.co/edit/gFD8Ib3bOfbw19aklQho?p=preview

If you type in 'lg' quickly and wait, it selects, 'HTC'. Please let me know if I'm missing any configuration.

Thanks,

Deeptha

  

 

Alexander Valchev
Telerik team
 answered on 03 Nov 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
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
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
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?