- merge from stable branches (WebUI fixes)

This commit is contained in:
Christophe Dumez 2008-09-14 10:14:54 +00:00
parent 75290cf715
commit 86024c6c74
19 changed files with 64 additions and 540 deletions

View file

@ -66,7 +66,7 @@ var dynamicTable = new Class ({
for(var i=0; i<row.length; i++)
{
var td = new Element('td');
td.setHTML(row[i]);
td.set('html', row[i]);
td.injectInside(tr);
};
@ -100,7 +100,7 @@ var dynamicTable = new Class ({
{
var tds = tr.getElements('td');
row.each(function(el, i){
tds[i].setHTML(el);
tds[i].set('html', el);
});
return true;
}
@ -115,7 +115,7 @@ var dynamicTable = new Class ({
var tr = this.rows[id];
if($defined(tr))
{
tr.remove();
tr.dispose();
this.altRow();
return true;
}