I'm using the RallyConnectorforJira-Ruby-2.7.4 to sync issues between Rally and JIRA, but the description field in Rally is using HTML/Rich Text and inserting tags into the description field in JIRA when it syncs. E.g.
<div>
</div>
<div>Updating the description to see if sync is working the other way.</div>
<div>
</div>
<div>Another update, this time changing state to Open in Rally, which should move the issue to In Progress in JIRA. Also, will the JIRALink field now get picked up?</div>
<div>
</div>
<div>Will it let me move this to re-opened?</div>
<div></div>
<div>Changed the workflow in JIRA to see if this breaks the integration - will it update, but error, or not update at all?</div>
<div>
</div>
<div>Fixing the workflow - this should move to In Progress</div>
JIRA is using the Default Text Renderer and according to the instructions at http://www.rallydev.com/help/jira-installation-user-guide "you can elect to have the Description field in either system consist of just plain text, without any markup.", but I can't find any instructions or settings in Rally that let me define the Description field as plain text in Rally.
If I log in to Rally and select Setup -> Workspaces -> Projects & Workspaces -> -> Work Products and Fields -> Description -> Edit I see the following:
Name: description
Display Name: Description
Type: Text
Hidden: unchecked
Occurrences: 20
Required: unchecked
but no option to change the Type or specify plain text only.
Is it possible to set the Description field in Rally to be plain text only so that there is no HTML markup inserted into the field at source? Or is there something in jira_config.xml that I should be setting to tell it to remove HTML markup from the field coming across from Rally?
Thanks,
Andrew.
Related
Is there any way where i can define a mandatory * ( asterix ) for a field in jenkins some thing like red colored star. I am using a text after the field saying it mandatory. can i use some indication like star with color to indicate mandatory.
Navigate to Manage Jenkins -> Configure Global Security, and change the Markup Formatter selection from Plain Text to Safe HTML then click Apply.
Go back to configuring the job, and in the Description box, you can CSS in a span tag. For example: <span style="color: red;">This is a mandatory field.</span>
I have created two custom fields on a JIRA story that I need rich text entry. The problem is that one is rendering correctly and the other isn't as can be see by the following images.
Both as can be seen are setup 'Text Field Multi-line' - exhausted all other lines of enquiry
The field has probably not the correct field renderer configured.
Settings --> Issues --> Field Configurations --> Your used field configuration
Now look for your field and click the "Renderers" link to select the "Wiki Style Renderer".
You need to create a Text Field, and convert it to WIKI style text field. This way you will be able to post URL.
Here is 5 minute video which I have created on how to do this.
https://youtu.be/QCNHPy88iKA
I hope it helps.
I have enabled the new work item form in TFS 2017 after upgrading from TFS 2015, but have found that there are some fields that aren't showing in the new work item form, even though I can see the field declared in the WebLayout section when editing the work item type XML. Is there a condition which hides fields in WebLayout?
The field I am trying to get appear is the Microsoft.VSTS.Scheduling.RemainingWork field. I have the following inside the WebLayout:
<WebLayout>
<!- Snipped some other groups which show -->
<Group Label="Timescales">
<!-- Snipped Some other fields which show -->
<Control FieldName="Microsoft.VSTS.Scheduling.RemainingWork" Type="FieldControl" Label="Remaining Work" />
</Group>
</WebLayout>
I also had the same issue with a custom String field, but I no longer needed the field so I removed it anyway.
The field is not shown and declared in Web Layout, you need to double check if the field is hidden or have an invalid value of the field.
In your case, you can edit the work item type to add the REQUIRED role from Remaining Work field when change particular States (such as from Done to In Progress). Please follow the below steps:
Open your work item type using TFS Power Tools in (Process Editor).
Under Workflow tab, find the Transition which from Done to
In Progress, then double click on this Transition.
In Workflow Transition dialog, under Fields tab, add the Remaining
Work field, then click OK button and save your work item type.
As a workaround, when you change the statuses, even though the transition was clearing the Reamining Work filed, still need to enter the value for the field.
So, what I found was that when I changed between 2 particular statuses, the transition was clearing the Remaining Work field value. I'm guessing that the WebLayout doesn't display invalid fields, as a blank string is not a valid Double field, which Remaining Work is defined as
Is there a way to change or simply remove the placeholder of the Kendo UI - Angular 2 dateinput control?
Right now, when empty, it reads "day/month/year" and I need to, at least, remove the localized literals.
Thank you very much,
Dimitris
UPDATE: With the latest changes in the DateInput (as of v1.4.0) two additional properties were added:
placeholder - display text hint (related Github issue)
formatPlaceholder - control description of the format sections (Github issue)
With those available, we can easily hide or modify the displayed format description:
<kendo-datepicker [placeholder]="Enter date..." [formatPlaceholder]="short" />
Here is a plunker demo that demonstrates those new properties:
http://plnkr.co/edit/XYmwDjkpp7Mb4txlmc2L?p=preview
Indeed, the DateInput component displays the localized format value once empty. That being said, its value is controlled by the component date format. Its behavior is similar to the Chrome's <input type="date" />.
I'm afraid that the placeholder cannot be set to a custom text.
I think that it will be best to share your request in the Kendo UserVoice portal:
http://kendoui-feedback.telerik.com/forums/555517-kendo-ui-for-angular-feedback
I am trying to add default empty text to an HTML field in TFS 2013. I am doing this by updating the "EmptyText" attribute for the field in the Layout options (using Process Editor).
However, regardless of what I enter here, the intended text is never displayed. It is always empty. I have the same issue with both HTML & Plain Text fields.
Is this a fundamental limitation of TFS? Or am I specifying this incorrectly?
I am not using a DEFAULT rule because I want the user to notice that the field is empty and be required to enter a value.
I can get it work correctly. Two changes made:
Edit the "Empty Text" attribute just as you mentioned above (in my case I create one custom HTML field called Custom.DetailHTML):
Add Required rule to this field to define that this field must be specified with a value:
<FieldDefinition name="DetailHtml" refname="Custom.DetailHtml" type="HTML">
<REQUIRED />
</FieldDefinition>
If you still can't get it work, please show your WIT file.