Hello Benjamin,
Button group is not used to chose something in common use.
But you can use it if your app logic requires it.
For you to know, button only make logic to "click" on it.
You have two ways to implement this logic:
ol
liAdd "click" event-handlers to all of these buttons. You can specify logic you need in these separate event handlers./li
liAdd single "click" event-handler to whole buttons group. And fill it with the following code: http://prntscr.com/39s3yw/direct/li
precode
var button = jQuery(event.target).closest(".ui-btn");
var buttonText = button.text().trim();
var buttonName = button.attr("name");
//Using "buttonText" and "buttonName" variabels.
console.log(buttonText + " = " + buttonName);/code/pre
/ol
We suggest you use second way to implement your logic.
[quote:]
Also where can I find all of the Appery(). functions? I tryed to explore the object that Appery() returns by logging it the console, but it is extremely convoluted and doesn't tell me anything useful.
[/quote]
In common cases Appery("component") function returns a jQuery wrap object. So you can use it like jQuery("...") object.
Regards.