<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet href="/rss2full.xsl" type="text/xsl" media="screen"?>
<rss version="2.0">
<channel>
	<title>Message Board</title>
	<link>http://forums.mrc-productivity.com</link>
	<description>Message Board</description>
	<ttl>60</ttl>
	<pubDate>Fri, 30 Jul 2010 12:18:22 GMT</pubDate>
	<item>
		<title>Retrieval with Graph (Goole Chart)</title>
		<link>http://forums.mrc-productivity.com/post?id=4817528</link>
		<description>This retrieval template uses Google Chart API to graph values of each row  in 3 types of graphs. More types of graphs can be added following the example of this template. &lt;br /&gt;&lt;br&gt;At this time 3 properties can be configured by changing the template or changing the generated skeleton:&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;ch_size='120x60'  specify the size of each chart&lt;br /&gt;&lt;br&gt;ch_color='105594'  specify the color&lt;br /&gt;&lt;br&gt;ch_space='8'  specify the space between the bars in bar chart&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;The largest value of all  numeric columns on a page is calculated and used to scale the charts. &lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Example:&lt;br /&gt;&lt;br&gt;&lt;a href=&quot;http://www.mrc-productivity.com/mrcjava/servlet/MRCFORUM.I00080s&quot; target=&quot;_blank&quot;&gt;http://www.mrc-productivity.com/mrcjava/servlet/MRCFORUM.I00080s&lt;/a&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;More details such as chart legend, labels etc can be added to the charts. See google chart API document:&lt;br /&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/apis/chart/docs/making_charts.html&quot; target=&quot;_blank&quot;&gt;http://code.google.com/apis/chart/docs/making_charts.html&lt;/a&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt; &lt;p&gt;Forum: &lt;a href=&quot;http://forums.mrc-productivity.com/?forum=172133&quot;&gt;m-Power Templates&lt;/a&gt;
</description>
		<guid isPermaLink="false">http://forums.mrc-productivity.com/post?id=4817528</guid>
		<pubDate>Mon, 26 Jul 2010 20:12:04 GMT</pubDate>
		<author>brucej</author>
	</item>

	<item>
		<title>Retrieval with Page Totals</title>
		<link>http://forums.mrc-productivity.com/post?id=4813979</link>
		<description>This template displays total values for each numeric column on a page.&lt;br /&gt;&lt;br&gt;It is based on the fact that in the html sketelon the numerical values of all fields are available in the form of $ {row.fieldName_o}. We only need to add the values up and display them at the bottom of the table. In fact you can display them anywhere in the page by moving the freeMarker code around in the skeleton. &lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Demo &lt;br /&gt;&lt;br&gt;&lt;a href=&quot;http://www.mrc-productivity.com/mrcjava/servlet/MRCFORUM.I00070s&quot; target=&quot;_blank&quot;&gt;http://www.mrc-productivity.com/mrcjava/servlet/MRCFORUM.I00070s&lt;/a&gt; &lt;p&gt;Forum: &lt;a href=&quot;http://forums.mrc-productivity.com/?forum=172133&quot;&gt;m-Power Templates&lt;/a&gt;
