I implement a bootstrap modal in the application I made. I don't exactly what is happening to this. After I implemented some js functions and etc. the page is cannot be clicked.

I implement a bootstrap modal in the application I made. I don't exactly what is happening to this. After I implemented some js functions and etc. the page is cannot be clicked.

The problem I encountering is about of div having an absolute position with lesser z-index. So what I did is that I changed the z-index to higher value. Like this: style="width:250%;position:absolute;z-index:9999;margin-top:400px;"
I guess you should use $event.stopPropagation() on your model.
When you pass event to open modal you have to put $event.stopPropagation() on your model so that it can allow actions on modal.
I hope it will work.