Sorry for confusing you with the terms. I may not be explaining correctly.
I have created a new field called Request Title (refname:SAM.OI.Requesttitle) and my Work Item Type name is Request Details.
Note: Not using refname System.Title.
Please see below screen shot. for my custom WIT.. Entered Test Request Title is not displayed next to the New Request Details 3*:... if you see for default Task WIT entered Task Title is displayed next to New Task 2*: Task Title.
Help me on how to fix to show the Request title Next to Request Details.
Added a Rule to Title Field Definition to Copy the Request title value to Title. It is working as expected.
There is no way to show the Request title Next to Request Details. Only the default Title can be shown there.
You could use the default Title field and add label Request Title to it, in this way, you will get the behavior you want:
Related
I'm trying to use the JIRA connector to change the status of JIRA issues. After entering the necessary values (issueId, statusName and transitions) I am getting the following error when trying to generate a sample: TypeError: Cannot read property 'name' of undefined.
Edit Screenshot:
The Update Status action needs the whole transitions array. It searches this array for the status name you provide (which can be hardcoded, eg: "Closed"). To make it work, just replace [{"id": transitions[2].id}] with transitions :)
I have built a simple website and have the requirement to display all post from a blog for a year.
For example www.mysite.com/blogs/2015 should display all posts of 2015.
However, this year is not the real creation date of the post but it is given as input while creating the post (I have added new field to the editor).
I should also have a way to access a post with a unique URL like www.mysite.com/blogs/2015/2, which should display the second post of 2015.
The post number is unique for the year. So I cannot use the content id.
I was able to make this work with my own controller, but an issue remains:
When posts are listed it will attach the URL created by the AutoroutePart, which will be like www.mysite.com/blogs/first-post.
I attempted to change this URL while creating the post by updating the Path property of the AutoroutePart but had no luck.
Any suggestions or advise are appreciated.
You can define you own route for any content item which has the AutoroutePart.
Example in you situation you need to edit the content definition of the blog posts. So under the Content Definition menu you select Blog Post, then edit, then you click on the expando arrow next to the Autoroute label and you'll see the Patterns field where you can define your own pattern.
I want to display a message to the user when he is about to start a Jenkins build job.
I added the message to the build job description, but the user could also start the job from a view list (where the description is not visible).
Can I add a message to somewhere in the parameters page?
I could use the description field for a parameter, but that's more like a hack, a more prominent position for the message would be good.
Why is the description field a hack? That shows up in the most prominent position - just under the title.
I would just keep it simple and display your message there
I've created doc type with property e.g. (Name = "ItemId" Type = "Label") When i try to "Save and Publish" node with current doc type i set some value to this label. (note that i override SendAsync method)
currentContent.SetValue("ItemIdAlias","guidvalue");
It sets value correctly, but label still appears to be empty. So if i click on "Save and Publish" second time it sends an empty value still... I need somehow to refresh page because on second time i need "guidvalue" to update other items
If you're using Umbraco 6, you'll need to get your event handler to emit some JS to refresh the page. You can do this by calling the following code in your Event Handler:
BasePage.Current.ClientTools.ChangeContentFrameUrl(string.Concat("editContent.aspx?id=", docId));
Where docId is the id of the page you are editing. This will force a full reload of the page, and your label should then have a value!
If you're using Umbraco 7, you're out of luck, there's currently no way to do this from the server side. You might be able to listen to the angular save event and do something there maybe? But I'm not 100% if that's possible currently.
Joomla version 3 menu item has a field called "Note" which is primarily used to display notes in the administrator backend.
I have populated "note" field with something like "&City=4&County=0" Now I want to append this in front of the Link URL. Link URL is none editable field which is automatically populated based on article selected so I cannot edit or type in it manually.
Normal URL based upon selection of the article looks like something this:
index.php?option=com_content&view=article&id=10
Now I want to append the note field in front of this URL so the URL would look like:
index.php?option=com_content&view=article&id=10&City=4&County=0
Here is the screenshot:
(source: linkbank.co.uk)
You could make a new view, just copy components/com_content/views/article to cityarticle or something meaningful, then edit the default.xml you find in its subfolder ./tmpl, change the name so you can identify it and add the fields city and county to the
on line 16 roughly, those will appear when you create a new menu item (on the right) so you can set them, and will be passed on as get requests.
Choose the appropriate field type and read the docs here:
http://docs.joomla.org/Standard_form_field_and_parameter_types