Editable combobox in HTML5 and bootstrap
Creating an editable combobox in HTML5 Recently while reading the HTML5 specification I found out a new cool feature called datalist element Which basically allows you to create an editable select form element by providing a list of possible values to an input whilst also…
Angular2 prevent ngboopstrap dialogs to close when clicking outside
The default behaviour for bootstrap modal dialogs is to close when you click outside the dialog however this is not always the desired behaviour When using Bootstrap 4 without the angular wrapper you need to add the data-backdrop=’static’ and data-keyboard=”false” to the button in order…