I'm using Ext JS's routing in my app, but this is a more fundamental question... just know that routing in Ext JS is set up like http://url/#area1/subarea1
, where #area1 will take me to the parent level area, and subarea1 will take me to area1's 1st child item.
Anyway, what I'm trying to accomplish is adding query params to my URL... so it would be something like http://url/#area1/subarea1?startDate=03/03/2014&isDraft=true
, but it looks like location.search
is an empty string, in both FF and Chrome, so I'm assuming that's by design. I know I can parse location.href, but that seems silly. I'm basically wondering if I'm doing something wrong, or if there's some other property I can use?