Hi
Is this possible, can't find it in the documentation?
This question is for all components having an (image) button like the calendar
This form is read only so the drowdown buttons , the calendar buttons should not be shown. (As also the * required , which we already solved)
Eric
Is it possible to just wrap the default inline grid editor with some additional markup? I want some html added inside.
If not, then how do I get the tool tip validator?
<GridColumn Field=@nameof(Person.Name) Context="pxxx">
<EditorTemplate>
<TelerikTextBox @bind-Value=@(((Person)pxxx).Name)/>
Some additional HTML here
</EditorTemplate>
</GridColumn>
Thanks!
Hi
I do not think this is possible right now? Am i correct?
Can this be added for a new release?
Eric
Hi
See
Change Blazor Grid Font Size | Telerik UI for Blazor
This example does not work (In Edge) , grid is not shown
Eric
Hello,
Is there a possibility to extend the Keyboard Navigation or a solution which will allow the user based on some keyboard shortcuts to add/edit/delete a row in a grid when the grid edit mode is Inline?
For example:
Ctrl+N: adds a new row in grid
Ctrl+M: the selected row enters in the Edit Mode
Ctrl+D: The selected row is Deleted
Thank you in advance.
Best regards,
Cipri
Hi
Whats the best way to translate the messages, hints , captions etc from the Blazor components?
I need Dutch translations
Eric
I would like to show toolbar, when I click on editor text and hide it when I click away from the component.
Regards,
Matic
Is it possible to adjust the width of the popup to the length of the items only if it exceeds the width of the control?
Thus default it has the same width as the control, unless there are longer items, then it expands to the right.
The problem I have now is that when using Virtual Scrolling you have to specify an item height. Text that doesn't fit in de dropdown width is wrapped to a new line, overlapping the next line. I would like instead of wrapping the test the popup to adjust its width to accommodate these texts.
I tried it with MinWidth, but don't know what value to specify, 100% doesn't work because it is rendered at a different place in the DOM.
Kind regards,
Kees Alderliesten
I created my application using ASP.NET Core Blazor. I am using the Bootstrap Template. I investigated the CSS that is being generated and the class element is as shown below in the html snippet:
<tr role="row" class="k-master-row"
I am trying to do conditional formatting of cells. The cell is highlighting correctly. I am using this sample to do that
I am using the first approach OnCellRender with OnRowRender. It only happens if there is one row. My Grid is set to a height of 900 px and the row height is 60 and I am using virtual scrolling only for rows and not columns.