Skip to content

Commit

Permalink
feat: Allow to copy a configuration from Process to widget.
Browse files Browse the repository at this point in the history
ux: Changed the default region tool from "Create" to "Select".
ux: Need to hold "Ctrl"-Key to create 1*1 region.
fix: Changing loading location dialog freeze removed.
ux: Removed brackets from links and underlined instead.
ui: Rename "Config from" from "Workitem" to "Widget".
ui: Rename "Use Configuration" from "Configuration loaded externaly" to "Config from process attachment".
ui: Set default Background-Color to white.
ui: Set default Font-Color to black.
  • Loading branch information
dave007700 committed Jan 16, 2020
1 parent f703003 commit 1c318e9
Show file tree
Hide file tree
Showing 13 changed files with 51 additions and 4,916 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
/com.siemens.bt.jazz.viewlet.printableworkitems*.zip
deployment-properties.ini
dist/
build/*.js
jbe-build-wrapper.xml
node_modules/
resouces/jazzUtilities/modules/build/*.js
15 changes: 10 additions & 5 deletions resources/jazzUtilities/modules/ConfiguratorUI.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
Config from: </label>
<select
id="com.siemens.bt.jazz.viewlet.printableworkitems.jazzUtilities.modules.WorkItemConfiguratorProvider.ui.data.config.location">
<option value="workitem">Workitem</option>
<option value="widget">Widget</option>
<option value="attachment">Process Attachment</option>
</select>

Expand Down Expand Up @@ -91,12 +91,12 @@
<tr>
<td attachmentValue="hidden">
Default Background color <span>
<input type="color" value="#ff0000"
<input type="color" value="#ffffff"
id="com.siemens.bt.jazz.viewlet.printableworkitems.jazzUtilities.modules.WorkItemConfiguratorProvider.ui.default.background.color">
</span>

Default Font color <span>
<input type="color" value="#ffffff"
<input type="color" value="#000000"
id="com.siemens.bt.jazz.viewlet.printableworkitems.jazzUtilities.modules.WorkItemConfiguratorProvider.ui.default.font.color">
</span>

Expand All @@ -107,11 +107,16 @@
</td>

<td attachmentValue="!hidden">

Current Attachment:
<select name=""
id="com.siemens.bt.jazz.viewlet.printableworkitems.jazzUtilities.modules.WorkItemConfiguratorProvider.ui.attachment.path.current">
<option value="Test">Test</option>
</select>

<input type="button" value=" Copy to Widget configuration "
id="com.siemens.bt.jazz.viewlet.printableworkitems.jazzUtilities.modules.WorkItemConfiguratorProvider.ui.processAttachment.copy.widget">

</td>

<td class="rightPosition">
Expand Down Expand Up @@ -164,7 +169,7 @@
<label
for="com.siemens.bt.jazz.viewlet.printableworkitems.jazzUtilities.modules.WorkItemConfiguratorProvider.ui.radio.option.0">Region
Create</label>
<input type="radio" checked="checked" value="0"
<input type="radio" value="0"
name="com.siemens.bt.jazz.viewlet.printableworkitems.jazzUtilities.modules.WorkItemConfiguratorProvider.ui.radio"
id="com.siemens.bt.jazz.viewlet.printableworkitems.jazzUtilities.modules.WorkItemConfiguratorProvider.ui.radio.option.0">
</td>
Expand All @@ -174,7 +179,7 @@
<label
for="com.siemens.bt.jazz.viewlet.printableworkitems.jazzUtilities.modules.WorkItemConfiguratorProvider.ui.radio.option.1">Region
Select</label>
<input type="radio" value="1"
<input type="radio" value="1" checked="checked"
name="com.siemens.bt.jazz.viewlet.printableworkitems.jazzUtilities.modules.WorkItemConfiguratorProvider.ui.radio"
id="com.siemens.bt.jazz.viewlet.printableworkitems.jazzUtilities.modules.WorkItemConfiguratorProvider.ui.radio.option.1">
</td>
Expand Down
1 change: 1 addition & 0 deletions resources/jazzUtilities/modules/build/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.js
50 changes: 0 additions & 50 deletions resources/jazzUtilities/modules/build/PredefineQueryProvider.js

This file was deleted.

Loading

0 comments on commit 1c318e9

Please sign in to comment.