Hi Mark,
I will describe how I use bootstrap:
Download bootstrap from official site or from link bellow:
https://www.dropbox.com/s/sa7xhcpfrvncfh9/bootstrap.zip?dl=0
Unzip bootstrap folder to:
c:\AwareIM\Tomcat\webapps\AwareIM\
- I don't use it in startup.html...Either I use a specific .html which I import it in “Banner” section of the Visual Perspective.
In that .html file I enter like this:
<head>
…..
<!-- Bootstrap -->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
…...
</head>
<body>
…...
…...
…..
…..
<script src="bootstrap/js/bootstrap.min.js"></script><!-- Put this before enclosing body section-->
</body>
This .html is present in banner section (everywhere in app) and in this case I can use bootstrap code in every form, queries of the app. It works on my apps.
Example of a bootstrap button which fires a process from a form I use:
<button type="button" class="btn btn-primary" onclick="AwareApp.startProcessFromForm ('CreateNewInvoice','main', this, true);">Create new invoice</button>
You can find more examples of bootstrap menus, drop-downs, buttons, toolbars, search fields, on bootstrap official site here http://getbootstrap.com/components/
If you need more info or help, please feel free to contact.
Nice day.