mirror of
https://github.com/ONLYOFFICE/sdkjs-forms.git
synced 2026-03-31 10:23:35 +08:00
Merge branch hotfix/v8.3.2 into develop
This commit is contained in:
@ -568,7 +568,7 @@
|
|||||||
|
|
||||||
this.OForm.onChangeRoles();
|
this.OForm.onChangeRoles();
|
||||||
};
|
};
|
||||||
CDocument.prototype.onChangeFieldGroup = function(fieldGroup)
|
CDocument.prototype.onChangeFieldGroupFilled = function(fieldGroup)
|
||||||
{
|
{
|
||||||
if (!this.OForm)
|
if (!this.OForm)
|
||||||
return;
|
return;
|
||||||
|
|||||||
@ -69,7 +69,7 @@
|
|||||||
|
|
||||||
AscCommon.History.Add(new AscDFH.CChangesOFormFieldGroupFilled(this, this.Filled, isFilled));
|
AscCommon.History.Add(new AscDFH.CChangesOFormFieldGroupFilled(this, this.Filled, isFilled));
|
||||||
this.Filled = isFilled;
|
this.Filled = isFilled;
|
||||||
this.onChange();
|
this.onChangeFilled();
|
||||||
};
|
};
|
||||||
CFieldGroup.prototype.setWeight = function(value)
|
CFieldGroup.prototype.setWeight = function(value)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -124,7 +124,7 @@
|
|||||||
CUserMaster.prototype.initDefaultUser = function()
|
CUserMaster.prototype.initDefaultUser = function()
|
||||||
{
|
{
|
||||||
// TODO: Возможно стоит придумать уникальный id общий для дефолтовой роли
|
// TODO: Возможно стоит придумать уникальный id общий для дефолтовой роли
|
||||||
this.setRole(AscCommon.translateManager.getValue("Anyone"));
|
this.setRole("Anyone");
|
||||||
this.setColor(255, 239, 191);
|
this.setColor(255, 239, 191);
|
||||||
};
|
};
|
||||||
CUserMaster.prototype.compare = function(user)
|
CUserMaster.prototype.compare = function(user)
|
||||||
|
|||||||
@ -137,7 +137,7 @@
|
|||||||
function(value)
|
function(value)
|
||||||
{
|
{
|
||||||
this.Class.Filled = value;
|
this.Class.Filled = value;
|
||||||
this.Class.onChange();
|
this.Class.onChangeFilled();
|
||||||
},
|
},
|
||||||
false
|
false
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user