Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
150963 | Jan 26,2020 01:18 AM UTC | Feb 3,2020 07:27 AM UTC | Blazor | 5 |
![]() |
Tags: Chips |
<EjsChipList @ref="chip" EnableDelete="true" CssClass="custom">
<ChipCollection>
<ChipListChip></ChipListChip>
</ChipCollection>
</EjsChipList>
@code{
EjsButton ToggleBtn;
EjsTextBox textbox;
EjsChipList chip;
public void onToggleClick()
{
var value = this.textbox.Value;
ChipModel chips = new ChipModel();
chips.Text = value;
chip.Add(chips);
}
}
<style>
.e-chip-list .custom.e-chip:first-child {
display: none;
}
</style> |
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.