Hello,
in a Telerik RadGrid (web) I need to merge some cell rows like the attached image,
and change the font color based on values in these cells.
Has anyone idea how to make this?
Thanks a lot.
Luis

I'm using Asp.net core razor pages with custom column settings. The client wants to block users from navigating off the page when there is a row in edit mode. Is there a suggested way to do this that doesn't involve jquery? Every example I've found so far is under jquery. Ideally, the client should be told with some kind of message the reason for preventing page close.

Hello,
I have a grid with custom template column and with event handler for grid change event (I have omitted not important parts of code):
@(Html.Kendo().Grid<OpportunityTool.Models.AccountForGrid>()
.Name("AccountGrid")
.Columns(columns =>
{
// other columns definitions - not important here
columns.Bound(p => p.SlaveAccount.Owneridname).Title("VlastnĂk")
.ClientTemplate("<div class='contact-presenter'>#=SlaveAccount.Owneridname#</div>");
})
.Selectable(selectable => selectable.Mode(GridSelectionMode.Single))
.Events(events => events
.Change("AccountGridChange"))
)
I have assigned event handler for click on my custom column too:
$('#AccountGrid').on('click', '.contact-presenter', showContactDetail);
I want to prevent the selection of the whole row, when user clicks on my custom column. I don't know how to do it, because change event is fired before cell click event.
Is there a way to change the order of the events?
Thanks for help,
Boris.
I am unable to replicate this demo on page/data load. With data that is already checked the parent gets put into an indeterminate state if any of its children are checked.
The indeterminate state only appears if the user manually clicks one of the children check boxes.
https://dojo.telerik.com/ebAVASUp - here February is checked and its parent is in an indeterminate state on data/page load
My Code
<kendo-treeview name="DataRestrictionTree" load-on-demand="false" template="#=TreeViewTemplateSet(item.PathDescription,item.ModifiedBy,item.ModifiedDate,item.checked)#"> <checkboxes check-children="true"/> <!--Batch attribute in hierachical datasource is needed so any change causes an update--> <hierarchical-datasource type="Kendo.Mvc.UI.DataSourceTagHelperType.Ajax" server-filtering="true" server-sorting="true" page-size="0" batch="true" on-request-end="RequestEnd"> <transport> <read url="@Url.Action("GetDataRestrictionAssignments", "DataRestrictionAssignment")" datatype="json" data="DataAssignmentFilter" /> <update url="@Url.Action("UpdateDateRestrictions", "DataRestrictionAssignment")" datatype="json" /> </transport> <schema> <hierarchical-model id="PrimaryId" children="HasChildren"></hierarchical-model> </schema> </hierarchical-datasource> </kendo-treeview>
Hello,
i am using mvc returning the Json result as list . In the view using the data source reading action controller name and returning the list
var result = context.table.sekect(m=>new
{
m.number
}
return view(result.ToList());
.datatextfield(“Number”)
.datavaluefield(“Number”)
getting undefined in dropdown.
i have tried the json result as well in another method same results.
Do I need to add anything in the startup?
Thank you
SB

Suppose I have a MultiColumnComboBox like below. How can I have like 10 columns in it but hide specific ones of them? I need the data from the additional columns when the user makes a selection but, I don't want them to show. So in the example below, how could I hide the ID, and Inst columns? I think it would be done in the dataBound event but no idea how to do it.
--Rich
@(Html.Kendo().MultiColumnComboBox()
.Name("MainSched")
.DataTextField("Room")
.DataValueField("Room")
.Columns(columns =>
{
columns.Add().Field("ID").Title("ID").Width("100px;");
columns.Add().Field("Room").Title("Room").Width("100px;");
columns.Add().Field("Inst").Title("Inst").Width("100px;");
columns.Add().Field("MKey").Title("MKey").Width("100px");
})
.HtmlAttributes(new { @class = "FontSmall" })
.Height(400)
.DataSource(source => source
.Custom()
.Transport(transport => transport
.Read(read =>
{
read.Action("MainSched_Read", "Home");
})))
.Events(events => events.Change("MainSched_Change").DataBound("MainSchedDataBound"))
)

Hi,
I would like to get Telerik feedback on the best way to override the delete grid function.
We are using a grid with inline editing but on the delete we need to capture extra data.
We are are doing right now:
Everything is working good but I would like to get recommandation on how to prevent the row to disapear from the frontend ONLY WHEN the user confirm.
Right now as soon the delete command is clicked and we reach the on remove the row is already removed from the frontend.
here is code samples we have
the grid with the onremove
<kendo-grid name="plancodegroupgrid" height="600" navigatable="true" selectable="" on-data-bound="dataBound" on-remove="onremove"> <datasource type="DataSourceTagHelperType.Ajax" server-filtering="true" server-paging="true" page-size="100" on-request-end="onrequestend"> <transport> <read url="planCodeGroup/PlanCodeGroup_Read" /> <update url="planCodeGroup/PlanCodeGroup_Update" /> </transport> <schema> <model id="PlanCodeGroupID"> <fields> <field name="PlanCode" editable="false"></field> <field name="RateScaleCode" editable="false"></field> <field name="PolicyTypeCode" editable="false"></field> <field name="RiskIntegrityGroupPrefixCode"></field> <field name="SystemName" editable="false"></field> <field name="StartDate" editable="false" type="date"></field> <field name="EndDate" type="date"></field> </fields> </model> </schema> </datasource> <messages> <commands edit=" " update=" " canceledit=" " destroy=" " create=" "/> </messages> <sortable enabled="true" mode="multiple" show-indexes="true" /> <filterable enabled="true" mode="row" /> <editable mode="inline" confirmation="false" /> <columns> <column field="PlanCode" title="@localizer["PlanCode"].Value"> <filterable> <cell show-operators="false"></cell> </filterable> </column> <column width="150" field="RateScaleCode" title="@localizer["RateScale"].Value"> <filterable> <cell show-operators="false"></cell> </filterable> </column> <column width="150" field="PolicyTypeCode" title="@localizer["PolicyType"].Value"> <filterable> <cell show-operators="false"></cell> </filterable> </column> <column width="150" field="SystemName" title="@localizer["System"].Value"> <filterable> <cell show-operators="false"></cell> </filterable> </column> <column field="RiskIntegrityGroupPrefixCode" editor="riskIntegrityGroupPrefixCodeEditor" title="@localizer["GroupPrefix"].Value"> <filterable> <cell show-operators="false"></cell> </filterable> </column> <column field="StartDate" title="@localizer["Start Date"].Value" format="{0:MM/dd/yyyy}"> <filterable> <cell show-operators="false"></cell> </filterable> </column> <column field="EndDate" title="@localizer["EndDate"].Value" format="{0:MM/dd/yyyy}"> <filterable> <cell show-operators="false"></cell> </filterable> </column> <column width="100"> <commands> <column-command name="edit"></column-command> <column-command name="destroy"></column-command> </commands> </column> </columns> <scrollable height="auto" virtual="true" enabled="true" /></kendo-grid>
The onremove js stopping the event and launching how dialog
function onremove(e) { e.preventDefault(); $('#reason').val(''); $('#dialog').data('kendoDialog').open(); model = $('#plancodegroupgrid') .data('kendoGrid') .dataSource.get(e.model.PlanCodeGroupID);};
if user cancel that s what we have (the row is re showing)
function cancelDeletePlanGroup(e) { if (!confirmed) { $("#plancodegroupgrid").data("kendoGrid").cancelChanges(); } else { confirmed = false; }}
I tried the setup an onclick event on the delete command
But somehow the function is never called
<column width="100"> <commands> <column-command name="edit"></column-command> <column-command name="destroy" click="onremove"></column-command> </commands></column>The grid is capable of because when i setup the built in confirmation dialog on the row is staying in the UI until a choice is made.
other option would be to build my own delete button but I want to ask you guys before moving forward.
Let me know what is your recommended to proceed with all that logic being the exact same but without row getting away while user is making his choice.
Cheers

Is this intended behaviour or a bug ?
In the Scheduler demo on your site (https://demos.telerik.com/aspnet-core/scheduler/index)
Screenshot 1
Add a recurring daily event that starts in the past sometime. My example: yesterday.
Screenshot 2
Change one of the items in the past, so there is a recurrence exception for that day. My example: yesterday.
Then drag drop one of the events (on a future date) so it starts later in the day. My example: tomorrow.
When the option comes up choose "Edit the series".
Screenshot 3
It then wipes out the previous events so in my example I have lost today and yesterday.
I assume that it is updating the start date of the event and emptying the recurrence rule, which is why this is happening, however it doesn't seem right to me.
I just want to change the event to start later for the whole series, I don't expect it to change the start date and remove recurrence exceptions.
Thank you.

Hi,
I have a sub-grid where only a few columns are editable (InCell/batch mode).
I'm trying to display and update aggregate values for a calculated field/column.
I have tried 2 approaches, but got stuck with both:
1) Using the ViewModel
I have added calculated field to my ViewModel class
public int Quantity { get; set; }public decimal UnitCost { get; set; }public decimal TotalAmount{ get { return (decimal) Quantity * UnitCost; }}This does allow me to define an aggregate value for TotalAmount in the DataSource section, and that displays correctly initially.
But if I modify Quantity or UnitCost (both editable columns in the grid, using InCell editing), the value of TotalCost doesn't get updated accordingly.
Can I force a refresh of the contents of the row and the aggregate values (e.g. in onSave() function?) *without* saving the edits, and if so: how?
2) Using a calculated column
Following the instructions of your colleague in this post:
https://www.telerik.com/forums/asp-net-kendo-ui-grid-calculated-column
... I defined a Template-type column with calculated values.
function calculateField(data) { var totalCost = data.Quantity * data.UnitCost; return totalCost;}But that value doesn't get updated either when I change the values of Quantity or UnitCost.
Furthermore, I don't know if it's possible to define/display aggregate values for a column of type Template?
Appreciate your help,
Erik
