Widget builder: Set new variable

Hi all-

I have a widget that opens a modal window with an employee’s bio. My problem is it is using the last name as the id, which isn’t unique.

Read $rbsTmMemberFName's Bio
       

  
  
Is there a way to set a new variable, like $name, and make it a combination of first and last name?

Hi Lisa,

Yes.  You could use something like the following:

#set($FullName = "$!{rbsTmMemberFName} $!{$rbsTmMemberLName}")##
Full Name: $!{FullName}