This portal is to open public enhancement requests against the products and services belonging to IBM Sustainability Software. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).
We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:
Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,
Post an idea.
Get feedback from the IBM team and other customers to refine your idea.
Follow the idea through the IBM Ideas process.
Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.
IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.
ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.
See this idea on ideas.ibm.com
We use the Create New Work Item Copy feature by clicking the button in the Web UI toolbar. When we do that we wish to copy certain fields to new work items, but rarely do we wish to copy all fields. (Otherwise we would need work item clone.) The problem is that until you reset the attributes to copy once, all attributes are copied over. This is causing us problems, as users sometimes forget to limit the fields copied over. And we have enumerations that should be set to Unspecified initially. (If you create a default initial value for an enumeration it will still get the value copied over from the previous work item in a work item copy.) Could you change the default to not copy over any fields, so that users are forced to choose the relevant fields. It looks like this might be hard-coded.
com.ibm.team.workitem.web.ui.internal.view.editor.actions.createcopy.SelectCopyAttributesDialog
postCreate: function() {
this.inherited("postCreate", arguments, []); //$NON-NLS-1$
var allValues= this.getValues();
this._attributsePage= new SelectCopyAttributePage();
var $subject2= allValues;
var $length2= $subject2.length;
for (var $count2= 0; $count2 < $length2; $count2++){
var slotElements= $subject2[$count2];
this._attributsePage.addValuesSection(this._localStorageValues != null ? this._matchLocalStorage(slotElements) : slotElements, dojo.clone(slotElements));
}
dojo.place(this._attributsePage.domNode, this._pageContent, 'only'); //$NON-NLS-1$
this.connect(this._createButton, 'click', dojo.hitch(this, function(event) { //$NON-NLS-1$
dojo.stopEvent(event);
this._onFinish(event);
}));
},
com.ibm.team.workitem.web.ui.internal.view.editor.actions.createcopy.SelectCopyAttributePage.java
public void addValuesSection(RadioViewElement[] checkedValues, RadioViewElement[] allValues) {
if (allValues.length == 0) {
return;
}
if (checkedValues.length > allValues.length) {
Console.error("Cannot render a list with more checked values than actual values."); //$NON-NLS-1$
return;
}
CheckboxGroup checkbox= CheckboxGroup.create();
Bindable values= new Bindable(checkedValues);
checkbox.value(values)
.valueSet(new Bindable(allValues))
.renderer(Defaults. renderer())
.bind();
dojo.addClass(checkbox.getView().domNode, "attributesSlot"); //$NON-NLS-1$
_attributesListNode.appendChild(checkbox.getView().domNode);
JSArrays.push(_attributesLists, checkbox);
JSArrays.push(_values, values);
}
Idea priority | Medium |
By clicking the "Post Comment" or "Submit Idea" button, you are agreeing to the IBM Ideas Portal Terms of Use.
Do not place IBM confidential, company confidential, or personal information into any field.