Implemented egw_popup_action, tested, got it working with IE

This commit is contained in:
Andreas Stöckel
2011-02-26 18:04:28 +00:00
parent ce20a2f3ff
commit 1f751b452a
7 changed files with 452 additions and 129 deletions

View File

@ -91,8 +91,8 @@ function egw_json_encode(input)
var buf = [];
for (var k in input)
{
//Filter the remove function, which is added to arrays in egw_fw_classes
if (k != 'remove')
//Filter non numeric entries
if (!isNaN(k))
buf.push(egw_json_encode(input[k]));
}
return '[' + buf.join(',') + ']';