</description>
		<guid isPermaLink="false">http://forums.mrc-productivity.com/post?id=4813979</guid>
		<pubDate>Fri, 23 Jul 2010 21:25:52 GMT</pubDate>
		<author>brucej</author>
	</item>

	<item>
		<title>HTML5 Tutorial #2: New Structural Elements!</title>
		<link>http://forums.mrc-productivity.com/post?id=4807935</link>
		<description>The most commonly overused element in HTML is the &quot;div&quot; tag.  Why?  For starters, we don't have many other options.  Also, it's kind of a catch-all tag.  By definition, the &quot;div&quot; tag defines a division or section in an HTML document.  As you probably know, there are many things that can be defined as divisions or sections within an HTML document.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;This leads to problems, primarily when maintaining or updating your HTML.  Sorting through all the &quot;div&quot; tags to find the correct area to edit can be tedious and time consuming.  Also, it looks overwhelming, especially on the really large pages.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Good news!  HTML5 fixes div overload.  It introduces new semantic elements aimed at making cleaner and more understandable code.  For example, when making a header, we're used to seeing something like this:&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:98px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;div id=&amp;quot;header&amp;quot;&amp;gt;&lt;br&gt;Header stuff, logos, links, etc&lt;br&gt;&amp;lt;/div&amp;gt;&lt;br&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;With HTML5, that same code would look like this:&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:98px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;header&amp;gt;&lt;br&gt;Header stuff, logos, links, etc&lt;br&gt;&amp;lt;/header&amp;gt;&lt;br&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Makes a lot of sense doesn't it?  But, that's not all.  There are many more tags being added to HTML5 to help clean up div overload, and to provide a cleaner, more structured layout.  Now, you may be thinking, &quot;Why does this matter? I still want to use divs.&quot;  The answer: The new structural elements may not be the most exciting things in the world, but they do matter.  Here are a few reasons why:&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;First&lt;/b&gt;, the new elements are very well defined and will help you create a much more organized HTML document.  This not only looks nicer, it's easier to maintain.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Second&lt;/b&gt;, there's less overall code.  This makes your pages load faster and can positively affect search engine optimization.  In case you're unaware, Google factors page load time into their algorithms. &lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Third&lt;/b&gt;, and this is more of an assumption, but I believe search spiders will be taught to look for specific content in specific sections, or scan certain sections first.  Again, this is just a guess, but it makes logical sense going forward that Google would employ HTML5 structural elements in their search algorithms.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Fourth&lt;/b&gt;, HTML structure provides the basis for most everything you do in HTML.  While not exciting, it's necessary for you to understand how the structural elements are changing, because they will be referenced frequently in the upcoming tutorials.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Okay, ready to learn the new structural elements?  Before I explain the new elements, it might help to take a look at this illustration.  It will help you understand each element's purpose:&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;img src=&quot;http://www.mrc-productivity.com/forum/images/semantics.jpg&quot;&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Now, let's get into the definitions, which I have listed below.  Be sure to reference the image above if you have any confusion.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;header&lt;/b&gt; - This element houses all of the introductory elements on a page, such as navigation, menu bar, logos, etc&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;section&lt;/b&gt;- Defines sections in a document, such as chapters, headers, footers, etc  For example, a Web site's home page could be split into sections for an introduction, news items, contact information.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;nav&lt;/b&gt; - Defines a section of a page that links to other sites or pages within the website.  In other words, it houses navigation links on a page.  The &lt;nav&gt; tag only applies to major block of navigation links.  For example, it is perfectly acceptable to place links in a footer element, such as contact, terms of use, privacy policy, etc...&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;article&lt;/b&gt; - The primary use for the article tag in HTML5 is to define external content.  This could be a forum post, a magazine or newspaper article, a blog entry, a user-submitted comment, an interactive widget or gadget, or any other independent item of content.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;footer&lt;/b&gt; - The footer element marks the footer for an entire web page, or for a section of a page.  It is entirely possible that you will use multiples footer tags on one page.   The footer tag usually contains information like author name, publish date, contact info, etc&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;aside&lt;/b&gt; - The aside element represents parts of a page (or article) that is not the primary focus of the page (or article), yet still related.  For example, an aside could be used to pull a quote out of an article and display it in large, bold type so as to attract readers.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;hgroup&lt;/b&gt; - This element is used to group other header elements (h1-h6), and only header elements.  It must contain at least two header elements.  For example, you would use an hgroup tag to group a title and subtitle together.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;address&lt;/b&gt; - Used for representing an address&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;h2&gt;Example&lt;/h2&gt;&lt;br /&gt;&lt;br&gt;To help you further understand these new structural elements, Ive taken a screenshot of our blog and marked each element as if it were made in HTML5.  &lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;img src=&quot;http://www.mrc-productivity.com/forum/images/semanticsblog600.jpg&quot;&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Most of the elements would have been div tags in the past, but are now cleaner and easier to understand.  &lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;h2&gt;Conclusion&lt;/h2&gt;&lt;br /&gt;&lt;br&gt;HTML5 gives us a cleaner and more logical method to outline our pages.  Instead of just using the div tag for layout, we now have access to plenty of other elements that not only make sense, will leave us with cleaner and more maintainable code.  &lt;br /&gt;&lt;br&gt; &lt;p&gt;Forum: &lt;a href=&quot;http://forums.mrc-productivity.com/?forum=173105&quot;&gt;HTML&lt;/a&gt;
