I have a knowledge of using SingleTextInputDialog, Is there any way to implement multi text input dialog in Theia?
Hi @keerthikumarb,
There is nothing such as a multi text input dialog in Theia itself, but nothing prevents you from building one yourself.
You can simply create a new class extending AbstractDialog<string[]>
and implement it similar to the original SingleTextInputDialog
.
1 Like
Yes, it worked… thank you.