Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Not to show link for all records for ListGridField of type link.

    I am using a list grid and want to show text as link for one column. I know we can get this by
    Code:
    field.setType(ListGridFieldType.LINK);
    But I don't want to show the text as link for all the records in this gird. Is there any way on the record object to set for this field to do this?

    Thanks, Amit

    #2
    You can always embed HTML, just have a standard column and use <a href="url">myLink</a> for those you want as a link and plain text otherwise.

    Comment

    Working...
    X