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
Update: Welcome Carnival of the Capitalists readers!
The recent appearance of "suitblogs" (see definition below) at both General Motors and Boeing marks a new development in the acceptance of blogging for business purposes. Of the two executives behind the blogs, GM's Bob Lutz does an excellent job in marketing his company's products to the Internet-linked auto enthusiast community, while Boeing's Randy Baseler's blog is essentially a more personalized corporate press release (a concurring review is available at Sound Politics.)
But blogs are capable of so much more! During my tenure at Boeing1, I had the opportunity to pioneer the use of the company's Intranet to manage production projects that involved work that had to be coordinated among team members dispersed at various company facilities throughout the Puget Sound, including sites at Everett, Renton, Seattle, Kent, Auburn and Frederickson.
Using internal web sites and e-mail to communicate project activity among project team members at each location, it quickly became apparent that the real power of the medium lay in being able to capture the knowledge of the project team members and disseminating it across the entire Boeing enterprise, both in space (over geographic distances) and in time (lessons learned in one project could be directly accessed in future projects, instead of relying on the "tribal knowledge" of project members).
For the projects I managed this way, all this knowledge capture was done by building and editing individual web pages in the days before blogging technology was even on the radar screen, and it was a real pain-in-the-neck to do. There was no nice, easy way to upload information directly to the web, and this obstacle blocked the proliferation of the practice. The loss to the company in being able to increase productivity through reducing learning curves can best be described as extraordinary in this regard. Worst, the losses go noticed because it's always been like that, so it becomes an unspoken cost of doing business.
Today, the technology behind blogging is changing everything. By automating the upload of enriched information in context (hypertext, images, data, etc.) directly to the web, and adding the ability to quickly and effectively search for relevant information, it is becoming easier than ever to both capture and disseminate real intellectual capital. The technology is on the cusp of being able to truly revolutionize how business within a company will be done - and it's much more than marketing.
Attribution: Ironman at politicalcalculations.com
- Suitblog
:
- noun, slang (2005): 1. A blog written by a business executive, or "suit". 2. A blog written about a set of garments.
Comment: If I Google it and I can't find it in English, I can claim credit for creating the word, right?
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.