dojo - Html tag order to obstacle clearing -


i have view defintion:

"defaultview": "leftsidebar+index+overlay+footer",     "defaulttransition": "slide",     "views": {         "leftsidebar": {             "constraint": "left",             "template": "webnyk/krm/views/leftsidebar/leftsidebar.html",             "nls": "resources/nls/authresources"         },         "footer": {             "constraint": "bottom",             "template": "webnyk/common/views/footer/footer.html",             "nls": "resources/nls/footerresources"         },         "index": {             "controller": "webnyk/krm/views/index/index"         },         "login": {             "controller": "webnyk/krm/views/login/login",             "template": "webnyk/krm/views/login/login.html",             "defaultview": "logindetails",             "nls": "resources/nls/loginresources",             "type": "webnyk/krm/baseview",             "views": {                 "logindetails":{                     "controller": "webnyk/krm/views/logindetails/logindetails",                     "template": "webnyk/krm/views/logindetails/logindetails.html",                     "type": "webnyk/krm/baseview"                 }             }         }, 

the problem when using jaws, it's reading in wrong order, because generated html order is:

"leftsidebar+index+overlay+footer" + 1 transition to(eg.: login).

<div data-app-constraint="left" id="webnykapp_leftsidebar" style="visibility: visible;"> <div data-app-constraint="center" id="webnykapp_index" style="visibility: visible; display: none;"></div> <div data-app-constraint="top" id="webnykapp_overlay" style="visibility: visible;"> <div data-app-constraint="bottom" id="webnykapp_footer" style="visibility: visible;"> <div data-app-constraint="center" id="webnykapp_login" style="visibility: visible;"> 

i need achive, footer @ last place.

how can achive that?


Comments

Popular posts from this blog

Command prompt result in label. Python 2.7 -

javascript - How do I use URL parameters to change link href on page? -

amazon web services - AWS Route53 Trying To Get Site To Resolve To www -