A newbie scala/lift question:
I checked out the CalendarMonthView sample:
with Lift 1.1-M6 and it compiled and worked.
When i tried to migrate the sample to Lift 1.1-SNAPSHOT the signature of AnonFunc seems to have changed from class JsRaw to JsCmd (which is a trait).
The compiler fails here:
def itemClick = Full(AnonFunc("elem, param", JsCmd("alert( itemClick + param + - + elem.nodeName)")))
not found: value JsCmd
am i missing something ?
Regards Paul