SetPlaceholderText

function SetPlaceholderText(sText: any = null): void

Description

Sets the placeholder text to the current form. Can't be set to checkbox or radio button.*

Parameters

sTextanydefault: null

The text that will be set to the current form.

Returns

void

Try It

var oDocument = Api.GetDocument();
var oTextForm = Api.CreateTextForm({"key": "Personal information", "tip": "Enter your first name", "required": true, "comb": true, "maxCharacters": 10, "cellWidth": 3, "multiLine": false, "autoFit": false});
var oParagraph = oDocument.GetElement(0);
oParagraph.AddElement(oTextForm);
oTextForm.SetPlaceholderText("First name");

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).