</description>
		<guid isPermaLink="false">http://forums.mrc-productivity.com/post?id=4807935</guid>
		<pubDate>Mon, 19 Jul 2010 21:06:45 GMT</pubDate>
		<author>steveh</author>
	</item>

	<item>
		<title>HTML5 Tutorial #1: Forms!</title>
		<link>http://forums.mrc-productivity.com/post?id=4797185</link>
		<description>I'm very excited about forms in HTML5.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Why am I excited about something boring like forms?  Because making forms in HTML5 will be far simpler and more powerful than ever before.  What used to require javascript, will now be built into HTML.  First, I'm going to cover new input types, and then move on to new attributes.  I've included example syntax for each new type and attribute, and thrown in screenshots when applicable.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Word of warning&lt;/b&gt;: If you want to try to use any of these new additions, most of them are only supported by the latest Opera or Chrome browsers.  &lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Okay, let's get started.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;H2&gt;New input types:&lt;/h2&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Date, Month, &amp; Week&lt;/b&gt;  HTML5 introduces 3 new date-related input types for use in forms: Date, Month, &amp; Week.  These new types automatically create a date-picker on your field.  I've grouped Date, Month, &amp; Week into the same category because they essentially do the same thing.  (Obviously, date lets you pick a specific date, while month/week let you pick months and weeks respectively).  This is exciting because date-pickers like this were previously only added with javascript.  Now look how easy it is and how nice it looks.  I've pasted the syntax and a screenshot below:&lt;br /&gt;&lt;br&gt;&lt;img src=&quot;http://www.mrc-productivity.com/forum/images/date.jpg&quot; /&gt;&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:98px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt;    &amp;lt;label&amp;gt;Date:&amp;lt;/label&amp;gt;&lt;br&gt;    &amp;lt;input type=&amp;quot;date&amp;quot; name=&amp;quot;Date&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;B&gt;Time&lt;/b&gt;  As you might've guessed, this lets you add time fields to your forms.  What's great about the new Time input type is the way it's implemented.  It automatically creates arrows for increasing or decreasing time.  Again, this is something you couldn't do with plain HTML in the past.  I've pasted the code and another screenshot below.  In the code, the &quot;step&quot; is calculated in seconds, so 600=10 minutes.&lt;br /&gt;&lt;br&gt;&lt;img src=&quot;http://www.mrc-productivity.com/forum/images/time.jpg&quot; /&gt;&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:98px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt;    &amp;lt;label&amp;gt;Time:&amp;lt;/label&amp;gt;&lt;br&gt;    &amp;lt;input type=&amp;quot;time&amp;quot; step=&amp;quot;600&amp;quot; name=&amp;quot;Date&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt; &lt;br /&gt;&lt;br&gt;&lt;b&gt;Datetime &amp; datetime-local&lt;/b&gt;  Datetime is exactly what the name implies: A combination between the new Date and Time input types.  It lets you create an input field and let users select a time and a date in one field.  It includes the date-picker box and the time increase/decrease arrows.  As you might have guessed, the syntax is very simple:&lt;br /&gt;&lt;br&gt;&lt;img src=&quot;http://www.mrc-productivity.com/forum/images/datetime.jpg&quot; /&gt;&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:98px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt;    &amp;lt;label&amp;gt;Time:&amp;lt;/label&amp;gt;&lt;br&gt;    &amp;lt;input type=&amp;quot;datetime&amp;quot; name=&amp;quot;DateTime&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Range&lt;/b&gt;  This lets you add a range slider to your forms as an input field.  No javascript or anything!  Basically, you create a line with minimum and maximum values and have a slider that users can move to the correct value.  This is another feature that used to require javascript, but is now easy as pie.  Here's the syntax and a screen shot:&lt;br /&gt;&lt;br&gt;&lt;img src=&quot;http://www.mrc-productivity.com/forum/images/range.jpg&quot; /&gt;&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:98px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt;&amp;lt;label&amp;gt;Range:&amp;lt;/label&amp;gt;&lt;br&gt;&amp;lt;input type=&amp;quot;range&amp;quot; name=&amp;quot;Range&amp;quot; min=&amp;quot;0&amp;quot; max=&amp;quot;100&amp;quot; value=&amp;quot;50&amp;quot; step=&amp;quot;10&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Search&lt;/b&gt;  Indicates that a field is a search box.  Different browsers add different features to search boxes.  For example, if an input field is identified as a search box, Safari and Chrome automatically add an &quot;x&quot; on the right side for clearing the contents of the search box.&lt;br /&gt;&lt;br&gt;&lt;img src=&quot;http://www.mrc-productivity.com/forum/images/search.jpg&quot; /&gt;&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:98px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt;&amp;lt;label&amp;gt;Search:&amp;lt;/label&amp;gt;&lt;br&gt;&amp;lt;input type=&amp;quot;search&amp;quot; name=&amp;quot;Search&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Color&lt;/b&gt;- Let's the user pick a color for an element.  This is not supported by any browser yet, so I can't show a screenshot.&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:98px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt;&amp;lt;label&amp;gt;Color:&amp;lt;/label&amp;gt;&lt;br&gt;&amp;lt;input type=&amp;quot;color&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Email&lt;/b&gt;  Specifies that a field should only contain a valid email address.  Returns an error if the user tries to submit a form with an invalid email.&lt;br /&gt;&lt;br&gt;&lt;img src=&quot;http://www.mrc-productivity.com/forum/images/email.jpg&quot; /&gt;&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:98px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt;&amp;lt;label&amp;gt;Email:&amp;lt;/label&amp;gt;&lt;br&gt;&amp;lt;input type=email&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;B&gt;Tel&lt;/b&gt;  Specifies that a field should only contain a telephone number.  Returns an error if the user tries to submit a form with an invalid telephone number.&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:98px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt;&amp;lt;label&amp;gt;Telephone:&amp;lt;/label&amp;gt;&lt;br&gt;&amp;lt;input type=tel&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;url&lt;/b&gt;  Specifies whether or not a field is a url and automatically adds &lt;a href=&quot;http://&quot; target=&quot;_blank&quot;&gt;http://&lt;/a&gt; to whatever is typed.&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:98px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt;&amp;lt;label&amp;gt;Website&amp;lt;/label&amp;gt;&lt;br&gt;&amp;lt;input type=url&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Number&lt;/b&gt;  Indicates that a field should contain a number, and automatically inserts arrows for increasing/decreasing the value, similar to the &quot;time&quot; field.&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:98px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt;&amp;lt;label&amp;gt;Number&amp;lt;/label&amp;gt;&lt;br&gt;&amp;lt;input type=&amp;quot;number&amp;quot; name=&amp;quot;number&amp;quot; min=&amp;quot;1&amp;quot; max=&amp;quot;10&amp;quot; step=&amp;quot;1&amp;quot; value=&amp;quot;1&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;h2&gt;New Attributes&lt;/h2&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Required&lt;/b&gt;  Indicates the user has to fill in a value before submitting a form.  Will return an error if no value is entered.&lt;br /&gt;&lt;br&gt;&lt;img src=&quot;http://www.mrc-productivity.com/forum/images/required.jpg&quot; /&gt;&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:98px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;label&amp;gt;Required:&amp;lt;/label&amp;gt;&lt;br&gt;    &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  &amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;required&amp;quot; required=&amp;quot;true&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Autofocus&lt;/b&gt;  Lets the page automatically place the cursor in an input field during page load.  The user can even turn off autofocus if they don't like it.&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:98px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt;&amp;lt;label&amp;gt;Autofocus:&amp;lt;/label&amp;gt;&lt;br&gt;&amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;AF&amp;quot; autofocus=&amp;quot;true&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;List&lt;/b&gt;  Used to identify an element that lists pre-defined options for the user.  A list must have the same ID as a datalist element in the same document.&lt;br /&gt;&lt;br&gt;&lt;img src=&quot;http://www.mrc-productivity.com/forum/images/list.jpg&quot; /&gt;&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:178px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt;&amp;lt;label&amp;gt;Search Engines: &amp;lt;input name=&amp;quot;SE&amp;quot; type=&amp;quot;url&amp;quot; list=Engines&amp;gt;&amp;lt;/label&amp;gt;&lt;br&gt;&amp;lt;datalist id=Engines&amp;gt;&lt;br&gt; &amp;lt;option value=&amp;quot;http://www.google.com/&amp;quot; label=&amp;quot;Google&amp;quot;&amp;gt;&lt;br&gt; &amp;lt;option value=&amp;quot;http://www.bing.com/&amp;quot; label=&amp;quot;Bing&amp;quot;&amp;gt;&lt;br&gt; &amp;lt;option value=&amp;quot;http://www.yahoo.com/&amp;quot; label=&amp;quot;Yahoo&amp;quot;&amp;gt;&lt;br&gt; &amp;lt;option value=&amp;quot;http://www.ask.com/&amp;quot; label=&amp;quot;Ask&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;/datalist&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Pattern&lt;/b&gt;  Lets you set a pattern for text input in a selected field.  Returns an error if the input does not match the pattern.&lt;br /&gt;&lt;br&gt;&lt;img src=&quot;http://www.mrc-productivity.com/forum/images/pattern.jpg&quot; /&gt;&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:113px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;label&amp;gt; Product number:&amp;lt;/label&amp;gt;&lt;br&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input pattern=&amp;quot;  {5}&amp;quot; name=&amp;quot;Product&amp;quot; title=&amp;quot;The product number is an uppercase letter followed by 5 digits.&amp;quot;/&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Autocomplete&lt;/b&gt;  Helps users fill out forms based on earlier user input.  For example, if a user has already entered their address once on a form, autocomplete provides an option to select the previous address input.  Autocomplete can be turned on or off on any field.&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:130px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt;&amp;lt;label&amp;gt; City:&amp;lt;/label&amp;gt;&lt;br&gt;&amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;city&amp;quot; autocomplete=&amp;quot;on&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;label&amp;gt;Credit Card: &amp;lt;/label&amp;gt;&lt;br&gt;&amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;Credit&amp;quot; autocomplete=&amp;quot;off&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Placeholder&lt;/b&gt;  Places a short hint or instructions in an input field to aid the user with data entry.&lt;br /&gt;&lt;br&gt;&lt;img src=&quot;http://www.mrc-productivity.com/forum/images/placeholder.jpg&quot; /&gt;&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:98px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt;&amp;lt;label&amp;gt;Email:&amp;lt;/label&amp;gt;&lt;br&gt;&amp;lt;input type=&amp;quot;email&amp;quot; name=&amp;quot;Email&amp;quot; placeholder=&amp;quot;Enter your email address&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Multiple&lt;/b&gt;  Indicates whether or not the user is allowed to specify more than one value.  Values must be separated by a comma.&lt;br /&gt;&lt;br&gt;&lt;img src=&quot;http://www.mrc-productivity.com/forum/images/multiple.jpg&quot; /&gt;&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:193px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt;&amp;lt;label&amp;gt;Email Addresses: &amp;lt;input name=&amp;quot;email&amp;quot; type=&amp;quot;email&amp;quot; list=emails multiple&amp;gt;&amp;lt;/label&amp;gt;&lt;br&gt;&amp;lt;datalist id=emails&amp;gt;&lt;br&gt;&amp;lt;option value=&amp;quot;test@test.com&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;option value=&amp;quot;test2@test.com&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;option value=&amp;quot;test3@test.com&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;option value=&amp;quot;test4@test.com&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;/datalist&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Min/Max&lt;/b&gt;  Indicate the allowed range values of an element.&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:98px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt;&amp;lt;label&amp;gt;Pick a number from 1-10:&amp;lt;/label&amp;gt;&lt;br&gt;&amp;lt;input type=&amp;quot;number&amp;quot; name=&amp;quot;number&amp;quot; min=0 max=10&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Step&lt;/b&gt;  Specifies the incremental values in certain fields.  In the example below, we have a range slider with values from 0-100.  The step indicates that the user can select any multiple of 10 (10,20,30,40,etc)&lt;br /&gt;&lt;br&gt;&lt;div align=center&gt;&lt;div style=&quot;margin-bottom:2px;text-align:left;width:630px&quot;&gt;Code:&lt;/div&gt;&lt;pre style=&quot;margin:0px; padding:6px; border:1px inset; border-bottom:1px solid #E8E8E8; border-right:1px solid #E8E8E8; width:630px; height:98px; overflow:auto;text-align:left;&quot;&gt;&lt;br&gt;&amp;lt;form&amp;gt;&lt;br&gt;&amp;lt;label&amp;gt;Range:&amp;lt;/label&amp;gt;&lt;br&gt;&amp;lt;input type=&amp;quot;range&amp;quot; name=&amp;quot;Range&amp;quot; min=&amp;quot;0&amp;quot; max=&amp;quot;100&amp;quot; value=&amp;quot;50&amp;quot; step=&amp;quot;10&amp;quot;&amp;gt;&lt;br&gt;&amp;lt;/form&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;h2&gt;Conclusion&lt;/h2&gt;&lt;br /&gt;&lt;br&gt;HTML5 offers a slew of new enhancements over HTML4, many of which will make your life much easier.  As you can see, many features only available with javascript will now be built into HTML5.  Using HTML5, web developers can develop powerful forms quickly, with more options available to them than ever before.&lt;br /&gt;&lt;br&gt; &lt;p&gt;Forum: &lt;a href=&quot;http://forums.mrc-productivity.com/?forum=173105&quot;&gt;HTML&lt;/a&gt;
