_NONE);
if (prop != _NONE)
return prop;
Object onClick = super.getOnClick(context, node);
ClientAction action = ClientActionUtils.getPrimaryClientAction(context,
node);
String actionScript = null;
if (action != null)
{
if (action.renderAsEvent(context, node) &&
(getDestinationAttr(context, node) == null))
{
// We must ignore actionScript if there is a destination or else the
// destination will never execute because the onclick will run first.
actionScript = action.getScript(context, node, Boolean.FALSE);
}
}
/*
else
{