Form BorderType and the solution model

Hello,

How am I able to set an SM-generated form’s bordertype to empty using the SM? I would think a constant would exist for EMPTY, but I don’t see one. I’m sure I’m just missing it. thx

I don’t think there’s a constant for that, you can just do:

_jsForm.borderType = "EmptyBorder,0,0,0,0";

Thank you.

.borderType = SM_DEFAULTS.NONE;

Seems to work

Hi

Just as an info, button.borderType = SM_DEFAULTS.NONE doesn’t work for me, but button.borderType = ‘EmptyBorder, 0, 0, 0, 0’ works for me.

Best regards, Robert

jbader:
.borderType = SM_DEFAULTS.NONE;

Seems to work