0

How can I aligning two fields in a single row in scheduler config light-box sections, And not below one another.

Name [(FirstName)] [(Lastname)] [(Middlename)]
Dee Law
  • 78
  • 1
  • 6

1 Answers1

0

I am going out on limb here. Shouldn't you be able to use the following to combine them in a single string. Either beforehand or while returning the value.

return "Name: " + Firstname + ' '  + Lastname + ' ' + Middlename;
Ray Meyer
  • 143
  • 12