My project is using the client/webassembly template and I get this error when I sort on the Grid. I am using CSLA business objects to bind to the grid by the way. It should just work since it derives from IEnumerable<T>. The TelerikBlazorApp project sample uses a plain List<WeaterForecast> so I wonder why it doesn't work with the CSLA BusinessList.
Thanks.
blazor.webassembly.js:1 WASM: Unhandled exception rendering component:
hello i have a couple of questions about blazor grid
1) i added a grid column called actions it contains some buttons to navigate but when i add Reorderable="true" to TelerikGrid im able to change position of this column which i dont want to so i added Reorderable="false" to my action column and it worked i cant change it's position anymore but i can drag my other columns and put it before my action column so it gets affected by the reorderable column and its position gets changed
but i dont want to
2) i also used Sortable="true" and FilterMode="@GridFilterMode.FilterMenu" in my TelerikGrid tag but it doesnt get filtered nor sorted i see the red arrow for sort but it doesnt sort and also ui for filter is completely ok but it doesnt filter either aldo the Data im passing to grid is List<SomeDto>
hello i wanted to know if there is a way to set a column sortable to false
and also how to get context in GridCommandColumn
hello,
TelerikButton is not working correct with EditForm
when i use
<input type="submit" class="btn btn-primary" value="Save" />
instead of
<TelerikButton ButtonType="@ButtonType.Submit">Save</TelerikButton>
im able to submit the form with hitting enter
i want this feature with TelerikButton
Hi all,
We would like your feedback on how you want to control the Expanded items in a treeview, please add you comments in this page: https://feedback.telerik.com/blazor/1448095-expanded-items-handling-feedback-requested.
Thank you!
Regards,
Marin Bratanov
Hi, I am trying to use a row template as show below.
However, the command buttons never show.
What am I missing?
Thanks … Ed
<
RowTemplate
Context
=
"ctx"
>
<
td
>
<
strong
>@ctxName</
strong
>
</
td
>
<
td
>
<
strong
>@ctx.Number</
strong
>
</
td
>
@for (int i = 0; i <
14
; i++)
{
<td>
somedata
</
td
>
}
<
td
>
@* this is where the grid command buttons are supposed to show *@
</
td
>
@*
.
.
.
*@
<
GridColumns
>
<
GridColumn
Field
=
"Name"
Title
=
"Room Type"
Width
=
"150px"
Resizable
=
"true"
/>
<
GridColumn
Field
=
"Number"
Title
=
"Room"
Width
=
"70px"
Resizable
=
"true"
/>
@foreach (var item in Data)
{
<
GridColumn
Field
=
"@item.Name"
Title
=
"@item.Title"
Width
=
"70px"
Resizable
=
"true"
>
</
GridColumn
>
}
<
GridCommandColumn
Width
=
"300px"
>
<
GridCommandButton
Command
=
"Save"
Icon
=
"save"
ShowInEdit
=
"true"
> Update </
GridCommandButton
>
<
GridCommandButton
OnClick="@((args)=> SelectDashboardModel(args.Item as DataModel))"
Icon="edit"> Edit
</
GridCommandButton
>
<
GridCommandButton
Command
=
"Cancel"
Icon
=
"cancel"
ShowInEdit
=
"true"
> Cancel </
GridCommandButton
>
</
GridCommandColumn
>
</
GridColumns
>
How do I install the Demo version on MacOS (Mojave)?
When I try to download, I only have the option of an exe or an msi - neither of which open on the Mac.