Telerik Forums
Kendo UI for jQuery Forum
9 answers
301 views
If the TreeList branch expand loads remote data, the expand event triggers before the ajax request is completed. Is there any reason for that or it's just a bug?
Dimo
Telerik team
 answered on 24 Aug 2015
2 answers
109 views

Hi,

 I'm using GeoJson Map for my project.

It's a Map with all the countries, and I've used the Json file in the demo example (content/dataviz/map/countries-users.geo.json). But unfortunately it seems like it doesn't have the coordinates of all the countries. E.g. it's missing "Sint Maarten" and "Aruba".

I was wondering if you could let me know where I can find the correct coordinates. Because I couldn't find any good reference that works with Kendo Map.

 

Thanks

Negin
Top achievements
Rank 1
 answered on 21 Aug 2015
6 answers
407 views
Dear all,
   i'm New to Kendo Scheduler and i have the scheduler and DIV and i'd click the scheduler day then it may shows pop up window
but i want like scheduler will hide and the Div will be shown without popup window and after save the data then the div will hide and scheduler will show
could you please give me the worked example for above thread please!!!

thanks & regards
-santhosh
Avinash
Top achievements
Rank 1
 answered on 21 Aug 2015
7 answers
224 views

Hello,

I have initialized an instance of Kendo Scheduler.

 It all works as expected in Chrome, but when I load the page in FF or Safari, it get this error in the console:

From kendo.web.min.js.

FF:

TypeError: r.slot is undefined

Safari:

TypeError: undefined is not an object (evaluating 'r.slot.end')

Anyone knows what could be the cause of that?

 

Oad
Top achievements
Rank 1
 answered on 21 Aug 2015
1 answer
328 views

Dear Team,

We create Menu using Kendo UI and theme of Menu is changed dynamically using the following code.

 Now, we have added Radial Gauge to our Application. ​but when I change the theme, Menu theme is changing whereas Radial Gauge Theme is not changing.. ​

1. Please ​let me know how to change the theme of Radial Gauge ?

2. We are planning to apply theme for across ​our project, like ​Kendo UI Demo site. Please let me know the approach and if you can share me any example.

 

 

Theme Loading:

$(document).ready(function () {

    $("#Menu").kendoMenu();
   $("#ddlTheme").kendoDropDownList();

   var themeData = [
{ text: "Default", value: "kendo.default.min.css" },
{ text: "Bootstrap", value: "kendo.bootstrap.min" },
{ text: "Black", value: "kendo.black.min" },
{ text: "Blue Opal", value: "kendo.blueopal.min" },
{ text: "Fiori", value: "kendo.fiori.min" },
{ text: "Flat", value: "kendo.flat.min" },
{ text: "High Constrast", value: "kendo.highcontrast.min" },
{ text: "Material Light", value: "kendo.material.min" },
{ text: "Material Black", value: "kendo.materialblack.min" },
{ text: "Metro Light", value: "kendo.metro.min" },
{ text: "Metro Black", value: "kendo.metroblack.min" },
{ text: "Moon Light", value: "kendo.moonlight.min" },
{ text: "Office", value: "kendo.office365.min" }
];
$("#ddlThemes").kendoDropDownList({
dataTextField: "text",
dataValueField: "value",
dataSource: themeData,
index: 0,
change: applyTheme
});
          

Changing Theme:

function applyTheme() {
     var theme = $("#ddlThemes").val();
     var css = $('link[href^="../../Kendo/styles/"]')[1]; //get my css anchor
    if (theme != null) {
            css.href = '../../Kendo/styles/' + theme + '.css';

    //Changing Radial Gauge:
     var guage = $("#gauge1").data("kendoRadialGauge");
     var options = guage._originalOptions;
     options.theme = "moonlight";
     guage.destroy();
     $("#gauge1").kendoRadialGauge(options);
}
};
});

 

Thanks,

Prakash.

Iliana Dyankova
Telerik team
 answered on 21 Aug 2015
1 answer
91 views
I need to filter data on a Kendo Grid based on either of two options: to use a criteria (equals , greater than , etc) or by checking checkboxes in the list of different values of the rows of the Grid.
The functionality I am looking for is similar to the Silverlight filtering options (http://content.screencast.com/users/kastour/folders/Snagit/media/d3a30187-0292-40d1-ac91-a3b136568b13/08.19.2015-17.48.png).
Boyan Dimitrov
Telerik team
 answered on 21 Aug 2015
1 answer
65 views

Hi,

I have created an AngularJS app and I'm using the kendo-date-time-picker directive. Everything seems to be working just perfectly, but I have observed cases where it seems that Kendo doesn't pick up on the onreadystate of data loaded from a JSON-service...This means that sometimes Kendo does not receive the value coming from the external service, and the input-field is empty.

My question is: Can I somehow force kendo-date-time-picker to refresh itself? 

Regards

Peter

Petyo
Telerik team
 answered on 21 Aug 2015
1 answer
196 views

Dear Support team, 

We started using yours drag&drop functionality and found strange bug on IE.

You can check it on the screencast: http://screencast.com/t/ZvyclZMOjy - it was recorded on your demo.

First I start draging element. You can see how cursor changes during drag - it takes cursor type from under element but only for a while, then it changes for normal drag cursor.

Then, I click Alt+Tab and changing focus to opened near IE developer tool. I have focus to IE developer tool but i can still move element in your demo. You can see that during dragging there is no change in cursor type.

Ten I click Alt+Tab and focus back to IE browser. You can see that during dragging there is still bug - having focus on IE page you have this strange behaviour. 

Can you into it? It stops our work on new page for our client.

 

Radek (Doer) Maziarka

Petyo
Telerik team
 answered on 21 Aug 2015
1 answer
125 views

When I add/remove an object from a databound list (using push/splice) the current selection is removed. dataBound event is triggered.

This should only happen if one removes the currently selected item(s).

 

Petyo
Telerik team
 answered on 21 Aug 2015
2 answers
1.0K+ views

Hi,

 Hopefully someone can tell me what I'm doing wrong here!

Example to re-produce here;

 http://plnkr.co/edit/3jLcnD16BdLQNJatBxCu?p=preview

 

Simple grid with one column built from a template. The template builds a button which includes ng-click as an attribute.

(in index.html) 

 <script id="link-template" type="text/kendo-templ">
    
    # if (fieldT > 0) { #
    <button type="button" ng-click="actionLink('#=fieldT#')">
                            Field T Link
    </button>
         # }
     else { # No Link
         # } #
    
    </script>

 

The button is build correctly, and includes the ng-click attribute.

 

However, the on clicking the button, the function is not called (either within the $scope or global functions).

 I've included kendo.directives as a dependency when loading angular.

What do I need to do to fix ?

 

Many thanks!

Boyan Dimitrov
Telerik team
 answered on 21 Aug 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?