property value

(r/w) string value;

Typ

Zugriff

This property sets or returns the current value of the box, hence stored in the box's "value" attribute.
function PrepareEditor(usrName)
{
    var editBx = scene.getBoxById("nameEdit");
    if (editBx)
    {
        editBx.value = usrName;
        editBx.selectAll();
    }
}