-
1. Re: Can the HTML Workspace Be Customized/Extended?
Shashank Kapoor Jan 10, 2014 8:15 AM (in response to JoshDBoyle)Hi Josh,
You may use Workspace source for your customization http://helpx.adobe.com/livecycle/help/html-workspace/introduction-customizing-html-workspa ce.html#SDK package
HTML Workspace is a single page application built on Backbone (http://backbonejs.org/#). The navbar at the top is rendered from markup at src\main\webapp\js\runtime\templates\appnavigation.html where you may define another <li> in the <ul>. The styles are picked from src\main\webapp\css\style.css where you may want to add new style to your button. Backbone router at src\main\webapp\js\router handles the URL navigation within the single page application (http://backbonejs.org/#Router). You may define a Backbone view/template for your page at src\main\webapp\js\runtime\routes similar to existing 4 routes. In router, when button click navigates the application to page URL, you will need to render the view.
Regards
Shashank


