Hello,
When viewing events in the scheduler,
I want new events to be red. (view model status is pending)
later , when I set the status to "approved" , i want the event to appear as green.
Any suggestions ?
Thanks,Peter
Html.Kendo().Grid<
Areas.TestArea.Models.RoleBasicFunctions
>()
.Name("RoleBasicFunctions")
.Columns(columns =>
{
columns.Bound(p => p.RoleBasicFunctionsID).Title("ID").Visible(false);
columns.Bound(p => p.EntityBasicInformation.EntityType.EntityTypeName).Title("Entity Name").HeaderHtmlAttributes(new { style = "white-space: normal" });
columns.Bound(p => p.EntityBasicInformation.Name).Title("Name").HeaderHtmlAttributes(new { style = "white-space: normal" });
columns.Command(command => { command.Edit().Text(" "); }).Width(80);
})
.Pageable()
.Sortable()
.Scrollable()
.Editable(editable => editable.Mode(GridEditMode.PopUp).DisplayDeleteConfirmation(false).TemplateName("EditRoleBasicFunctions").Window(ww => ww.Title("Edit").Width(1800)))
.ToolBar(toolbar => toolbar.Create())
.Filterable()
.DataSource(dataSource => dataSource.Ajax()
.Model(model =>
{
model.Id(p => p.RoleBasicFunctionsID);
})
.Read(read => read.Action("RoleBasicFunctionsGrid_Read", "Test").Data("additionalData")))
The column header is light gray as default, user ask me to make it darker. I tried some template, but failed. Could you educate me?
Thank you!
Question also listed on stack
https://stackoverflow.com/questions/57069066/net-core-create-tagbuilder-for-kendo-telerik-scrollview
I am trying to get Tagbuilder for Telerik ScrollView Component to work. Currently add Items is not working; it is not transmitting the image divs, and showing a blank page. How would I fix this? Enclosed is tagbuilder below. Am I missing variables or attributes ?
Ideal Telerik code is transmitting div data-role page. My code is transmitting li class scroll-view-page, which are not the right items.
Hi ,
how to highlight today's date ?I mostly use the month view. Is it in CSS. or a property ?
Thanks, Peter
note : I saw a tip for rad control , but i don't think this applies https://www.telerik.com/forums/how-to-i-get-the-current-date-to-be-highlighted
i have a KendoGrid with Batch editing ( in cell ) and one of the columns is KendoDropDownTree, when an item in the dropdowntree is selected that has childs then while saving the grid change all the childs of the selected item in the dropdowntree are posted to the action and that is wrong.
please i need help
thanks
regards