I have a component binding within a modal:
<button type="button" data-toggle="modal" data-target="#myModal">New</button>
<div data-bind="component: 'wizard'" id="myModal" class="modal" role="dialog"></div>
I want to show a new wizard whenever the button is clicked. However, in this case, component is being loaded once and clicking on New button always pops up the modal with previous values.
Is it possible to load a new instance of wizard component every time I click New button?