Textbox

Simple input with included title

<TextBox/>

TextBox Area

Same TextBox with textarea renderer

<TextBox/>

NumericBox

0
<NumericBox/>

DatePicker

Bind to DateTime

4/27/2024 8:26:52 PM
<DatePicker/>

HijriDatePicker

Bind to string

1445-شوال-18
<HijriDatePicker/>

SwitchButton

False
<SwitchButton/>

DropDownList

<DropDownList/>

DropDownList (Multiple)

<DropDownList/>

DropDownList with ItemTemplate

<DropDownList> 
<ItemTemplate>
//Put here any html you wand and you can use context to get current item var item = context.CurrentItem; </ItemTemplate>
</DropDownList>

And to initialze DropDownList:

@code{
                    class User
            {
                    public int Id {get; set;}
                    public string Name {get; set;}
            }
                    IList <Model> itemsSource = new  List <Model>()
              {
                    itemsSource = someService.GetItems();
              };
}
An error has occurred. This application may no longer respond until reloaded. Reload 🗙