I need to add bookmarking support to our application. I am looking at urlKit, but the problem is that our content is dynamically loaded and i do not see how can i create an easy and straightforward way to deal with bookmarking when we're talking about dynamic content.
I understand that Flex applications ARE applications, and applications have states, not pages. But my client doesn't, and there is nothing i can do... he wants to bookmark things like the registered users, etc using the browser. He doesn't need the back/next button, just bookmarking. To simplify our problem, imagine an application with ten sections, each section is different, but all of them have at least two states: listing (matching some criteria - like the current page, and number of items per page) and detail (loaded given the ID of the object). For example, one page lists the users from 12 to 22 from the category 5, and the other shows the detail of the user with the ID 4. The client wants to bookmark both the pages, the listing on the current state, and the detail, but if i can only solve the problem for the detail it'll do. Our project is big, and i want to avoid creating a spaghetti solution, so i would like to know if there's a best practice to solve this situation. Thanks, João Saleiro