</description>
		<guid isPermaLink="false">http://forums.mrc-productivity.com/post?id=4797185</guid>
		<pubDate>Mon, 12 Jul 2010 20:48:08 GMT</pubDate>
		<author>steveh</author>
	</item>

	<item>
		<title>HTML5 Introduction</title>
		<link>http://forums.mrc-productivity.com/post?id=4788820</link>
		<description>There's been a lot of HTML5 talk recently, thanks in part to Apple's well publicized shunning of Adobe Flash.  The topic of discussion has been limited to the ability to run video natively in HTML5, thus decreasing reliance on flash for web video.  In fact, HTML5 video has been discussed so often, I bet if you asked most people what HTML5 was, they would tell you it is something that will let them watch videos on an iPhone.  That's the equivalent of saying you want to buy a new car so you can listen to music.  Yes, that's one thing it does, but only one small part of many great enhancements.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;I'm going to write a series of HTML5 tutorials to help you understand HTML5, but first I want to introduce you to HTML5 and explain the basics for those unfamiliar with the new HTML standard.&lt;br /&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;h2&gt;What is HTML5?&lt;/h2&gt;&lt;br /&gt;&lt;br&gt;HTML5 is currently in development as the next HTML standard, which will replace the current standard, HTML 4.01.  HTML5 will provide new features necessary to create modern web applications. &lt;br /&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;h2&gt;How is it different?&lt;/h2&gt;&lt;br /&gt;&lt;br&gt;HTML5 offers developers many more capabilities than ever before.  Here are a few of the most notable additions to HTML5:&lt;br /&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;New Canvas Tag&lt;/b&gt;  Provides the ability to draw on a web page.  However, it can be used for much more than simple drawing.  Some anticipated uses of the canvas include building graphs, animations, games, and image composition.&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Native Audio and Video&lt;/b&gt;  Allows a browser to play audio and video without plugins, such as flash.&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Geolocation&lt;/b&gt;  Makes location available to any HTML5 compatible browser.  HTML5 can find a user's location and use it to tailor things like search results.&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Web workers&lt;/b&gt;  Allows a browser to process code in a background process, without affecting browser performance.  For example, javascript has the tendency to slow down pages, but using web workers, it can be processed in the background without affecting page performance.&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Smarter forms&lt;/b&gt;  Adds features that previously required javascript, such as validation, datepickers, range sliders, and more!  Better yet, the syntax for building these smarter forms is very simple.&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;New Markup&lt;/b&gt;  HTML5 adds new markup tags to provide a meaningful alternative to &quot;div&quot; tags and make your code easier to navigate.&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;b&gt;Much more&lt;/b&gt;  There are plenty of new and exciting features coming in HTML5 including drag-and-drop, offline storage, messaging, etc&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;h2&gt;When is it coming?&lt;/h2&gt;&lt;br /&gt;&lt;br&gt;HTML5 has been in development since 2004, and we are finally seeing browsers begin to support it.  In fact, you can start using many of the features right now!  HTML5 is designed to be backwards compatible (as much as possible) with older browsers, meaning the use of HTML5 won't render pages in older browsers unreadable.  &lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;h2&gt;Who does HTML5 affect?&lt;/h2&gt;&lt;br /&gt;&lt;br&gt;HTML5 affects everyone who uses the internet.  Obviously, it affects web designers more than internet users, but everyone will be affected by HTML5.  Web designers will be able to work faster and do things with HTML that either weren't possible or required javascript in the past.  Now, these features are built into HTML5.&lt;br /&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;HTML5 affects the regular internet user as well.  It will provide new features and bring more capabilities to mobile browsers.  Most notably, it will allow mobile browsers to view web video without the need for flash.  &lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;h2&gt;Which browsers support HTML5?&lt;/h2&gt;&lt;br /&gt;&lt;br&gt;The latest version of Opera offers the most HTML5 support at this time.  The latest versions of Firefox, Chrome, Safari, and Internet Explorer all support many HTML5 features, but will support more in the coming versions.&lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;h2&gt;Why should I learn HTML5?&lt;/h2&gt;&lt;br /&gt;&lt;br&gt;If you work with web development at all, you should learn HTML5.  It will be the new standard, and make you a more productive developer.  It will allow you to do things not previously possible with the old standards, and speed up your development time by leaps and bounds.  &lt;br&gt;&lt;br /&gt;&lt;br&gt;&lt;h2&gt;Conclusion&lt;/h2&gt;&lt;br /&gt;&lt;br&gt;HTML5 is finally gaining support among browsers, and will be the new HTML standard in the very near future.  If you're at all involved with web design, you should understand HTML5 and how to best implement the new features.  Thanks to HTML5's backwards compatibility, you can even start using it in your development right now. &lt;br /&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Over the next few weeks and months, I will be writing a series of HTML5 tutorials to better prepare you for the new standard and help you understand how to use it.  Feel free to add comments and fill in any blanks I may have left out.&lt;br /&gt;&lt;br&gt; &lt;p&gt;Forum: &lt;a href=&quot;http://forums.mrc-productivity.com/?forum=173105&quot;&gt;HTML&lt;/a&gt;
