On 16 August 2012 21:54, jwa <jamie.as...@gmail.com> wrote:

> Hi Folks,
>
> I'm writing a custom action, and I can't get help files to work! I've
> tried using the help attribute on the f:entry. It shows the help icon, but
> when clicked it doesn't show the details:
>
>                             <f:entry title="Comments"
> help="/plugin/PluginName/help-comments.html">
>                                 <f:textarea id="idComments"
> name="comments" />
>                             </f:entry>
>
>
change this to

  <f:entry title="Comments" field="comments">
    </f:textarea>
  </f:entry>

and it will auto-wire up and pull the help
from src/main/resources/com/me/myproject/plugin/ActionName/help-comments.html


> And then I have the following resource:
>
>    src/main/resources/com/me/myproject/plugin/ActionName/help-comments.html
>
> There doesn't seem to be a lot of documentation on this.
>
> Any help would be greatly appreciated.
>
> Regards,
>
> Jamie
>

Reply via email to