In the TelerikForm Blazor control is it possible to have all the fields auto-generate except for a couple of specific ones?
I have a form that has ~20 fields on it. It autogenerates properly. I would like to add an additional field for notes but want that to be a multiline text area and I want it to span all the columns of the form.
Is there a way to combine an autogenerated form with a few templated forms?
Hi
I saw this demo: https://github.com/telerik/blazor-ui/tree/master/tilelayout/add-remove-tiles
It looks great but its added code.
So it would be nice to have this behavior build into the component:
1. Have a property with a list of available components
2. have the component let the user pick from a list (The list could be a dropdown value list)
3. With saving state also save the connected component
4. have an event on which we instantiate the component when the layout is shown
Eric
The copy paste functionality is not working when I use the menu filter for a numeric value.
This does also not work for the demo on https://demos.telerik.com/blazor-ui/grid/filter-menu
Hi,
I am experiencing some problem when using TelerikEditor on Modal. The editor seems a bit slow and if you press enter, it doubles the next line and when you edit a text it creates a new line on it. See example below:
Hello,
Is there any way to load the data in the FileManager control virtually. I would prefer to not have to traverse the entire file system to provide the folder/file structure. Can the OnRead method be used to provide just the data needed for the current view?
Thank You,
-Andy
Dear All,
The attached document contains a couple of Grid component document that I got from DevExpress and SyncFusion. I am interested in the one that is similar to the image attached, which I got from DevExpress. Does Telerik have something similar to this? I would also like to see one like that image on page 1 that is in 1-to-many relationship, where the form part represents the parent, and the grid part represents the child.
I am trying to develop a Blazor application that could mimic what I stated above, especially Form/Grid, where the Form represents the main form (parent), and the Grid, represents the child in a 1-to-many relationship respectively.
I got the image from this link:
Your quick response to this request is greatly appreciated.
Sincerely,
Isaiah A.
Dear All,
I am currently trying to create a Blazor Application. If I had a list of records in a Grid, I would like to click a button to open a Form. Let us say that this form is a Customer Address (parent). Once this form is opened, I would like to see a Grid that contains the Orders (child). I can create class models for both Address/Orders. I will migrate them to an RDBMS like SQL Server. Does anyone know if Telerik has sample application like this or if you know any link that you can point me to?
I have recently purchased a license for Telerik, and so far, I like what I see.
Your response to the above request is greatly appreciated.
Sincerely,
Isaiah A
Hi
http://https://demos.telerik.com/blazor-ui/grid/editing-incell demo's incell editing, I noticed that with Ctrl+Enter I can navigate one row down after editing.
I wonder if the editboxes in the grid where not checkboxes (iusing the up and down arrow) I could use the arrow up and down to do the same?
Eric
Is it possible to change the EditMode during Runtime in C#?
please see the following code - MyGrid stays in Incell Editmode.
<Toolbar>
<ToggleButton OnClick=@StartEditMode/>
<ToggleButton OnClick=@StartSelectionMode/>
</Toolbar>
<Grid @ref="_myGrid" EditMode=Incell>
... columns....
</Grid>
</>Grid
StartEditMode()
{
_myGrid.EditMode = GridEditMode.Incell;
_myGrid.SelectionMode = GridSelectionMode.None;
_myGrid.SelectedItemsChanged = EventCallback<IEnumerable<DataItem>>.Empty;
}
StartSelectionMode()
{
_myGrid.EditMode = GridEditMode.None;
_myGrid.SelectionMode = GridSelectionMode.Multiple;
_myGrid.SelectedItemsChanged = Microsoft.AspNetCore.Components.EventCallback.Factory.Create(this, (IEnumerable<DataItem> items) => OnSelectionChanged(items.ToArray()));
}
OnSelectionChanged(DataItem[] items)
{
... do something here
}
Hello,
I have menu table in my database, which have menuid and parentmenuid columns.
I want to bind data retrieved from this table to blazor menu.
Is it possible ? there is no example showing how to bind blazor menu to remote data.
Thanks,
Milind Shevade