Closed GoogleCodeExporter closed 9 years ago
This code is working fine so far:
{{{
class Issue341Composer extends zk.grails.Composer {
def afterCompose = { wnd ->
RequestAttributes cra = RequestContextHolder.currentRequestAttributes()
def globals = cra.getAttributeNames(RequestAttributes.SCOPE_GLOBAL_SESSION)
def requests = cra.getAttributeNames(RequestAttributes.SCOPE_REQUEST)
def sessions = cra.getAttributeNames(RequestAttributes.SCOPE_SESSION)
if (globals != null && requests != null && sessions != null) {
$('#test').text('OK')
}
}
}
}}}
Original comment by chanwit
on 3 Aug 2013 at 5:13
Closed as wont fix.
Original comment by chanwit
on 21 Aug 2013 at 1:14
Original issue reported on code.google.com by
chanwit
on 31 Jul 2013 at 10:27