User editable dashboards... implementation in progress

SVN:trunk[2038]
This commit is contained in:
Denis Flaven
2012-05-25 15:58:17 +00:00
parent a970be510b
commit 341a97d2ac
2 changed files with 39 additions and 25 deletions

View File

@@ -300,4 +300,12 @@ function FixTableSorter(table)
table.tablesorter( { widgets: ['myZebra', 'truncatedList']} ); // sort-able and zebra tables
}
}
}
function DashletCreationDlg(sOQL)
{
$.post(GetAbsoluteUrlAppRoot()+'pages/ajax.render.php', {operation: 'dashlet_creation_dlg', oql: sOQL}, function(data){
$('body').append(data);
});
return false;
}