to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to many, many people for contributions and suggestions. Licenced as X11: http://www.kryogenix.org/code/browser/licence.html This basically means: do what you want with it. */ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i
The most recent episode of The Apprentice offers a classic case study of how a project should be managed. In the episode, the two teams "Magna" and "Net Worth" were given the assignment of creating a "Do-It-Yourself" (DIY) workshop for this week's product placement sponsor Home Depot.
Each team's choice of a DIY project directly sealed their fates in the episode. Net Worth made the unfortuante choice of a rolling kitchen work table, which required a substantial amount of manual labor to successfully assemble. While the tip-off to the team that this particular workshop project was a poor choice should have come while they practiced assembling the table, the team made the critical mistake of not discarding the product and choosing a different one around which to build their workshop.
In effect, the team became too emotionally invested in making the rolling table project work. This irrational investment could be seen by their unwillingness to write-off the time that they had already invested and considering changing their product to one that offered a better opportunity for success while they still had time to do so. Eventually, this irrationality led directly to the team's failure, as when it came time to run their workshop, they were as spectacularly unsuccessful at assembling the table as they had been in practice.
By contrast, the DIY project selected by Magna's project manager was a model of simplicity, as noted by Suzanne Condie Lambert:
Craig informs Magna that its project is: a box. The box does not roll, fly, vibrate or explode. It's: a box.
It was so simple that the team's members all questioned whether or not it was a good choice. Fortunately for the team, project manager Craig stuck to his guns in selecting the project and the team enjoyed considerable success in running their workshop, which engaged families in the making and personalization of the box. In fact, if you're looking for something to do this weekend, your local Home Depot may be hosting it's own box workshop.
From a project management standpoint, the real secret to Magna's success in managing their assignment was scope control. By selecting a very simple product, Craig ensured that his team would not get bogged down by complexity in the way that Net Worth did. By keeping the underlying scope of the project simple, Magna made it possible to add a significant amount variability to their workshop, while still keeping the overall project simple. It's a lesson that more businesses, and project managers, could stand to learn.
Welcome to the blogosphere's toolchest! Here, unlike other blogs dedicated to analyzing current events, we create easy-to-use, simple tools to do the math related to them so you can get in on the action too! If you would like to learn more about these tools, or if you would like to contribute ideas to develop for this blog, please e-mail us at:
ironman at politicalcalculations
Thanks in advance!
Closing values for previous trading day.
This site is primarily powered by:
The tools on this site are built using JavaScript. If you would like to learn more, one of the best free resources on the web is available at W3Schools.com.