</description>
		<guid isPermaLink="false">http://forums.mrc-productivity.com/post?id=4788820</guid>
		<pubDate>Tue, 06 Jul 2010 15:05:46 GMT</pubDate>
		<author>steveh</author>
	</item>

	<item>
		<title>m-Power Tab Report</title>
		<link>http://forums.mrc-productivity.com/post?id=4784894</link>
		<description>This template is similar to the Accordion template released a few days ago. In this template, key values are shown in the headings. Users can then click on a tab to see that subtotal field's data.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Enjoy!&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Rick &lt;p&gt;Forum: &lt;a href=&quot;http://forums.mrc-productivity.com/?forum=172133&quot;&gt;m-Power Templates&lt;/a&gt;
</description>
		<guid isPermaLink="false">http://forums.mrc-productivity.com/post?id=4784894</guid>
		<pubDate>Fri, 02 Jul 2010 16:30:21 GMT</pubDate>
		<author>rickh</author>
	</item>

	<item>
		<title>Horizontally Display Records Templates</title>
		<link>http://forums.mrc-productivity.com/post?id=4781732</link>
		<description>This is a multiple records retrieval that displays records horizontally. &lt;br /&gt;&lt;br&gt;Everything is in the html template INQHTM-VTL.ftl.&lt;br /&gt;&lt;br&gt;The cell is decorated by a class&lt;br /&gt;&lt;br&gt;.cell1 {padding: 2px; width: 120px; height:200px; display: none;}; &lt;br /&gt;&lt;br&gt;To change the display speed of each cell (a record), assign a number to variabe &lt;br /&gt;&lt;br&gt;var displaySpeed = 100; //0.1 second&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Example: &lt;a href=&quot;http://www.mrc-productivity.com/mrcjava/servlet/MRCFORUM.I00050s&quot; target=&quot;_blank&quot;&gt;http://www.mrc-productivity.com/mrcjava/servlet/MRCFORUM.I00050s&lt;/a&gt; &lt;p&gt;Forum: &lt;a href=&quot;http://forums.mrc-productivity.com/?forum=172133&quot;&gt;m-Power Templates&lt;/a&gt;
