I am relatively new to Oracle APEX tool and I am struggling to create one action column in an Interactive Report, column that will contain for every row in report a dropdown button group with Edit / Delete / View, similar to the dropdown button group of Bootstrap but I don't know how to create such a thing in Apex. Could someone explain the html syntax of this code? I tried using bootstrap inside the sql query to build the html code, just like below but if I add the bootstrap css file it messes up the whole page..
'<div class="btn-group">
<button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Action <span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li><a class="btn btn-default" style="color: red;" href="javascript: void(0);" onclick="javascript: apex.confirm (''Are you sure you want to delete '||tu."alias"||'?'',''DATA_EXEC'');"><i class="fa fa-trash-o" aria-hidden="true"></i> Delete</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>'