mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-30 00:32:19 +08:00
parent
ff096aba53
commit
489e40d226
|
@ -11,7 +11,7 @@
|
||||||
>
|
>
|
||||||
<IconTabHeader
|
<IconTabHeader
|
||||||
selectedKey="PLAIN"
|
selectedKey="PLAIN"
|
||||||
select="onItemSelect"
|
select=".onItemSelect"
|
||||||
>
|
>
|
||||||
<items>
|
<items>
|
||||||
<IconTabFilter
|
<IconTabFilter
|
||||||
|
@ -83,7 +83,7 @@
|
||||||
</items>
|
</items>
|
||||||
</IconTabHeader>
|
</IconTabHeader>
|
||||||
<VBox>
|
<VBox>
|
||||||
<ToggleButton text="Source XML after Templating" visible="{/isTemplating}" pressed="{/templatingSource}" press="onTemplatingPress" />
|
<ToggleButton text="Source XML after Templating" visible="{/isTemplating}" pressed="{/templatingSource}" press=".onTemplatingPress" />
|
||||||
<ce:CodeEditor
|
<ce:CodeEditor
|
||||||
type="{/type}"
|
type="{/type}"
|
||||||
value="{/value}"
|
value="{/value}"
|
||||||
|
@ -97,7 +97,7 @@
|
||||||
<endButton>
|
<endButton>
|
||||||
<Button
|
<Button
|
||||||
text="Close"
|
text="Close"
|
||||||
press="onClose"
|
press=".onClose"
|
||||||
/>
|
/>
|
||||||
</endButton>
|
</endButton>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
|
|
|
@ -851,8 +851,9 @@ sap.ui.define("z2ui5/SmartMultiInputExt", ["sap/ui/core/Control", "sap/m/Token",
|
||||||
sap.ui.define("z2ui5/CameraPicture", [
|
sap.ui.define("z2ui5/CameraPicture", [
|
||||||
"sap/ui/core/Control",
|
"sap/ui/core/Control",
|
||||||
"sap/m/Dialog",
|
"sap/m/Dialog",
|
||||||
"sap/m/Button"
|
"sap/m/Button",
|
||||||
], function (Control, Dialog, Button) {
|
"sap/ui/core/HTML"
|
||||||
|
], function (Control, Dialog, Button, HTML) {
|
||||||
"use strict";
|
"use strict";
|
||||||
return Control.extend("z2ui5.CameraPicture", {
|
return Control.extend("z2ui5.CameraPicture", {
|
||||||
metadata: {
|
metadata: {
|
||||||
|
@ -900,7 +901,7 @@ sap.ui.define("z2ui5/CameraPicture", [
|
||||||
verticalScrolling: false,
|
verticalScrolling: false,
|
||||||
stretch: true,
|
stretch: true,
|
||||||
content: [
|
content: [
|
||||||
new sap.ui.core.HTML({
|
new HTML({
|
||||||
id: this.getId() + 'PictureContainer',
|
id: this.getId() + 'PictureContainer',
|
||||||
content: '<video width="600px" height="400px" autoplay="true" id="zvideo">'
|
content: '<video width="600px" height="400px" autoplay="true" id="zvideo">'
|
||||||
}),
|
}),
|
||||||
|
@ -911,7 +912,7 @@ sap.ui.define("z2ui5/CameraPicture", [
|
||||||
this._oScanDialog.close();
|
this._oScanDialog.close();
|
||||||
}.bind(this)
|
}.bind(this)
|
||||||
}),
|
}),
|
||||||
new sap.ui.core.HTML({
|
new HTML({
|
||||||
content: '<canvas hidden id="zcanvas" style="overflow:auto"></canvas>'
|
content: '<canvas hidden id="zcanvas" style="overflow:auto"></canvas>'
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue
Block a user