So I have a grid that needs to have dynamically created columns based on miscellaneous fields in our database. I initially tried destroying and reinitializing the grid with the new options including the new columns, and then I found a forum post on Tree Lists that also suggested doing that so I assume it's the best option for dynamic columns. And it is working for my data, the new column data shows up in the grid, however the column titles are not showing up.
Any clue as to why the headers are not updating?
My new columns are formatted like so:
var newMiscellaneousColumn = {
field: "MiscellaneousHeaderFields[" + y + "].FieldValue",
title: sub.MiscellaneousHeaderFields[y].FieldName,
width: 150,
encoded: true,
hidden: false
};
Looking in the kendo grid in the developer console shows my columns are there and seem to be setup correctly.
Hi,
I see the following sample code where it uses the hideFilteredRows() function but it seems the row is still there even after the user is unselected.
For example, in the preview, if I unselect the user Alex in the top bar the events for Alex would be gone but the row for the Alex user is still there. How do I completely remove the Alex row if the user Alex is unselected?
https://docs.telerik.com/kendo-ui/knowledge-base/scheduler-show-hide-grouped-resources-with-multiselect
In chrome mobile browser when a combo is searched and clicked, combo box gets cleared sometimes. In other browsers this issue is not there.
Step 1 : type 2 or 3 three characters in combo box.
Step 2 : click on desired value
Result : Half of the time, combo box gets cleared.
Hi,
Im trying to get the Week and Month view to fit on the screen. But when I select the week view I get this weird behavior, the content goes out of the screen (example1.png).
I am trying to make it look like how it looks on the day view (example2.png).
Does anyone have a solution for this? :)
Thanks,
Mark
@(Html.Kendo().Grid<
SomeViewModel
>()
.Name("SomeGrid")
.Columns(columns =>
{
columns.Bound(p => p.Id);
})
.Events(e => e.DataBound("onDataBound"))
.Selectable(selectable => selectable.Enabled(true).Mode(GridSelectionMode.Single).Type(GridSelectionType.Row))
.Scrollable()
.Filterable()
.DataSource(dataSource => dataSource
.Ajax()
.Read(...)
)
)
When the row is selected, color changes to orange. How do I modify this behavior to not change to any color at all ?
I have used KENDO UI two Tabstrips.
Tabstrip One.
Tabstrip Two.
and both tabstrip contains a kendo Grid inside and Grid inside Tabstrip One is fixed column grid (2 fixed column) and 8 scrollable columns.
Issue: The grid inside Tabstrip One will take some 20-30 seconds to load after the page load.
The header of the Grid inside the Tabstrip One breaks, If i navigate to Tabstrip Two before the grid inside the Tabstrip One loading and comes back to Tabstrip One after the grid inside the Tabstrip One finished loading. See the First Image.
However if i click inspect on the Grid header the Grid header comes back to Normal (by self setting the k-grid-header width) See the second Image.
Please let me know if anybody faced similar type of issues.
Thanks in advance
I have a kendo multiselect component that works great, but when text in my dropdown are too long I have to truncate it. I would show at least a tooltip on hover with the full text. Here is an example of the desired result (in this example my mouse is on the first result, getting a popup with the full text) :
I found the following article about using a Kendo surface to create signatures and exporting them to SVG. However, the example shown does not appear to work using a touch interface (finger or stylus) on a mobile device (or touch screen on a laptop). What would need to be added to support touch?
https://docs.telerik.com/kendo-ui/knowledge-base/drawing-draw-signature-and-export-svg