We don't want users to be able to select some rows, so we want to disable the checkbox on GridCheckboxColumn. I do realize this is a bit more complicated since it deals with row selection. We are using it to add selected items to a shopping cart. Some items are not for sale, so they cannot be added in bulk this way. So in this use case, we don't want them selecting the row. Any suggestions?
We are open to other ways to handle this, but we wanted to avoid having the user click on something and then have it say "No you cannot do that."

Hi:
Is the approached discussed in the kb article Autofit all Grid columns on initial load still valid given that the Blazor controls are on version 3.4.0 and .NET 5+ supports JavaScript Isolation?
Thanks
-marc

I am new to Telerik (and CSS in generally) and unfortunately I am struggeling even with simple things.
I just want to set the Font-Size of a FloatingLabel like this:
.floatinglabel {
width: 100%;
color: red;
font-size: 8px;
}
Is it possible to set the content of Window/Dialog to be a variable containing HTML code?
Hi,
I need a MultiSelect DropDownList with checkboxes. I was not able to find this control on the demo page.
Thanks,
Artem
Hello,
How can i disable default Enter Key behaviour in Inline Grid Edit?
I need to place an TextArea component inside a inline edit row to let user put longer text description in one of the columns. When i try to go to a new line inside TextArea component, clicking enter key is triggering save for the whole inline edit row, making use of TextArea impossible.
Could you help me find a solution for this problem?
Kind regards,
Kinga
Is there a way to remove the left, right, and bottom grid lines from the footer? I want the grid to show for the header and data cells, just not the foot row.
Thanks


Hello!
I want to add a radial gauge in my web application.
I set the "From" and "To" properties for the Scale Range and when the desired value is increased I can see the changes.
But I want to change the pointer according to the "From" and "To" properties of the Scale Range.
I can set the "Value" property equal to "To" but when it changes the pointer seems to reset and not to increase. I want the pointer start from the last "To" value and end to its "Value" property which is equal to the new "To" property.
Any ideas about this?
My demo code:
<TelerikButton OnClick=@IncrementRange>Add Range</TelerikButton>
<TelerikRadialGauge>
<RadialGaugeScales>
<RadialGaugeScale>
<RadialGaugeScaleRanges>
<RadialGaugeScaleRange From="@FromRadialGauge" To="ToRadialGauge" Color="red"></RadialGaugeScaleRange>
</RadialGaugeScaleRanges>
</RadialGaugeScale>
</RadialGaugeScales>
<RadialGaugePointers>
<RadialGaugePointer @ref="@RadialGaugePointerRef" Value="@ToRadialGauge">
</RadialGaugePointer>
</RadialGaugePointers>
</TelerikRadialGauge>
My code:
private int FromRadialGauge = 0;
private int ToRadialGauge = 0;
private void IncrementRange()
{
ToRadialGauge = ToRadialGauge + 10;
RadialGaugePointerRef.Value = ToRadialGauge;
}
Thanks in advance!
Hi,
How do you change the file after upload? Actually, I upload images and display them as cards on the website, but I want a feature that can change the uploaded files one by one when I click on the card.
If I click on card1 that is linked to image1 I want to be able to change that image to another image or delete. I can't see how to do that with Upload component.
Best regards,