Hello,
i try to set row color on conditions in the dataBound event. But only in my first row the Color will set.
var grid = $('#@Model.Id()_grid').data("kendoGrid");
var gridData = grid.dataSource.view();
for (var i = 0; i < gridData.length; i++) {
var currentUid = gridData[i].uid;
var currentRow = grid.table.find("tr[data-uid='" + currentUid + "']");
if (gridData[i].Condision != 0) {
$(currentRow).addClass("Color"); //in css
}
}
I can not find the issure.
Thanks
Pamela
How can I change the foreground color of the button that represents the grouped column when the user drags that column header into the Grouping bar on top of the grid? The "ADD NEW RECORD" and other buttons above it show a foreground color of white, but the buttons is unreadable with a light gray background.
Any suggestions would be appreciated.
Thanks

Hi, I followed this doc page: https://docs.telerik.com/aspnet-mvc/helpers/window/using-forms-in-window
And it doesn't seem to work correctly. It executes the form's target action, but then just displays the returned <script> tag in the window rather than actually executing it. Additionally, after manually closing the window, when I re-open it, the window content doesn't refresh automatically. What am I missing?
The Components PDF EXPORT does not seem to exist in Telerik UI for ASP.NET Core. I'm right?
How can I convert a html page to pdf?
How can I create a kind of report view?
Thank you
With best regards
Marco Dalla Libera
I have a View with that I am injecting a service using @inject . The service provides Lookup list data that is not provided from the controller.
i.e. @inject ProfileOptionsData options
How would I set the datasource property to bind the dropdownlist to a method from this service?
Thank you

I have a problem configuring the MultiSelect using the taghelpers, while the htmlhelpers give me no problem at all.
I get no data in the multiselect when using the taghelper, while the htmlhelper does.
Any ideas ?
Example:
HtmlHelper:
@(Html.Kendo().MultiSelect() .Name("roleSelect") .DataTextField("roleName") .DataValueField("id") .DataSource(source => { source.Read(read => { read.Action("GetAvailableRoles", "Users"); }); }))
Taghelper:
<kendo-multiselect name="roleSelect2" datavaluefield="id" datatextfield="roleName"> <datasource type="DataSourceTagHelperType.Ajax"> <transport> <read url="@Url.Action("GetAvailableRoles", "Users")" /> </transport> </datasource></kendo-multiselect>

Hello,
I was struggling with the kendo-toolbar taghelper to add an html attribute to a toolbar item, but eventually figured it out.
Is this the correct way to use the html-attributes taghelper or is there a shortcut ?
<item type="CommandType.Button" text="Delete" html-attributes='new Dictionary<string, object>{ ["class"] = "float-right" }' />
Thanks in advance

Hi
Does Html.Kendo().TextBox+For have a TagHelper as well? Can't find any documentation about it.
Thanks
Giuseppe
I'm using a Grid, with InLine AJAX editing enabled. The grid has a single text column, and my Model has an ID property (a GUID). When I add a row to the grid, set the text value, and hit Save, on the server the ModelState.IsValid property is set to false and it's complaining about the empty ID. Of course it's empty - the database assigns that.
How do I get that to stop being treated as invalid? I already have the ID decorated as DatabaseGenerated (I'm using efcore). Help!
i have added kendo grid in my asp.net core 2 project ..
i have a checkbox column in it which is bound to IsVisible field
when i click edit or create button , i get a validation error which is 'The IsVisible field is required.'
i think there is a bug with the grid validation , because a checkbox always has a selected value (checked or not checked)
you can see the issue by adding or editing a row in telerik inline editing sample : https://demos.telerik.com/aspnet-core/grid/editing-inline
