To add my 2 cents:

Confirmatory modal dialogs suck. 
I rather put a hidden bright red button next to the one which deletes,
and on click, I show this red button which actually deletes.
So the user 
1) doesn't have to travel the mouse around the page too far
2) can't accidentally press space or enter to confirm.

3) With AjaxFallback..., it doesn't need JS.

Ondra


On Fri, 2012-09-28 at 22:32 -0500, Jeremy Thomerson wrote:

> On Fri, Sep 28, 2012 at 10:21 AM, kshitiz <[email protected]> wrote:
> 
> > *Last cause: The component(s) below failed to render. A common problem is
> > that you have added a component in code but forgot to reference it in the
> > markup (thus the component will never be rendered).
> >
> > 1. [Component id = message]*
> >
> 
> 
> The error message says it all.  Somewhere you have a component added to
> your java hierarchy that is not in the markup.  Look for "message" in your
> codebase.  If you can't find it, put a breakpoint in the Component class
> constructor with a conditional if the ID is "message".  Find where that
> component is being created but not referenced in the markup.
> 
> You can also turn this check off, but that's not a fix.  The message is
> indicative of a problem.  If you do decide to turn the check off it's
> somewhere in the app's settings (debug or markup - can't remember) - look
> for component use check.
> 


Reply via email to