}
@Override
protected String getOndblclick(FacesBean bean)
{
RenderingContext rc = RenderingContext.getCurrentInstance();
ContainerInfo info = _getContainerInfo(rc, _isLeading);
ContainerInfo otherInfo = _getContainerInfo(rc, !_isLeading);
StringBuilder builder = new StringBuilder();
builder.append("TrShuttleProxy._moveItems('");
builder.append(info.id);
builder.append("','");
builder.append(otherInfo.id);
builder.append("','");
builder.append(rc.getFormData().getName());
builder.append("');");
return builder.toString();
}