Hi! I have Editor control, which I use for a comments section on one of my pages.
I use FileBrowser to select attachments.
Here are the issues I found:
my code:
01.$("#commentEditor")02. .kendoEditor({03. resizable: {04. content: true,05. toolbar: true06. },07. tools: [08. "bold", "italic", "underline", "strikethrough", "fontName", "fontSize", "foreColor",09. "backColor", "justifyLeft", "justifyCenter", "justifyRight","insertUnorderedList",10. "insertOrderedList", "indent", "insertFile", "pdf"11. ],12. fileBrowser: {13. transport: {14. read: function(options) {15. $.ajax({16. url: "api/PAWorkOrderDocuments/Source/" + woId,17. success: function (result) {18. // notify the data source that the request succeeded19. self.attachments = result;20. options.success(result);21. },22. error: function (result) {23. // notify the data source that the request failed24. options.error(result);25. }26. });27. },28. uploadUrl: "/api/PAWorkOrderDocuments/Upload/" + woId,29. fileUrl: function (options) {30. var url = "";31. for (var i = 0; i < self.attachments.length; i++) {32. if (self.attachments[i].name === options) {33. url = "/api/PAWorkOrderDocuments/Download/" + self.attachments[i].ID.toString();34. break;35. }36. }37. return url;38. }39. }40. }41. });
Hello,
I use
RequireJS to load Kendo according to a post in StackOverflow (http://stackoverflow.com/questions/18671338/inject-kendo-ui-with-requirejs)
and it works. jQuery is loaded first, then Kendo. But I got an error "kendoButton
is not a function" (applies to all Kendo UI components, but here I use
kendoButton as an example). Here is my app.js.
require.config({
paths: {
"jquery": "lib/kendo-ui/jquery.min",
"jquery-ui": "lib/jquery-ui.min",
"kendo-ui": "lib/kendo-ui" // this is
a directory containing all Kendo files
},
shim: {
"kendo-ui/kendo.button.min": {
deps: ["jquery"]
},
"kendo-ui/kendo.core.min": {
deps: ["jquery"]
}
}
});
require(["jquery", "kendo-ui/kendo.core.min", "kendo-ui/kendo.button.min"],
function ($)
{
$("#primaryTextButton").kendoButton();
});
Kendo
troubleshooting says that jQuery should be included just once (yes, I have) and
all the required Kendo files are included (yes, I included kendo.core.min.js).
I use
RequireJS 2.2.0, Kendo 2016.1.226, and jQuery version, which is included in the
Kendo package. Can someone point out what's wrong?
Thanks and regards,
Stefan
Good Evening,
I currently have a chart, and it's rending as expected, but the problem comes in when trying get the tools tips working.
Here is what the data will look like...
{
name: system 1,
data: [100,200,300],
hitDates: [01-01-2016, 01-02-2016, 01-03-2016]
},
{
name: system 2,
data: [400,500,400],
hitDates: [01-01-2016, 01-02-2016, 01-03-2016]
}
So as you can see, 'Name' is a string and data and hitDates are arrays but will be equal in length.
I've tried everything to get get the tooltip to bind to simply show per point (name, data(hits), and hitDates)
series.name works fine, but since data and hitDates are arrays, it simply prints out the complete array. I've even tried series.data[series.index] and index seems to always be 0. I've tried dataItem.data and that just comes back as undefined.
Any help would be GREATLY appreciated.
Thanks In Advance
It seems that making changes to the selected values from the UI, doesn't update $scope.selectedItems, nor does updating $scope.selectedItems through JavaScript update the View.
01.<select kendo-multi-select02. id="'itemMultiSelect'"03. ng-if="itemDataSource"04. k-data-placeholder="'Select items...'"05. k-ng-model="selectedItems"06. k-data-source="itemsDataSource"07. k-data-text-field="'itemyName'"08. k-data-value-field="'itemId'"09. k-value-primitive=false10. k-auto-close=false11. k-on-select="onSelect(kendoEvent)">12. </select>I'm developing an AngularJS app with Kendo UI Professional. Using the theme builder and the default theme as a base, I've set the color desired color values and downloaded my custom theme. In my index.html I've included the kendo.common-bootstrap.min.css file, followed by my kendo.custom.css which has the desired color selections on everything except chart series colors. All chart series colors default to the default theme colors. What am I doing wrong? I've tried other themes as well (Metro, Fiori, etc...) with the same outcome.

.k-tool-icon.k-state-active.k-state-hover { background-image: url('http://da7xgjtj801h2.cloudfront.net/2012.3.1315/styles/Metro/sprite.png');}
//Old recurrence exception:recurrenceException:"20160603T050000Z;20160503T050000Z;" //New recurrence exception:recurrenceException:"20160603T050000Z,20160503T050000Z"