[DE] Add autofit, multiline, fixed size settings for forms
This commit is contained in:
parent
b8ec15dacb
commit
04dbc2b42f
|
@ -34,7 +34,7 @@
|
||||||
<div id="form-txt-help"></div>
|
<div id="form-txt-help"></div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="form-textfield">
|
<tr class="form-not-image">
|
||||||
<td class="padding-small">
|
<td class="padding-small">
|
||||||
<div id="form-chb-fixed"></div>
|
<div id="form-chb-fixed"></div>
|
||||||
</td>
|
</td>
|
||||||
|
@ -62,6 +62,16 @@
|
||||||
<div id="form-color-btn" style="display: inline-block; float: right;"></div>
|
<div id="form-color-btn" style="display: inline-block; float: right;"></div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr class="form-textfield">
|
||||||
|
<td class="padding-small">
|
||||||
|
<div id="form-chb-autofit"></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="form-textfield">
|
||||||
|
<td class="padding-small">
|
||||||
|
<div id="form-chb-multiline"></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr class="form-image">
|
<tr class="form-image">
|
||||||
<td class="padding-large">
|
<td class="padding-large">
|
||||||
<div id="form-button-replace" style="width:100%;"></div>
|
<div id="form-button-replace" style="width:100%;"></div>
|
||||||
|
|
|
@ -98,6 +98,7 @@ define([
|
||||||
this.ListOnlySettings = el.find('.form-list');
|
this.ListOnlySettings = el.find('.form-list');
|
||||||
this.ImageOnlySettings = el.find('.form-image');
|
this.ImageOnlySettings = el.find('.form-image');
|
||||||
this.ConnectedSettings = el.find('.form-connected');
|
this.ConnectedSettings = el.find('.form-connected');
|
||||||
|
this.NotImageSettings = el.find('.form-not-image');
|
||||||
},
|
},
|
||||||
|
|
||||||
createDelayedElements: function() {
|
createDelayedElements: function() {
|
||||||
|
@ -189,6 +190,20 @@ define([
|
||||||
this.spnWidth.on('change', this.onWidthChange.bind(this));
|
this.spnWidth.on('change', this.onWidthChange.bind(this));
|
||||||
this.spnWidth.on('inputleave', function(){ me.fireEvent('editcomplete', me);});
|
this.spnWidth.on('inputleave', function(){ me.fireEvent('editcomplete', me);});
|
||||||
|
|
||||||
|
this.chAutofit = new Common.UI.CheckBox({
|
||||||
|
el: $markup.findById('#form-chb-autofit'),
|
||||||
|
labelText: this.textAutofit
|
||||||
|
});
|
||||||
|
this.chAutofit.on('change', this.onChAutofit.bind(this));
|
||||||
|
this.lockedControls.push(this.chAutofit);
|
||||||
|
|
||||||
|
this.chMulti = new Common.UI.CheckBox({
|
||||||
|
el: $markup.findById('#form-chb-multiline'),
|
||||||
|
labelText: this.textMulti
|
||||||
|
});
|
||||||
|
this.chMulti.on('change', this.onChMulti.bind(this));
|
||||||
|
this.lockedControls.push(this.chMulti);
|
||||||
|
|
||||||
this.chRequired = new Common.UI.CheckBox({
|
this.chRequired = new Common.UI.CheckBox({
|
||||||
el: $markup.findById('#form-chb-required'),
|
el: $markup.findById('#form-chb-required'),
|
||||||
labelText: this.textRequired
|
labelText: this.textRequired
|
||||||
|
@ -459,18 +474,37 @@ define([
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onChFixed: function(field, newValue, oldValue, eOpts){
|
onChAutofit: function(field, newValue, oldValue, eOpts){
|
||||||
var checked = (field.getValue()=='checked');
|
var checked = (field.getValue()=='checked');
|
||||||
if (this.api && !this._noApply) {
|
if (this.api && !this._noApply) {
|
||||||
var props = this._originalProps || new AscCommon.CContentControlPr();
|
var props = this._originalProps || new AscCommon.CContentControlPr();
|
||||||
var formTextPr = this._originalTextFormProps || new AscCommon.CSdtTextFormPr();
|
var formTextPr = this._originalTextFormProps || new AscCommon.CSdtTextFormPr();
|
||||||
formTextPr.put_FixedSize(checked);
|
formTextPr.put_AutoFit(checked);
|
||||||
props.put_TextFormPr(formTextPr);
|
props.put_TextFormPr(formTextPr);
|
||||||
this.api.asc_SetContentControlProperties(props, this.internalId);
|
this.api.asc_SetContentControlProperties(props, this.internalId);
|
||||||
this.fireEvent('editcomplete', this);
|
this.fireEvent('editcomplete', this);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onChMulti: function(field, newValue, oldValue, eOpts){
|
||||||
|
var checked = (field.getValue()=='checked');
|
||||||
|
if (this.api && !this._noApply) {
|
||||||
|
var props = this._originalProps || new AscCommon.CContentControlPr();
|
||||||
|
var formTextPr = this._originalTextFormProps || new AscCommon.CSdtTextFormPr();
|
||||||
|
formTextPr.put_MultiLine(checked);
|
||||||
|
props.put_TextFormPr(formTextPr);
|
||||||
|
this.api.asc_SetContentControlProperties(props, this.internalId);
|
||||||
|
this.fireEvent('editcomplete', this);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
onChFixed: function(field, newValue, oldValue, eOpts){
|
||||||
|
if (this.api && !this._noApply) {
|
||||||
|
this.api.asc_SetFixedForm(this.internalId, field.getValue()=='checked');
|
||||||
|
this.fireEvent('editcomplete', this);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
onGroupKeyChanged: function(combo, record) {
|
onGroupKeyChanged: function(combo, record) {
|
||||||
if (this.api && !this._noApply) {
|
if (this.api && !this._noApply) {
|
||||||
var props = this._originalProps || new AscCommon.CContentControlPr();
|
var props = this._originalProps || new AscCommon.CContentControlPr();
|
||||||
|
@ -746,6 +780,14 @@ define([
|
||||||
|
|
||||||
this.labelFormName.text(ischeckbox ? this.textCheckbox : this.textRadiobox);
|
this.labelFormName.text(ischeckbox ? this.textCheckbox : this.textRadiobox);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (type !== Asc.c_oAscContentControlSpecificType.Picture) {
|
||||||
|
val = formPr.get_Fixed();
|
||||||
|
if ( this._state.Fixed!==val ) {
|
||||||
|
this.chFixed.setValue(!!val, true);
|
||||||
|
this._state.Fixed=val;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var formTextPr = props.get_TextFormPr();
|
var formTextPr = props.get_TextFormPr();
|
||||||
|
@ -758,12 +800,18 @@ define([
|
||||||
this.chComb.setValue(!!val, true);
|
this.chComb.setValue(!!val, true);
|
||||||
this._state.Comb=val;
|
this._state.Comb=val;
|
||||||
}
|
}
|
||||||
//
|
|
||||||
// val = formTextPr.get_FixedSize();
|
val = formTextPr.get_MultiLine();
|
||||||
// if ( this._state.Fixed!==val ) {
|
if ( this._state.Multi!==val ) {
|
||||||
// this.chFixed.setValue(!!val, true);
|
this.chMulti.setValue(!!val, true);
|
||||||
// this._state.Fixed=val;
|
this._state.Multi=val;
|
||||||
// }
|
}
|
||||||
|
|
||||||
|
val = formTextPr.get_AutoFit();
|
||||||
|
if ( this._state.AutoFit!==val ) {
|
||||||
|
this.chAutofit.setValue(!!val, true);
|
||||||
|
this._state.AutoFit=val;
|
||||||
|
}
|
||||||
|
|
||||||
this.btnColor.setDisabled(!val);
|
this.btnColor.setDisabled(!val);
|
||||||
|
|
||||||
|
@ -917,6 +965,7 @@ define([
|
||||||
var value = (checkboxOnly || radioboxOnly);
|
var value = (checkboxOnly || radioboxOnly);
|
||||||
this.PlaceholderSettings.toggleClass('hidden', value);
|
this.PlaceholderSettings.toggleClass('hidden', value);
|
||||||
this.CheckOnlySettings.toggleClass('hidden', !value);
|
this.CheckOnlySettings.toggleClass('hidden', !value);
|
||||||
|
this.NotImageSettings.toggleClass('hidden', imageOnly);
|
||||||
},
|
},
|
||||||
|
|
||||||
onSelectItem: function(listView, itemView, record) {
|
onSelectItem: function(listView, itemView, record) {
|
||||||
|
@ -968,7 +1017,9 @@ define([
|
||||||
textDisconnect: 'Disconnect',
|
textDisconnect: 'Disconnect',
|
||||||
textNoBorder: 'No border',
|
textNoBorder: 'No border',
|
||||||
textFixed: 'Fixed size field',
|
textFixed: 'Fixed size field',
|
||||||
textRequired: 'Required'
|
textRequired: 'Required',
|
||||||
|
textAutofit: 'AutoFit',
|
||||||
|
textMulti: 'Multiline field'
|
||||||
|
|
||||||
}, DE.Views.FormSettings || {}));
|
}, DE.Views.FormSettings || {}));
|
||||||
});
|
});
|
|
@ -1768,6 +1768,8 @@
|
||||||
"DE.Views.FormSettings.textUnlock": "Unlock",
|
"DE.Views.FormSettings.textUnlock": "Unlock",
|
||||||
"DE.Views.FormSettings.textValue": "Value Options",
|
"DE.Views.FormSettings.textValue": "Value Options",
|
||||||
"DE.Views.FormSettings.textWidth": "Cell width",
|
"DE.Views.FormSettings.textWidth": "Cell width",
|
||||||
|
"DE.Views.FormSettings.textAutofit": "AutoFit",
|
||||||
|
"DE.Views.FormSettings.textMulti": "Multiline field",
|
||||||
"DE.Views.FormsTab.capBtnCheckBox": "Checkbox",
|
"DE.Views.FormsTab.capBtnCheckBox": "Checkbox",
|
||||||
"DE.Views.FormsTab.capBtnComboBox": "Combo Box",
|
"DE.Views.FormsTab.capBtnComboBox": "Combo Box",
|
||||||
"DE.Views.FormsTab.capBtnDropDown": "Dropdown",
|
"DE.Views.FormsTab.capBtnDropDown": "Dropdown",
|
||||||
|
|
Loading…
Reference in a new issue