Hi Jeff,
"...back button in the additional view fires the back button in the main view and I end up on the previous page."
Without code I'm taking a stab here. It sounds like the additional back buttons do not have a click event attached. For my app, I'm using the back button in the toolbar, so I don't have this problem. But in my navbars I have different buttons depending on the view. And this is how I'm attaching the events to those different buttons.
navBarButtons : function () {
$$("uibutton", "navbar").each(
function (item) {
if (item.hasClass("home")) {
item.bind("click",
function () {
... do something like nav to a file or view
}
);
} else if (item.hasClass("list")) {
...
I'm collecting, then looping, through all the uibuttons in context of the navbars and, depending on the class it owns, I'm attaching an event to it.
Post some code or the url and I'll look at it.
Chris
$$("uibutton", "navbar").each(
function (item) {