Hi  Rajeshwar ,

Thanks a lot .

thanks for your answer.

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 <
[email protected]> wrote:

> Use  Column<?, SafeHtml>
>
> Thanks,
> Rajeshwar
>
> On Thu, May 31, 2012 at 12:58 PM, laxman lingampally <
> [email protected]> 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.
>>
>> Regards
>> laxman
>>
>>
>>
>>
>>
>>
>>  --
>> 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.
>>
>
>  --
> 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.
>

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