Hi there,

I'm wondering if anyone could assist me with adding buttons to columns
within CellTables? I can do TextColumns fine but I'm experiencing
issues adding a button I've defined. So its been working fine with the
text using the code at the end.. but i want to do this:

// create a column for a download button
// add the button to the column
// add the column to the table


Any ideas much apreciated!
--

(This works fine for text..)

        documentColumn = new TextColumn<DocumentDetailsDTO>() {
            @Override
            public String getValue(DocumentDetailsDTO object) {
                return object.getName();
            }
        };

      table.addColumn(documentColumn, "File");

Regards,
Dave.

-- 
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.

Reply via email to