</description>
		<guid isPermaLink="false">http://forums.mrc-productivity.com/post?id=4781732</guid>
		<pubDate>Wed, 30 Jun 2010 13:58:08 GMT</pubDate>
		<author>brucej</author>
	</item>

	<item>
		<title>m-Power Accordion Template</title>
		<link>http://forums.mrc-productivity.com/post?id=4780766</link>
		<description>The latest m-Power User Generated Template to come out utilizes the jQuery Accordion Template. This template allows you to see a collapsed list of Subtotal Records. You can then expand on any sub-total to see all of the pertaining data.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;You can learn more about this template and all other templates &lt;a href=&quot;http://www.mrc-productivity.com/mrcjava/servlet/CUSTOMERS.R00600s?run=2&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt; at the Project Exchange page.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Be sure to let me know what you think!&lt;br /&gt;&lt;br&gt;Rick &lt;p&gt;Forum: &lt;a href=&quot;http://forums.mrc-productivity.com/?forum=172133&quot;&gt;m-Power Templates&lt;/a&gt;
</description>
		<guid isPermaLink="false">http://forums.mrc-productivity.com/post?id=4780766</guid>
		<pubDate>Tue, 29 Jun 2010 19:47:13 GMT</pubDate>
		<author>rickh</author>
	</item>

	<item>
		<title>Valid Dates SQL External Object</title>
		<link>http://forums.mrc-productivity.com/post?id=4775883</link>
		<description>This project is a basic example of how to call an SQL External Object. The concept is to create a reusable program that many applications can use to verify that an end user is entering a start date that occurs before their entered end date.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Download and extract this file. Follow the steps inside the \m-Power\User Defined Docs\SQLVALID External Object.doc&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Rick &lt;p&gt;Forum: &lt;a href=&quot;http://forums.mrc-productivity.com/?forum=172134&quot;&gt;m-Power External Objects&lt;/a&gt;
