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.
Marin,
Is there a way to disable the "Edit" buttons when the Grid is in Add mode? I would also like to disable some other navigation links on the page when the grid is in "Add" mode. I have set a "GridIsDirty" variable when I'm in Edit mode to take care of this for edits.
If it's not possible, do you have a work around for this by any chance?
Thanks Marin,
I need to have both the PlaceHolder and the ValueTemplate but it seems the ValueTemplate only exist on the DropDownList while the PlaceHolder only exist on the ComboBox. Is it possible to make it available for both controls so it is consistent?
If not possible then have the ComboBox have the ValueTemplate.
Thanks.
I am sure I am missing something but after filtering the grid, how do I get a list of the filtered items without having to loop through the grid or something?