Hello,
if a splitbutton go on a small screen in overflow mode, the click event of the buttons are not fired.
Dojo: http://dojo.telerik.com/otopaWUL
Please decrease the width of the output window, so that the splitbutton goes in the overflow button.
How can I fix this?
Regards,
Peter
Hi,
I'm trying to add a group in my listbox.
But seems my code below is not working.
It only shows unidentified.
$("#optional").kendoListBox({
connectWith: "selected",
dataTextField: "Name",
dataValueField: "Name",
selectable: "multiple",
template: myTemplate,
groupable: true,
toolbar: {
tools: ["transferTo", "transferFrom", "transferAllTo", "transferAllFrom"]
},
dataSource: {
transport: {
read: {
url: "getmember" + id,
dataType: "json"
},
schema: {
model: {
fields: {
Name
: { type: "string" },
Id: { type: "string" },
Location: { type: "string" }
}
}
}
},
group: {
field: "Location"
}
},
columns: [
{
field: "Name",
title: "Name"
},
{
field: "Location",
title: "Location"
}
]
});
In my grid, (30-40 columns / 200-300 rows)
When I select a row, it tooks approximately 1 second before the change event is fired and the new row is visually selected.
After the change event, our custom code is executed. In the callstack, only kendo and jQuery files are mentioned.
When I load less data (20 rows) in the grid, the event fires faster.
What are the possible reasons of the delay?
Are there other events that are fired before?
Thanks in advance
Hello,
can I set dynamic color for categoryAxis.crosshair?
I try to set dynamic color for crosshair based on the conditional.
But this option do not support function.
Then can i set dynamic color for this?
Thanks,
Huong
Hi,ProgressBar with type="percent" round 99.99 to 100%, need math.floor to 99% or 99.99%
https://dojo.telerik.com/OqeqAkOV/2
Hello,
can I disable the automatic redraw or refresh of zoom?
I make a zoomEnd function, which make a new ajax request to get the data in better resolution for the zoom range.
This function redraw the chart at the end.
This need some time and in the meantime the chart show the old data with the rough resolution. Would be nice to suppress this.
Peter
Is there a suggested way to filter the source listbox? I'm hoping to be able to type into a text box above the listbox and have the items in the listbox filter based on the value in the textbox.
I was looking into a basic angular filter, but am not sure of the best way to go about using it as it needs to be placed on the iterating element.
Thanks!
Hi
I want to be able to display two different editor templates for desktop and mobile devices. The template for mobile devices should contain less fields as it will be used by field based engineers. The desktop version will contain more information about the appointment details.
I found this thread from 2014 https://www.telerik.com/forums/mobile-compatibility-for-customeditortemplate but no example was provided to show how to achieve this.
Has anyone come across this?
Thanks
Steve
Hello,
for a database table 'FAQ' (with columns Question and Answer) I want use the PanelBar to show the faq. If I use https://demos.telerik.com/aspnet-core/panelbar/remote-data-binding then the Answers (the childs) ar not displayed. But this I could solved by a ajax call which write the response to an array 'data'.
The childs are displayed as buttons. Can I display the child text as normal text?
And can I render the child text as html for links, formatting ...?
Dojo: https://dojo.telerik.com/OQusiTiJ
Regards,
Peter