> I'm a newbie to Tapestry. I'm trying to get the RadioGroup component to > work, but with no success so far. I've tried the minimal example off the > official site( > http://jakarta.apache.org/tapestry/tapestry/ComponentReference/RadioGroup.html), > but it throws an exception.
> [EMAIL PROTECTED] This line means that Tapestry used the BasePage class to render the page. This class is used if no matching class could be found. Please see the documentation about this particular issue: http://jakarta.apache.org/tapestry/UsersGuide/page-class.html In a few words, you should have an application specification file defining a specific property: org.apache.tapestry.page-class-packages. This tells Tapestry to look for page classes in this package. A simple file could look like this: <?xml version="1.0"?> <!DOCTYPE application PUBLIC "-//Apache Software Foundation//Tapestry Specification 4.0//EN" "http://jakarta.apache.org/tapestry/dtd/Tapestry_4_0.dtd"> <application> <meta key="org.apache.tapestry.page-class-packages" value="com.myexample.pages"/> </application> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
