Preserving Page State in Silverlight (like IProvideCustomContentState)
Is there any way to store a Silverlight page's state in the browser's history as with IProvideCustomContentState (a WPF class)? ...
Is there any way to store a Silverlight page's state in the browser's history as with IProvideCustomContentState (a WPF class)? ...
Hi! I currently developing a site and have bumped into a problem.. (ajax loading stored urls) Thought someone could help.. First here is sample page layout: <div id="main-container"> <div id="top-menu"> <a href="/link1" rel="ajax" />Link 1</a> <a href="/link2" rel="ajax" />Link 2</a> </div> <div id="content"> <div id...
on the web you can deep link to youtube videos like this: http://www.youtube.com/v/wiTSbmxssBQ&amp&start=20 is there a way to make this work on the iphone? thanks! ...
Hello all, I use jQuery and AJAX to load content from links and forms into a content div. In addition I use the Address plugin to enable the back button and refresh. On the server side I use Java and Spring MVC. Since I'm using jQuery Address and AJAX the only page that is directly loaded is "index.html". Everything else is loaded into...
Hello, I have a website which has many pages: For example: HOME: http://mywebsite.com/index.html SOME PAGE: http://mywebsite.com/categorie/somepage.html I decided to make my pages load dynamically with AJAX without reloading the page. So I decided to use jQuery Address plugin ( http://www.asual.com/jquery/address/doc...
I'm trying my hand at jQuery Address http://www.asual.com/jquery/address/ On a click event I set $.address.value(mypath); This fires off the $.address.change() event. When I click a link I want the behavior to be slightly different than when this event is fired by clicking the back/forward button or with a bookmark or link. Is there ...
I have a problem that I have been trying to solve since days! I don't seem to get the BrowserManager.url property after I embed using SWFObject! the purpose is, to get the URL of the HTML where the SWF file is embedded and not where the swf file itself is! explanation: I mean the SWF file is only in the root, and the file is embedded i...
I have a Flex app I built. It uses the BrowserManager class to listen for changes in the # part of the URL. When a change is made to the hash my application updates accordingly so you can link directly to a state of the application. Also inside my programming when a user clicks something, all I do is use the BrowserManager to update the ...
Hi, i'm implementing deep linking for my website. I wonder, why jquery-address is unable just to set a query string, like this: www.mywebsite.com?search=keyword When i using $.address.parameter("search", "keyword") jquery-address sets follwing url: www.mywebsite.com?search#/?keyword Why, it doing so ? I just need the plain ol...
I am having some trouble with Google Analytics picking up deep linking as separate pages. The site uses JQuery to handle tabs and deep linking. Take a look at this page as an example: http://www.albanyservices.com/compliance/#/ic_compliance/ The part of the URL after the '#' refers to the specific tab within the page. This is updated ...
I am looking to implement deep linking / back button functionality on a web site that uses jQuery and jQuery UI (tabs, dialogs...). I a new to this so I lack the knowledge to evaluate the different offerings in deep. So far, from what I read on the web, I have narrowed my choice down to jQuery BBQ and the Asual address plugin. Is there ...
Hi, I have general text in CDATA in my xml which is pulling in content into Flash. This is working well and I am able to add images this way too. What I need though is to wrap that image in an tag which, when clicked on will fire off a function in my Actionscript 2 to launch a video. Could someone please tell me how I would go about t...
I see examples in the SWFAddress documentation, but it's not clear what the convention should be for a multi-level path. Do their examples intend to suggest that the path separator should be a hyphen? Why not like this? http://example.com/#/deep/link/path ...
Hi, I need some help with deeplinking on a Flex 3 website. I've got a weird problem. I set-up deeplinking and everything was working fine. I could use the back button and I could paste the url in the browser and it would open to the appropriate "page". I set-up the deeplinking using the ViewStack's selected index as the fragment to se...
Hi, I'm getting Flex error #2007, right when the app starts up. TypeError: Error #2007: Parameter child must be non-null. at flash.display::DisplayObjectContainer/getChildIndex() at mx.core::Container/getChildIndex()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\Container.as:2411] at mx.containers::ViewStack/...
I'm an ASP.NET newbie, but not so new at programming in general. I'm creating a commercial website, and I want to allow an admin to add new articles (an article consists of text, images and various properties such as category). I am trying to decide the optimal Modus Operandi. This site is commercial, so SEO is a major consideration. Thi...
Currently, my understanding of jQuery BBQ is it requires me to use an href like href="#/stufff/123/13" Problem with that is it requires me to add a # to all my URLs throughout the site which then means non-javascript browsers can't use the site... My question, is there a way I can simply add a class to all HREFs I want deep linked? so...
Question... I want to build a one page web app that has deep linking (the url changes on click to where the user is loading) so the user can share links, bookmark, etc... The issue with the jQuery BBQ plugin is that it requires the href to have a hash in it like href="#/photos/1" That means I need to make sure every URL in my app start...
I am new to deep linking, so not sure how to do this. In order for the web site to be crawl able by all crawlers, I am using Hijax method which basically means all my links are tagged as follows: <a href=”index.php?foo=32” onClick=”navigate('index.php#foo=32'); return false”>Link</a> Due to this schema all of the pages on the web ...