Thanks a lot .
i am given below code , just see and tell me where i am done mistake.
CellTable<Contact> searchGridCellTable = new CellTable<Contact>();
---------------------------------------
.-------------------------------------
// Add a text column to show the dateLogged.
TextColumn<Contact> dateLogged = new TextColumn<Contact>() {
@Override
public String getValue(Contact object) {
return object.getDateLogged();
}
};
searchGridCellTable.addColumn(dateLogged, SafeHtmlUtils.fromSafeConstant("<span title='tooltip text goes here'>DateLogged</span>"));
------------------------------------------
------------------------------------------------
like this. above code showing Tooltip at Header only,
but i need only specific record. my cellTable having number of Records.
can you please tell how can i use, i need to show some values in Tooltip ,(only specific record)
please help me out,
if it passible give me sample code for me .
Thanks & Regards
Laxman
On Thu, May 31, 2012 at 4:57 PM, Rajeshwar Mishra <contacttorajeshwar@gmail.com> wrote:
Use Column<?, SafeHtml>Thanks,Rajeshwar--On Thu, May 31, 2012 at 12:58 PM, laxman lingampally <lingampall.laxman@gmail.com> wrote:
Hi all,i need a GWT celltable record i.e specific record values in Tooltip ,In my project i have one search Grid(Celltable) it is having five columns, when ever click on serach button it shows number of recods that is fine,but , i need to show some infermation ( like status name , id value like that......) in Tooltip like window.Any idea or any solution ?please help me out.Thanks for helping.Regardslaxman--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
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 google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
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 google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
No comments:
Post a Comment