</description>
		<guid isPermaLink="false">http://forums.mrc-productivity.com/post?id=4775883</guid>
		<pubDate>Fri, 25 Jun 2010 19:56:54 GMT</pubDate>
		<author>rickh</author>
	</item>

	<item>
		<title>Convert MS SQL DateTime field to Date</title>
		<link>http://forums.mrc-productivity.com/post?id=4774180</link>
		<description>Are you an MS SQL Database developer who has grown tired of working with the Date/Time stamp field? This UDF takes in the Date/Time field and displays only your date. &lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;The function is highly flexibly to handle numerous Date outputs.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;More information can be found in the &lt;a href=&quot;http://www.mrc-productivity.com/support/index.html&quot; target=&quot;_blank&quot;&gt;members&lt;/a&gt; section of the mrc website.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Rick &lt;p&gt;Forum: &lt;a href=&quot;http://forums.mrc-productivity.com/?forum=172135&quot;&gt;m-Power UDFs&lt;/a&gt;
</description>
		<guid isPermaLink="false">http://forums.mrc-productivity.com/post?id=4774180</guid>
		<pubDate>Thur, 24 Jun 2010 15:49:01 GMT</pubDate>
		<author>rickh</author>
	</item>

	<item>
		<title>m-Power Maintainer with Context Menu</title>
		<link>http://forums.mrc-productivity.com/post?id=4773966</link>
		<description>Please take a look at one of the latest User Generated Templates : Maintainer with Context Menu&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;This template provides a right click context menu as a means to edit, view, copy, and delete records in a work-with maintainer. All of the standard functionality found in a work-with maintainer also exists in this template, however the maintenance action buttons (edit, copy, view, delete) have been replaced by a right-click context menu.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;This template provides a simple demonstration of how a jQuery context menu can be implemented into any application.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;This template, like all others, will be available via the &lt;a href=&quot;http://www.mrc-productivity.com/support/index.html&quot; target=&quot;_blank&quot;&gt;Support&lt;/a&gt; area of the mrc website.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Tyler&lt;br /&gt;&lt;br&gt; &lt;p&gt;Forum: &lt;a href=&quot;http://forums.mrc-productivity.com/?forum=172133&quot;&gt;m-Power Templates&lt;/a&gt;
</description>
		<guid isPermaLink="false">http://forums.mrc-productivity.com/post?id=4773966</guid>
		<pubDate>Thur, 24 Jun 2010 12:56:39 GMT</pubDate>
		<author>tylerw</author>
	</item>

	<item>
		<title>Introduction to UDF Creation</title>
		<link>http://forums.mrc-productivity.com/post?id=4773153</link>
		<description>mrc is excited to begin offering an area for our community to share custom projects, such as custom User Defined Functions (UDFs) that they have created!&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;We hope that your benefit here is twofold. First, we encourage you to download the various UDFs that you find on this Project Exchange and implement them within your web solutions. To install, simply follow the author's provided instructions. Please keep in mind that UDFs can be written in various languages, and care will need to be taken to ensure that you have followed the author's instructions correctly.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;You can access all Projects via the &lt;a href=&quot;http://www.mrc-productivity.com/support/index.html&quot; target=&quot;_blank&quot;&gt;Support&lt;/a&gt; section of the mrc website.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Your second benefit is the ability to create your own UDFs, then share them with others in our user community.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;If you have a UDFs you wish to share, first package the necessary code in a zip-file, along with instructions on the use for the object.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Next, create a Forum post in this very Category so others from our user community can leave questions and/or comments.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Current mrc customers should access their  &lt;a href=&quot;http://www.mrc-productivity.com/mrcjava/servlet/CUSTOMERS.I00240s&quot; target=&quot;_blank&quot;&gt;Customer Portal&lt;/a&gt; to register their project.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Rick &lt;p&gt;Forum: &lt;a href=&quot;http://forums.mrc-productivity.com/?forum=172135&quot;&gt;m-Power UDFs&lt;/a&gt;
