Hi Guys,
Have just tripped over a little CSS issue whereby the left had side border is becoming double thickness when the first column is hidden.
To replicate the problem run the
Grid / Column menu Demo
and hide the first column.
The results can been seen in the attached screenshot.
Digging into the CSS I can see you are removing the border on the first child
.k-filter-row>th:first-child,
.k-grid tbody td:first-child,
.k-grid tfoot td:first-child,
.k-grid-header th.k-header:first-child {
border-left-width: 0;
}
but when this column is hidden the subsequent column will still retain the left border resulting in the 2px border-left.
Regards
Alan
Hi,
Im trying to bind a model to the content of a kendoWindow but its just not responding. Kendo initializes the widgets in the window, but doesnt bind any data (see how the done button is still enabled).
Please advise: https://dojo.telerik.com/eYIMiLok
The reason for this binding strategy is that the entire code block (HTML and script) are loaded dynamically.
Thanks in advance,
Grant
How can I localize DropDownList formatting text "Heading 1" and other?
In demo it is not localized: https://demos.telerik.com/kendo-ui/editor/localization
messages.en-us.js don't contians this text.
I have a scrollable div within kendo Window.
The said div contains selectable thumbnail, it will show a bigger version if clicked (functionality not included in the attached file)
The problem when there will be hundreds to thousands of images the scrolling in IE11 becomes almost unresponsive.
Attached sample have around a 1000.
Tested it with bootstrap modal, did not have any issue with scrolling in IE11.
Issue does not happen in other browsers, is this an issue with repaint and scroll in IE?
Hello,
I was wondering if the newer releases of Kendo UI (or RadGrid) support pasting data from Excel to the grid?
I found some older code in these forums (from 2011) that "hand implements" the paste, but I was wondering if there are any native capabilities that have been added to support pasting data to a Kendo grid (as opposed to from a kendo grid to excel). I looked through the new demos, and didn't see anything along those lines. Just wondering if this is a feature or if it's on the roadmap, as it's a highly desirable feature for an editable grid.
I cannot figure out how to hide the splitbar - even if I delete the HTML element, it still shows because of other widths and offsets.
I have googled this for ages and found a few old suggestions (even by kendo people) that don't work anymore.
Could you point out the CSS required to simply hide the splitbar - either by transparency or even setting it to my own color - no matter much I played with the CSS, I could not work this out.
I just started working with the MultiColumnComboBox component, and I immediately noticed that the headers are increasing misaligned with their columns as you move from left to right across the grid.
The demos show a small buffering header over the vertical scrollbar, but that's not present in my implementation.
Is there something I'm missing to have that little buffering header over the scrollbar?
I've included a screenshot of the MultiColumnComboBox grid rendering where you can clearly see the misalignment. The screenshot includes the configuration code, as well.
I have a grid with inline editing, linked to a datasource with a update url like listed below.
How do I catch an error returned by the transport.update ?
Thanks in advance
Regards
Morten
$("#grid").kendoGrid({
dataSource: gridDs,
editable: "inline",
...
var gridDs = new kendo.data.DataSource({
transport: {
read: { ... }
update: {
type: "POST",
url: '@Url.Action("Update", "Customers")',
dataType: "json",
contentType: "application/json; charset=utf-8"
}