<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>saxohelp.com</title>
	<atom:link href="http://saxohelp.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://saxohelp.com</link>
	<description></description>
	<lastBuildDate>Fri, 05 Mar 2010 15:14:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Tabber &#8211; Jquery Function</title>
		<link>http://saxohelp.com/code/tabber-jquery/</link>
		<comments>http://saxohelp.com/code/tabber-jquery/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 17:31:03 +0000</pubDate>
		<dc:creator>SaxoHelp.com</dc:creator>
				<category><![CDATA[Code Samples]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[tabs]]></category>

		<guid isPermaLink="false">http://saxohelp.com/?p=41</guid>
		<description><![CDATA["TABBER": function(bag) { bag = bag &#124;&#124; {}; nav = bag.nav &#124;&#124; ".tabNav a"; if (nav){ $(nav).live("click", function(e){ e.preventDefault(); target = $(this)[0].hash; containerNav = $(this).closest("div").attr("id"); container = containerNav.split("-nav"); container = "#"+ container[0] +" div"; $(container).hide().filter(target).show(); navs = "#"+ containerNav + nav; $(navs).each(function(e){$(this).removeClass('active');}); $(this).addClass('active'); }); } Initializing tabs //Enable Tabs YourConstructor.TABBER(); Markup Requirements Navigation Default selector [...]]]></description>
			<content:encoded><![CDATA[<pre class="brush:php;">"TABBER": function(bag) {
				bag = bag || {};
				nav = bag.nav || ".tabNav a";
				if (nav){
					$(nav).live("click", function(e){
					e.preventDefault();
					target = $(this)[0].hash;
					containerNav = $(this).closest("div").attr("id");
					container = containerNav.split("-nav");
					container = "#"+ container[0] +" div";
					$(container).hide().filter(target).show();
					navs = "#"+ containerNav + nav;
           		 	$(navs).each(function(e){$(this).removeClass('active');});
   	      		 	$(this).addClass('active');
				});

				}</pre>
<h3>Initializing tabs</h3>
<pre class="brush:php;">				//Enable Tabs
					YourConstructor.TABBER();</pre>
<h2>Markup Requirements</h2>
<h3>Navigation</h3>
<p>Default selector (&#8220;.tabNav a&#8221;) can be overwritten by passing in {nav: &#8220;someSelector&#8221;}</p>
<p>div id = &#8220;containerID-nav&#8221; | we have to have it this way in order to find the tabbed container for the divs to toggle.<br />
a = each href #DIVID-TO-SHOW corresponds with a unique id of a div within the container.<br />
Html:</p>
<pre class="brush:php;">
<div id="containerID-nav" class="tabNav">
    <a class="active" href="#tab1">Tab1</a>|
    <a href="#tab2">Tab2</a>|
    <a href="#tab3">Tab3</a>
</div>
</pre>
<h3>Containers</h3>
<p>Once we run the click event for all anchors in the class .tabNav. On Click we then check the ID of the parent div in order to determine the container to search and toggle within because of this we have to follow a naming convention for the container that corresponds with the navigation. On click of Tab</p>
<p>Html:</p>
<pre class="brush:php;">
<div id="containerID">
<div id="tab1">Tab 1</div>
<div id="tab2" style="display:none">Tab 2</div>
<div id="tab3" style="display:none">Tab 3</div>
</div>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://saxohelp.com/code/tabber-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paginated Search within Search and CCE in Saxotech Online</title>
		<link>http://saxohelp.com/saxotech-online/paginated-search-within-search-and-cce-in-saxotech-online/</link>
		<comments>http://saxohelp.com/saxotech-online/paginated-search-within-search-and-cce-in-saxotech-online/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 20:24:07 +0000</pubDate>
		<dc:creator>SaxoHelp.com</dc:creator>
				<category><![CDATA[Saxotech Online]]></category>
		<category><![CDATA[CCE]]></category>
		<category><![CDATA[Pagination]]></category>
		<category><![CDATA[Saxotech]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[SOSE]]></category>

		<guid isPermaLink="false">http://saxohelp.com/?p=28</guid>
		<description><![CDATA[Currently Saxotech has no solution or options regarding Pagination within Saxotech Online. For both CCE and Fast Search / Search it will only offer you a Next &#038; Previous Links and a total number of records found and the current span that is showing for the given page you are on. We have developed a [...]]]></description>
			<content:encoded><![CDATA[<p>Currently Saxotech has no solution or options regarding Pagination within Saxotech Online. For both CCE and Fast Search / Search it will only offer you a Next &#038; Previous Links and a total number of records found and the current span that is showing for the given page you are on.</p>
<div id="attachment_32" class="wp-caption aligncenter" style="width: 321px"><img src="http://saxohelp.com/wp-content/uploads/2009/06/Kamloops-News-Events-Classifieds-Kamloops-Daily-News_1245788397153.png" alt="Standard Saxotech Online Results" title="Standard Saxotech Online Results" width="311" height="27" class="size-full wp-image-32" /><p class="wp-caption-text">Standard Saxotech Online Results</p></div>
<p>We have developed a better solution that is based on the ever popular Digg.com Style pagination.</p>
<div id="attachment_30" class="wp-caption aligncenter" style="width: 549px"><img src="http://saxohelp.com/wp-content/uploads/2009/06/All-News-Videos-Images_1245787650041.png" alt="Digg Pagination for Saxotech Online" title="Digg Style Search CCE pagination for Saxotech Online." width="539" height="56" class="size-full wp-image-30" /><p class="wp-caption-text">Digg Pagination for Saxotech Online</p></div>
<p>This is just one style and lots can be done with this. It is less than 100 lines of code and can be quickly and painlessly integrated into your site.</p>
<p>You can implement this in under 5 minutes as its one tag and one script that needs to be added.</p>
<p>This is a first attempt at offering a &#8220;plugin&#8221; for Saxotech Online. </p>
<p>Please let us know if you are interested in the Search Pagination Script. Sky is the limit with styling and laying out the Pagination for Search and CCE &#8211; if the above style isn&#8217;t what you desire we can work on a custom solution to fit your needs. </p>
<p>For more information on this solution you can <a href="http://ideasdigitized.com/contact.html">contact us here.</a> or comment below be sure to provide an email.</p>
<p>Happy Coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://saxohelp.com/saxotech-online/paginated-search-within-search-and-cce-in-saxotech-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery and Saxotech &#8211; My Favorite JavaScript Framework.</title>
		<link>http://saxohelp.com/saxotech-online/jquery-and-saxotech-my-favorite-javascript-framework/</link>
		<comments>http://saxohelp.com/saxotech-online/jquery-and-saxotech-my-favorite-javascript-framework/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 13:38:02 +0000</pubDate>
		<dc:creator>SaxoHelp.com</dc:creator>
				<category><![CDATA[Saxotech Online]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Saxotech]]></category>

		<guid isPermaLink="false">http://saxohelp.com/uncategorized/jquery-and-saxotech-my-favorite-javascript-framework/</guid>
		<description><![CDATA[Tabbed Content, Fading,Scrolling, Photo Galleries, Menus, Ajax &#8211; loading data without the annoying refresh. jQuery is a very powerful tool and with all of the extensions out there it can make your development time extremely quick. You can see it in action and find tons of tutorials and examples in one nicely laid out page [...]]]></description>
			<content:encoded><![CDATA[<p>Tabbed Content, Fading,Scrolling, Photo Galleries, Menus, Ajax &#8211; loading data without the annoying refresh.</p>
<p> jQuery is a very powerful tool and with all of the extensions out there it can make your development time extremely quick. </p>
<p>You can see it in action and find tons of tutorials and examples in one nicely laid out page here &#8211; <a href="http://jquerylist.com">jQuery List</a> and be sure to check out the official <a href="http://docs.jquery.com/Tutorials">jQuery Tutorials</a> on the official jQuery site.</p>
<p>Let me know if you have any questions or would like to see some examples in action within Saxotech Online and I can put together a Saxotech Online Tutorial utilizing jQuery. </p>
<p>Happy Coding!</p>
<p>As I come across great Jquery links / Articles etc  &#8211; I will add them here.</p>
<p><a href="http://www.ibm.com/developerworks/web/library/wa-aj-advjquery/index.html?ca=dgr-jw64jQuery-Faster&#038;S_TACT=105AGY46&#038;S_CMP=grjw64">Jquery Performance and Intermediate Concepts &#8211; Great Article</a></p>
<p><a href="http://tinyjs.com/tags/jquery?page=1">Small Footprint / File Size plugins for Jquery (also has Mootools &#038; YUI) </a></p>
<p><a href="http://desizntech.info/2009/07/15-website-for-jqery-enthusiast-and-addicts/">Great Roundup of Jquery Sites for inspiration and tutorials</a></p>
<p><a href="http://accessify.com/tools-and-wizards/developer-tools/jquery-builder/default.php">Jquery Syntax / Function Creator &#8211; help you out with Jquery Syntax and writes the function for you</a><br />
<a href="http://jquery-howto.blogspot.com/2009/02/jquery-for-firebug.html">Load Jquery onto any URL and use Firebug to manipulate the DOM.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://saxohelp.com/saxotech-online/jquery-and-saxotech-my-favorite-javascript-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DayParting your site to adapt to your audience in Saxotech Online.</title>
		<link>http://saxohelp.com/saxotech-online/dayparting-your-site-to-adapt-to-your-audience-in-saxotech-online/</link>
		<comments>http://saxohelp.com/saxotech-online/dayparting-your-site-to-adapt-to-your-audience-in-saxotech-online/#comments</comments>
		<pubDate>Thu, 07 May 2009 00:53:37 +0000</pubDate>
		<dc:creator>SaxoHelp.com</dc:creator>
				<category><![CDATA[Saxotech Online]]></category>
		<category><![CDATA[dayparting]]></category>
		<category><![CDATA[macros]]></category>
		<category><![CDATA[objectScript]]></category>

		<guid isPermaLink="false">http://saxohelp.com/?p=10</guid>
		<description><![CDATA[Day-Parting or DayParting has been heavily utilized by the Television media industry for years to target audiences and provide the content that will be appealing to your demographic at that given span of time. The same practices of Day-Parting / DayParting can be applied within Saxotech Online to provide the exact content your audience. You [...]]]></description>
			<content:encoded><![CDATA[<p>Day-Parting or DayParting has been heavily utilized by the Television media industry for years to target audiences and provide the content that will be appealing to your demographic at that given span of time.</p>
<p>The same practices of Day-Parting / DayParting can be applied within Saxotech Online to provide the exact content your audience.</p>
<p>You want to serve up two different include files within Saxotech Online based on the Time (midnite until noon / noon until midnite).</p>
<p>This can be achieved by a Macro within Saxotech Online, a little syntax and a dash of objectScript.</p>
<pre class="brush:php;">
\\Set the current 2 digit hour and two digit minute to a local variable named DayPartingTimeTest
&lt;%currentdate$d("hhmm")$V(DayPartingTimeTest)%&gt;
\\If the time is greater than 12:00 a.m. AND before 12:00 p.m
[%{DayPartingTimeTest&gt;0000&amp;DayPartingTimeTest&lt;1200}
\\morning content
    &lt;pbs:include virtual="/Includes/SomeIncludeFile_Morning.inc"&gt;
  %|%
\\nightly content
     &lt;pbs:include virtual="/Includes/SomeIncludeFile_AfterNoon.inc"&gt;
%]
</pre>
<p>This is a basic example to get you started but this can be applied to PBS:AD tags as well as integrating with other 3rd party AD systems to target ad&#8217;s to your audience just like your content. </p>
]]></content:encoded>
			<wfw:commentRss>http://saxohelp.com/saxotech-online/dayparting-your-site-to-adapt-to-your-audience-in-saxotech-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SaxoHelp.com &#8211; Saxotech Online Resources and Information</title>
		<link>http://saxohelp.com/saxotech-online/hello-world/</link>
		<comments>http://saxohelp.com/saxotech-online/hello-world/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 21:45:33 +0000</pubDate>
		<dc:creator>SaxoHelp.com</dc:creator>
				<category><![CDATA[Saxotech Online]]></category>
		<category><![CDATA[Saxotech]]></category>

		<guid isPermaLink="false">http://saxohelp.com/?p=1</guid>
		<description><![CDATA[In Mid 2009 SaxoHelp.com will launch as a great resource of information for all Saxotech Online users. We will discuss: Saxotech Online CCE  &#8211; Custom Content Engine PBS, PBO, templates, objects. Scripting with SOSE / Saxotech Object Script Integration of Ajax into the standard templates/objects. Alternatives on functionality and integration with .Net and PHP. We [...]]]></description>
			<content:encoded><![CDATA[<p>In Mid 2009 SaxoHelp.com will launch as a great resource of information for all Saxotech Online users.</p>
<p>We will discuss:</p>
<ul>
<li>Saxotech Online</li>
<li>CCE  &#8211; Custom Content Engine</li>
<li>PBS, PBO, templates, objects.</li>
<li>Scripting with SOSE / Saxotech</li>
<li>Object Script</li>
<li>Integration of Ajax into the standard templates/objects.</li>
<li>Alternatives on functionality and integration with .Net and PHP.</li>
</ul>
<p>We are currently looking for anyone interested in contributing solutions or articles regarding Saxotech Online.</p>
<p>Please feel free to leave a comment below.</p>
<p>Thanks,</p>
<p>SaxoHelp.com</p>
]]></content:encoded>
			<wfw:commentRss>http://saxohelp.com/saxotech-online/hello-world/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

