I was able to successfully use the .enable() method to disable an item in the list box on the left. However, it doesn't do the same for the the right side items.
Demo:
https://dojo.telerik.com/eVoZahaX
Any other way to support disabling any items on the right side? We want to pre-load some values on the right side, but not allow them to be moved.
Hi,
Currently am displaying a tooltip in header using the below code. however i want to display a image inside tooltip.
{
field: 'country', title='country', headerTemplate: "<u class='uom fa fa-info-circle fa-lg' data-container='body' title='' data-toggle='tooltip' data-original-title='Golden Standard'></u>"
}
i.e., something like this. but when i try the below code, the html inside the 'data-original-title' is showing as plain text instead of rendering as html.
{
field: 'Country', title='Country', headerTemplate: "<u class='uom fa fa-info-circle fa-lg' data-container='body' title='' data-toggle='tooltip' data-original-title='<i class="fa fa-square" style="color:PaleGoldenRod"></i> Golden Standard'></u>"
}
In the DataBound event of a grid, am using below code to show tooltip.,
dataBound: function (e) {
$("[data-toggle='tooltip']").tooltip();
}
Please see the attached screenshot for refrence.
Thanks in advance.
Grid functionality "filterable" has two modes: "row" and "menu".
When I'm using option "row", it will automatically also display autocomplete suggestions when I type something, like in screenshot.
When I'm using option "menu", it will not display auto complete suggestions.
How can I fix this for "menu"?
The default functionality of kendo jquery combobox is that whenever we search something and hit tab it selects the item and in the next tab hit, the focus goes to the next input . However I want to combine these two steps, so that only one tab hit should select and move the focus to the next element. (e.g in devexpress https://demos.devexpress.com/MVCxDataEditorsDemos/Editors/ComboBox if you search in the combobox and press tab it selects the drop-down item and focuses on next input immediately). Is it possible to do in kendo combobox?
Hi,
Could you please confirm or not that the Switch widget is compatible with IE9/10.
Seems not sure for me.
Best regards,
Laurent.
I have a problem with numerictextbox initialization.
http://jsfiddle.net/je2vh4cL/
When I click on click span - everything is ok. Focus/click event from input generate error on Chrome/IE. Any ideas?
Hi,
I have a grid and when i resize (reduce) any column, there is a white space shows up in the end of the grid. I have checked with the Kendo official samples and it seems like in some samples the shown behavior is in their samples.
I tried setting up width for header, cell content etc.. but its still shows some UI issues and i have multiple grids and i need a generic fix.
If its not an issue and a behavior then somebody please have a look at this and explain how to fix it.
I have added a normal screen shot and resized screenshot.
For testing it out, i have added a jsfiddle.,
http://jsfiddle.net/49bhz2sk/
Hi,
I am wondering if it is possible to use Effects when there is a page change in a SPA app which is built with purely Kendo.
For example this is the code of a simple SPA with 2 pages:
// variables
window.rootUrl =
"http://localhost:3000"
// datasource
// models
var
model = kendo.observable({foo:
"I am testing and trying out new things"
});
// views
var
layoutView =
new
kendo.Layout(
"layout-template"
);
var
header =
new
kendo.View(
"index-template"
);
var
content =
new
kendo.View(
"content-template"
);
var
contact =
new
kendo.View(
"contact-template"
, {model: model, evalTemplate:
true
});
// router
var
myrouter =
new
kendo.Router({
init:
function
() {
layoutView.render(
"#app"
);
}
});
myrouter.route(
"/aboutme"
,
function
() {
layoutView.showIn(
"#top"
, header);
layoutView.showIn(
"#main"
, content);
});
myrouter.route(
"/contact"
,
function
() {
layoutView.showIn(
"#top"
, header);
layoutView.showIn("#main", contact);
});
// onload
$(
function
() {
myrouter.start();
});
Basically my question is if it is possible when I change page from aboutme to contact that the contact page not just appears but slides in or fades in ( and the aboutme slides out or fades out ). If it is possible then whats the recommended way to do it using the example code above?