CA Service Management

 View Only
Expand all | Collapse all

concat user information in empty text

  • 1.  concat user information in empty text

    Posted Feb 19, 2016 08:34 AM

    Hi Guys,

     

    is there a possibility to concat strings/variables within the empty text of CA Catalogs Form Designer?

     

    I'm trying to get the user.location.address combined with the user.location.city like this: concat$(_.user.location.address[0]),", ",$(_.user.location.city) or $(_.user.location.address[0])+", "+$(_.user.location.city)

    and this is not working... is there an other way to achieve that?



  • 2.  Re: concat user information in empty text
    Best Answer

    Posted Feb 21, 2016 04:40 PM

    No, Empty Text is just that (text). You cannot use variables there.

    You could use $(_.user.location.address[0] + ', ' + _.user.location.city) in Value. That would give the initial value that the user could override.



  • 3.  Re: concat user information in empty text

    Posted Feb 22, 2016 04:10 AM

    Thanks alot!