Announcement

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

    spaces in static text

    Is there any way to force the static text to NOT ignore the spaces without needing to add "nbsp" tags?

    Code:
    isc.DynamicForm.create({
        width: 780,
        fields : [
            {name: "severityLevel",
             title: "Severity Level",
             type: "staticText",
             defaultValue: "Unit Price              Discount                Your $                    Description                                                               "
            }
        ]
    });

    #2
    outputAsHTML being set to true should resolve this.

    Comment

    Working...
    X