+ return false;\r
+ });\r
+\r
+ $("div.loading-box", c).show();\r
+ $("div.fatal-error-box", c).hide();\r
+ $("div.container-box", c).hide();\r
+ \r
+ $.getJSON( c.attr('ui:ajax-src') + '?callback=?',\r
+ function(data, status)\r
+ {\r
+ var fmt = '';\r
+ $(data).each( function() {\r
+ fmt += '<label><input type="checkbox" checked="checked"'\r
+ fmt += ' value="' + this.id + '" />' + this.subject +'</label>\n'\r
+ });\r
+ $("div.container-box", c).html(fmt);\r
+ $("div.loading-box", c).hide();\r
+ $("div.container-box", c).show(); \r
+ }); \r
+ \r
+ hash.w.show();\r