diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2011-01-16 23:49:31 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2011-01-16 23:49:31 +0000 |
commit | f90791f2f7b48d7e08ce08f7ead498e1191a96b8 (patch) | |
tree | a829513568b183d718280c1a81428adc5637e0ac /sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html | |
parent | 999c66e0e2398c38007b437f8c14154b725203a9 (diff) |
Add sample widget components and a page to edit them, plus minor user interaction fixes.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1059710 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html')
-rw-r--r-- | sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html b/sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html index 60d869abde..b45c0ffe24 100644 --- a/sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html +++ b/sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html @@ -44,9 +44,9 @@ </table> <br> -<table> -<tr><td>App name:</td><td><input type="text" id="appName" size="50"/></td></td><td>e.g. mycoolapp</td></tr> -<tr><td>Title:</td><td><input type="text" id="appTitle" size="50"/></td></td><td>e.g. My really cool app</td></tr> +<table width="100%"> +<tr><td>App name:</td><td><input type="text" id="appName" size="10"/></td></tr> +<tr><td>Title:</td><td><input type="text" id="appTitle" size="20"/></td></tr> </table> <input id="addAppButton" type="button" value="Add"/> </form> @@ -105,6 +105,7 @@ function getapps(sync) { $('addAppLink').onclick = function() { var div = $('newApp'); div.style.visibility = div.style.visibility == 'hidden'? 'visible' : 'hidden'; + $('appName').focus(); return false; }; |