See CompositeCell<http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/cell/client/CompositeCell.html>and you can add multiple buttons that can appear like links. I attach a custom button that see like links. Add the files in the same package.
Juan 2012/8/22 Magnus <[email protected]> > Hi Juan, > > thank you. > > These solutions do not have multiple anchors in one cell. Instead, the > whole cell is made clickable... > > I would like to put various anchors in one cell, i. e. I want *one* column > that represents the actions one can take with a row (e. g. "open", "edit", > "delete", and so on). The actions may be different for different records, > so I want them to be in one column (to avoid many empty cells for most > rows). > > Can the solutions you pointed me to be used/modified for this purpose? > > Magnus > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/google-web-toolkit/-/krkGraGE7ooJ. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
/*CSS for your link-button should look something like this: */
Button.buttonLink {
cursor: pointer;
cursor: hand;
border: none;
/* Disable the button-style */
background-color: transparent;
padding: 0px;
color: #4784C3;
text-decoration: underline;
}
Button.buttonLinkDisabled {
cursor: pointer;
cursor: hand;
border: none;
/* Disable the button-style */
background-color: transparent;
padding: 0px;
color: gray;
text-decoration: underline;
}
ButtonLink.java
Description: Binary data
