Hi,
I would like to know how to conditionally hide/show an icon added via the AddIcon() method.
I have a textbox with 2 icons that are added in the Created event, I need to conditionally hide only the first one.
//First
await _textBoxRef.AddIcon("append", "e-icons e-circle-close-2", new Dictionary<string, object>() { { "onmouseup", clearSelectionMouseUp } });
//Second
await _textBoxRef.AddIcon("append", "e-icons e-chevron-down-fill", new Dictionary<string, object>() { { "onmouseup", openDialogMouseUp } });
Regards,
Sérgio Sant'Anna