kim_purcell
Kilo Explorer

If you are working in a split layout and have a choice list value that uses more than one word in an URL argument (for example, category is System Software as opposed to Software) you can oddly end up with a %20 between words in Chrome and Firefox. Here's what you'll see:

Screen Shot 2015-01-28 at 12.25.53 PM.JPG

To resolve this issue, you can use one word, or better yet, create an onLoad client script on the table using the script value below:

  1. Right-click on the table header, and select Personalize.
  2. Select Client Scripts.
  3. Create New.
  4. Select OnLoad for Type.
  5. In the Script field, enter the script:

if (g_form.getValue('FIELD_NAME') == 'WORD1%20WORD2') {

g_form.setValue('FIELD_NAME','WORD1 WORD2');

}

Just replace the FIELD_NAME, WORD1, and WORD2 values with the appropriate field name and multi-word values, and you'll be off and running at 100%.

Screen Shot 2015-01-28 at 1.45.43 PM.JPG

Have other quirks with layout or spacing? Here are some other articles to help you out: