Not quite what I was looking for but I seemed to have resolved my issue by adding the 'formaction' attribute to the EJS Button control like the following:
<form method="post">
<div class="col-md-2">
<ejs-button id="btnEjsOne" content="EJS Button to Handler1" formaction="@Url.Page("Test","Handler1")"></ejs-button>
</div>
<div class="col-md-2">
<ejs-button id="btnEjsTwo" content="EJS Button to Handler2" formaction="@Url.Page("Test","Handler2")"></ejs-button>
</div>
</form>