<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.5.1" -->
<rss version="0.92">
<channel>
	<title>Data Access Notes</title>
	<link>http://www.accessdataservices.com/blog</link>
	<description>Miscellaneous Computer Technology Notes</description>
	<lastBuildDate>Thu, 10 Jul 2008 21:16:47 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>prototype - delete table rows</title>
		<description>I set up some demos from various sources.  They use these JavaScript functions and call various prototype based javascript.



function function1() {
    document.all.myT.deleteRow(2);
}
function test(){
	var d = $('myDiv');
	alert(d.innerHTML);
	d.hide();
	d.show();
	d.addClassName('active');
}

function function2(idname){
	var d = $(idname);
	alert(d.innerHTML);
	d.hide();		
	d.addClassName('active');
}



using prototype-1.6.0.2.js from http://prototypejs.org/assets/2008/1/25/prototype-1.6.0.2.js </description>
		<link>http://www.accessdataservices.com/blog/prototype-delete-table-rows/</link>
			</item>
	<item>
		<title>joomla iframes how</title>
		<description>To use iframes in joomla 1.5, check out the wrapper module (which may not be enabled on your install, depending..).   It allows iframe to be displayed.   Select Position: User2 to show the wrapper iframe in the content area of  rhuk_milkyway.

Extensions > Modules > Wrapper 

HTH! ...</description>
		<link>http://www.accessdataservices.com/blog/joomla-iframes-how/</link>
			</item>
	<item>
		<title>Ubuntu 8.04 LTS Desktop Edition Released</title>
		<description>Ubuntu 8.04 LTS Desktop Edition Released

Integrates the Latest Stable Applications with Long Term Support

LONDON, April 21, 2008 â€“ Canonical Ltd. announced the upcoming availability of Ubuntu 8.04 LTS Desktop Edition for free download on Thursday 24 April. In related news, Canonical also announced the simultaneous release of Ubuntu 8.04 LTS ...</description>
		<link>http://www.accessdataservices.com/blog/ubuntu-804-lts-desktop-edition-released/</link>
			</item>
	<item>
		<title>toggle checkboxes javascript using prototype</title>
		<description>Toggle All Check Boxes using prototype javascript library.


function toggleCheckBoxes(formName) {
// toggle Check Boxes using Prototype Library	
	var form=$(formName);
	var i=form.getElements('checkbox');
	i.each(function(item) {
		if (item.checked) 
				item.checked=false	
			else {item.checked=true }	
	}

);
}
 </description>
		<link>http://www.accessdataservices.com/blog/toggle-checkboxes-javascript-using-prototype/</link>
			</item>
	<item>
		<title>Real programmers</title>
		<description>

source: http://xkcd.com/378/ </description>
		<link>http://www.accessdataservices.com/blog/real-programmers/</link>
			</item>
</channel>
</rss>
