Flex 3: Is It Possible to Use DeepLinking without a ViewStack?
I've got a Flex 3 project.
Does deep linking only work on vie开发者_如何学JAVAwStacks? (My project doesn't have any viewStacks). I'd like to use deeplinking based on what was selected in a comboBox. I'd like the user to be able to bookmark or use the back button based on what was selected in the comboBox.
The comboBox selection determines which data is pulled from the database.
Is this possible? I set-up deeplinking in another project, but it had viewStacks. And all of the deep linking examples that I've seen use viewStacks.
Thank you.
-Laxmidi
Look at the documentation for BrowserManager and deep linking.
You can use Flex deep linking without a component that has it built in, but you need to add the support manually.
You will need to create a BrowserManager
instance and have it load the URL when your application loads. You can then use the URL to load the data requested.
You also need to make sure to update the URL using the BrowserManager
each time your data changes in a way that you want to have a separate link for.
精彩评论