</description>
		<guid isPermaLink="false">http://forums.mrc-productivity.com/post?id=4773153</guid>
		<pubDate>Wed, 23 Jun 2010 19:52:31 GMT</pubDate>
		<author>rickh</author>
	</item>

	<item>
		<title>Introduction to External Object Creation</title>
		<link>http://forums.mrc-productivity.com/post?id=4773152</link>
		<description>mrc is excited to begin offering an area for our community to share custom projects, such as custom External Objects that they have created!&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;We hope that your benefit here is twofold. First, we encourage you to download the various external objects that you find on this Project Exchange and implement them within your web solutions. To install, simply follow the author's provided instructions. Please keep in mind that External Objects can be written in various languages, and care will need to be taken to ensure that you have followed the author's instructions correctly.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;You can access all Projects via the &lt;a href=&quot;http://www.mrc-productivity.com/support/index.html&quot; target=&quot;_blank&quot;&gt;Support&lt;/a&gt; section of the mrc website.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Your second benefit is the ability to create your own external objects, then share them with others in our user community.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;If you have an External Object you wish to share, first package the necessary code in a zip-file, along with instructions on the use for the object.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Next, create a Forum post in this very Category so others from our user community can leave questions and/or comments.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Current mrc customers should access their  &lt;a href=&quot;http://www.mrc-productivity.com/mrcjava/servlet/CUSTOMERS.I00240s&quot; target=&quot;_blank&quot;&gt;Customer Portal&lt;/a&gt; to register their project.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Rick &lt;p&gt;Forum: &lt;a href=&quot;http://forums.mrc-productivity.com/?forum=172134&quot;&gt;m-Power External Objects&lt;/a&gt;
</description>
		<guid isPermaLink="false">http://forums.mrc-productivity.com/post?id=4773152</guid>
		<pubDate>Wed, 23 Jun 2010 19:50:58 GMT</pubDate>
		<author>rickh</author>
	</item>

	<item>
		<title>Introduction to Template Creation</title>
		<link>http://forums.mrc-productivity.com/post?id=4773141</link>
		<description>mrc is excited to begin offering an area for our community to share custom projects, such as templates that they have created! &lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;We hope that your benefit here is twofold. First, we encourage you to download the various projects that you find on this Project Exchange and implement them within your web solutions. To install, simply download and extract the project file to your root directory, just as you would do with any m-Power update. &lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;You can access all Projects via the &lt;a href=&quot;http://www.mrc-productivity.com/support/index.html&quot; target=&quot;_blank&quot;&gt;Support&lt;/a&gt; section of the mrc website.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Your second benefit is the ability to create your own custom templates, then share them with others in our user community. &lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Please see &lt;a href=&quot;http://www.mrc-productivity.com/support/manual/servletmanual/Additional_Resources/Create Your Own Templates.htm&quot; target=&quot;_blank&quot;&gt;this&lt;/a&gt; documentation, which explains how to create, package, and publish your very own template.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Rick &lt;p&gt;Forum: &lt;a href=&quot;http://forums.mrc-productivity.com/?forum=172133&quot;&gt;m-Power Templates&lt;/a&gt;
</description>
		<guid isPermaLink="false">http://forums.mrc-productivity.com/post?id=4773141</guid>
		<pubDate>Wed, 23 Jun 2010 19:44:05 GMT</pubDate>
		<author>rickh</author>
	</item>

	<item>
		<title>Summary -&gt; Report Template</title>
		<link>http://forums.mrc-productivity.com/post?id=4772780</link>
		<description>This templates main objective is to run a Summary file, then automatically redirect to a predetermined page. In most cases, the predetermined page is the Report built over the Summary. However, you can configure the Summary to redirect to any webpage upon completion. &lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;This template is intended for summaries that are only run by one user (single threaded).&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;This template, like all others, will be available via the &lt;a href=&quot;http://www.mrc-productivity.com/support/index.html&quot; target=&quot;_blank&quot;&gt;Support&lt;/a&gt; area of the mrc website.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;I hope you enjoy it.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;Rick &lt;p&gt;Forum: &lt;a href=&quot;http://forums.mrc-productivity.com/?forum=172133&quot;&gt;m-Power Templates&lt;/a&gt;
</description>
		<guid isPermaLink="false">http://forums.mrc-productivity.com/post?id=4772780</guid>
		<pubDate>Wed, 23 Jun 2010 15:17:27 GMT</pubDate>
		<author>rickh</author>
	</item>

</channel>
</rss>