<?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>widgets Archives - Cube Websites</title>
	<atom:link href="https://cubewebsites.com/tag/widgets/feed/" rel="self" type="application/rss+xml" />
	<link>https://cubewebsites.com/tag/widgets/</link>
	<description>web design and development</description>
	<lastBuildDate>Wed, 04 Jan 2012 19:58:12 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://cubewebsites.com/wp-content/uploads/2019/04/cropped-favicon-32x32.png</url>
	<title>widgets Archives - Cube Websites</title>
	<link>https://cubewebsites.com/tag/widgets/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Gitview &#8211; JS Widget To List GitHub Repositories</title>
		<link>https://cubewebsites.com/development/javascript/gitviewjs-widget-to-list-github-repositories/</link>
					<comments>https://cubewebsites.com/development/javascript/gitviewjs-widget-to-list-github-repositories/#comments</comments>
		
		<dc:creator><![CDATA[Cube Websites]]></dc:creator>
		<pubDate>Wed, 04 Jan 2012 19:07:33 +0000</pubDate>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[open-source]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[widgets]]></category>
		<guid isPermaLink="false">http://www.cubewebsites.com/blog/?p=356</guid>

					<description><![CDATA[<p>If you’re an active user of GitHub and work on any open-source projects then may want to show off your projects and activity on your own website.  This is where Gitview comes in. Gitview allows you to display all your GitHub repos, and gives the option to display a detailed version including a graph of [&#8230;]</p>
<p>The post <a href="https://cubewebsites.com/development/javascript/gitviewjs-widget-to-list-github-repositories/">Gitview &#8211; JS Widget To List GitHub Repositories</a> appeared first on <a href="https://cubewebsites.com">Cube Websites</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" style="display: block; float: none; margin-left: auto; margin-right: auto;" title="image" src="http://www.cubewebsites.com/blog/wp-content/uploads/2012/01/image2.png" alt="image" width="516" height="192" /></p>
<p>If you’re an active user of GitHub and work on any open-source projects then may want to show off your projects and activity on your own website.  This is where <a href="http://gitview.logicalcognition.com/" target="_blank">Gitview</a> comes in.</p>
<p><img loading="lazy" decoding="async" style="display: inline;" title="image" src="http://www.cubewebsites.com/blog/wp-content/uploads/2012/01/image3.png" alt="image" width="470" height="407" /></p>
<p>Gitview allows you to display all your GitHub repos, and gives the option to display a detailed version including a graph of your project activity, or a simple compact version if you prefer.  Not only that, but all the information displayed is live.</p>
<p>The full feature list is:</p>
<ul>
<li><span style="color: #404040;">Asynchronous loading of all date</span></li>
<li><span style="color: #404040;">All data is 100% live</span></li>
<li><span style="color: #404040;">The Activity Graph uses the Canvas element</span></li>
<li><span style="color: #404040;">You can toggle the regular or small version</span></li>
<li><span style="color: #404040;">No need for additional styles</span></li>
<li><span style="color: #404040;">Works with all JS frameworks (jQuery, Prototype, Mootools, etc)</span></li>
<li><span style="color: #404040;"><a href="http://sam.zoy.org/wtfpl/" target="_blank">WTFPL</a> license</span></li>
</ul>
<p><span id="more-356"></span></p>
<p>Using it is very simple:</p>
<p>1.  Include the script on your page</p>
<pre>&lt;script src="http://logicalcognition.com/Projects/Gitview/Gitview.js"&gt;&lt;/script&gt;</pre>
<p>2.  Create a GitView anywhere on your page from a script tag or a JavaScript file:</p>
<pre>var view = new Gitview({
  user    : 'cubewebsites',      // any github username
  domNode : document.body,  // domNode to attach to
  compact : false           // if set to true, will display smaller version of widget (no participation graph)
});</pre>

<div id="gitview"></div>
<script type="text/javascript" src="http://logicalcognition.com/Projects/Gitview/Gitview.js"></script>
<script type="text/javascript">
var view = new Gitview({ 
  user    : 'bouchon',      // any github username
  domNode : document.getElementById('gitview'),  // domNode to attach to
  compact : false           // if set to true, will display smaller version of widget (no participation graph)
});
</script>

<p>Enjoy!</p>
<p>The post <a href="https://cubewebsites.com/development/javascript/gitviewjs-widget-to-list-github-repositories/">Gitview &#8211; JS Widget To List GitHub Repositories</a> appeared first on <a href="https://cubewebsites.com">Cube Websites</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://cubewebsites.com/development/javascript/gitviewjs-widget-to-list-github-repositories/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>jQuery UI Bootstrap &#8211; A Bootstrap-themed kickstart for jQuery UI widgets</title>
		<link>https://cubewebsites.com/development/javascript/jquery-ui-bootstrap-a-bootstrap-themed-kickstart-for-jquery-ui-widgets/</link>
					<comments>https://cubewebsites.com/development/javascript/jquery-ui-bootstrap-a-bootstrap-themed-kickstart-for-jquery-ui-widgets/#comments</comments>
		
		<dc:creator><![CDATA[Cube Websites]]></dc:creator>
		<pubDate>Sat, 31 Dec 2011 11:39:51 +0000</pubDate>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[open-source]]></category>
		<category><![CDATA[ui]]></category>
		<category><![CDATA[widgets]]></category>
		<guid isPermaLink="false">http://www.cubewebsites.com/blog/?p=333</guid>

					<description><![CDATA[<p>jQuery UI Bootstrap jQuery UI Bootstrap is an open-source effort by @addyosmani to introduce the Bootstrap styling into the standard jQuery UI widgets.&#160; It covers many of the widgets available on the jQuery UI website including: Accordion Tabs Buttons and Button Sets Horizontal slider Progress Bar Dialogs Icons Date Picker Whilst it’s still a work [&#8230;]</p>
<p>The post <a href="https://cubewebsites.com/development/javascript/jquery-ui-bootstrap-a-bootstrap-themed-kickstart-for-jquery-ui-widgets/">jQuery UI Bootstrap &#8211; A Bootstrap-themed kickstart for jQuery UI widgets</a> appeared first on <a href="https://cubewebsites.com">Cube Websites</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>jQuery UI Bootstrap</strong></p>
<p><a href="http://addyosmani.github.com/jquery-ui-bootstrap/" rel="nofollow" target="_blank">jQuery UI Bootstrap</a> is an open-source effort by <a href="http://twitter.com/addyosmani" target="_blank">@addyosmani</a> to introduce the <a href="http://twitter.github.com/bootstrap/" rel="nofollow" target="_blank">Bootstrap</a> styling into the standard <a href="http://jqueryui.com/" rel="nofollow" target="_blank">jQuery UI widgets</a>.&nbsp; It covers many of the widgets available on the jQuery UI website including:</p>
<ul>
<li><font color="#404040">Accordion</font>
<li><font color="#404040">Tabs</font>
<li><font color="#404040">Buttons and Button Sets</font>
<li><font color="#404040">Horizontal slider</font>
<li><font color="#404040">Progress Bar</font>
<li><font color="#404040">Dialogs</font>
<li><font color="#404040">Icons</font>
<li><font color="#404040">Date Picker</font></li>
</ul>
<p><img loading="lazy" decoding="async" style="display: block; float: none; margin-left: auto; margin-right: auto" title="bootstrapui" alt="bootstrapui" src="http://www.cubewebsites.com/blog/wp-content/uploads/2011/12/bootstrapui3.jpg" width="700" height="666"></p>
<p>Whilst it’s still a work in process, what’s available already is fantastic and I’d love to see where this project goes.&nbsp; It’s the next logical step for the Bootstrap framework; we have the standard web elements and layouts, now it’s about making those pages interactive using one of the most popular widget libraries available, jQuery UI, and making that look like the rest of the site…well it just makes good sense.</p>
<p><strong>Bootstrap</strong></p>
<p>Here’s a quick introduction to Bootstrap for those that haven’t yet heard of it, or aren’t sure what it does.</p>
<p><a href="http://twitter.github.com/bootstrap/" rel="nofollow">Bootstrap</a> is a prototyping framework introduced by Twitter in mid-2011.&nbsp; It’s aimed at making more consistent browsing experience for users as they browse various sites and applications on the web.&nbsp; It’s free, open-source, and uses LessCSS making it a breeze to modify to suit your own needs.</p>
<p>Since it’s launch, it has been very well received by the developer community, and I’ve noticed it being adopted by many popular websites and open-source software including:</p>
<ul>
<li><font color="#404040"><a href="http://www.concrete5.org/" rel="nofollow">Concrete5</a></font>
<li><font color="#404040"><a href="http://www.codecademy.com" rel="nofollow">CodeAcademy</a></font>
<li><font color="#404040"><a href="http://demo.whmcs.com/" rel="nofollow">WHMCS</a></font></li>
</ul>
<p>I’ve even used it on the Cube Websites website for the form elements and as a grid system.</p>
<p><strong>Get Started</strong></p>
<ul>
<li><a href="http://addyosmani.github.com/jquery-ui-bootstrap/" rel="nofollow" target="_blank">jQuery UI Bootstrap</a>
<li><a href="http://github.com/addyosmani/jquery-ui-bootstrap/" rel="nofollow" target="_blank">jQuery UI Bootstrap on GitHub</a>
<li><a href="http://twitter.github.com/bootstrap/#" rel="nofollow" target="_blank">Bootstrap</a></li>
</ul>
<p><font color="#737373">jQuery UI Bootstrap seems like a great idea, and has a lot of potential for making Bootstrap even better.&nbsp; I’ll definitely be trying it on my next project involving UI widgets.&nbsp; Whilst it looks fantastic already, I’d love to see where it goes from here.&nbsp; One of the things I’d like to see is the stylesheets done in Less so that the widgets can be customised to look exactly how the web designer wants.</font></p>
<p>The post <a href="https://cubewebsites.com/development/javascript/jquery-ui-bootstrap-a-bootstrap-themed-kickstart-for-jquery-ui-widgets/">jQuery UI Bootstrap &#8211; A Bootstrap-themed kickstart for jQuery UI widgets</a> appeared first on <a href="https://cubewebsites.com">Cube Websites</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://cubewebsites.com/development/javascript/jquery-ui-bootstrap-a-bootstrap-themed-kickstart-for-jquery-ui-widgets/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>HOW TO: Correctly Set Source Model In A Magento Widget</title>
		<link>https://cubewebsites.com/magento/how-to-correctly-set-source-model-in-a-magento-widget/</link>
					<comments>https://cubewebsites.com/magento/how-to-correctly-set-source-model-in-a-magento-widget/#comments</comments>
		
		<dc:creator><![CDATA[Cube Websites]]></dc:creator>
		<pubDate>Mon, 11 Oct 2010 20:44:52 +0000</pubDate>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[source model]]></category>
		<category><![CDATA[widgets]]></category>
		<guid isPermaLink="false">http://www.cubewebsites.com/blog/?p=234</guid>

					<description><![CDATA[<p>I just started writing a custom Magento widget for an upcoming Magento Template following the tutorial in the Magento knowledgebase. As one of the options for the widget I needed a custom value provider, so decided to use the instructions provided to specify a source model using the source_model parameter. However, by using the given [&#8230;]</p>
<p>The post <a href="https://cubewebsites.com/magento/how-to-correctly-set-source-model-in-a-magento-widget/">HOW TO: Correctly Set Source Model In A Magento Widget</a> appeared first on <a href="https://cubewebsites.com">Cube Websites</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I just started writing a custom Magento widget for an upcoming Magento Template following the tutorial in the Magento knowledgebase.</p>
<p>As one of the options for the widget I needed a custom value provider, so decided to use the instructions provided to specify a source model using the source_model parameter.</p>
<p>However, by using the given format the widget options just wouldn&#8217;t load in the admin area.</p>
<pre class="brush: xml; title: ; notranslate">&lt;source_model&gt;widgettwo/services&lt;/source_model&gt;</pre>
<p>I couldn&#8217;t easily find any results by searching Google for help, so after spending a bit of time with trial and error I found the solution to this problem.  Instead of using the module/model structure, you actually need to provide the class name of your model e.g.:</p>
<pre class="brush: xml; title: ; notranslate">&lt;source_model&gt;Cube_CategoryFeatured_Model_Categories&lt;/source_model&gt;</pre>
<p>After updating my widget.xml file to use the new source model parameter everything worked smoothly.</p>
<p>The widget I&#8217;m creating will be included in the next commercial Magento template, and I&#8217;ll also make it available on Magento Connect for free of charge!</p>
<p>The post <a href="https://cubewebsites.com/magento/how-to-correctly-set-source-model-in-a-magento-widget/">HOW TO: Correctly Set Source Model In A Magento Widget</a> appeared first on <a href="https://cubewebsites.com">Cube Websites</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://cubewebsites.com/magento/how-to-correctly-set-source-model-in-a-magento-widget/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
