JIRA screen for specific status - workflow

What I am trying to achieve is, that I can use a specific screen for some status. For example just tickets in the status "New" should contain the "Original Estimate".
What I thought about was building a specific screen for these status and match status and screen. But as I see things, I just can connect screens and transitions or connect a screen to an action like creating an issue.
But both does not fit my needs, cause i want to use different screens in the same workflow for the same action and I do not want to show the screen when changing the transition. I just want to display different screens when editing issues.
Is there a way to do that?

for this kind of scenario I can suggest two ways to do this.
use javascript for a Original Estimate field..for that follow this document using this you can check the status field and show or hide the field accordingly.
2.Use Behaviours plugin for validate the field where the status is match to your requirement.

Related

How to create a scrollable list for Watch OS that has a fixed size?

I'm a beginner to Watch OS programming (I'm using Storyboard) and would like some help with scrollable lists.
I need to create a scrollable list of numbers (e.g. from 1 to 20) that changes when user uses scrolls with the crown. I know how to create it using a Table, but the problem is, I don't know how to contain it to a single area.
I have added a screenshot of the "Sleep Cycle" app that has a similar feature. I would like to do the exact same thing, but instead of time, I need to show a list of numbers.
Edit: Another example would be "Zero" where the hours field is scrollable:
Please check out this library and try to customize it as per your use case:
https://github.com/calda/WatchKitTimePicker

How can show a ghaphic indicator over Slingr low code platform?

I would like to add traffic light icon based on entity field value in given collection view. Are there some way to do it?
Not sure if this can apply to your case, but you can highlight a record in a collection view using the Record highlight feature in collection views (works on grid and cards views).
Basically, you can define conditions to decide if the record can be highlighted and which color will be used for that. You can find more information here:
https://slingr-stack.github.io/platform/app_development_ui_grid_views.html#record-highlight

Opening a popup on layer option click in leafletjs

I will be trying to show a set of options using the layerGroup functionality to filter out the markers. I need to show a popup when an option is selected from a layer which will prompt the user to enter a number based on which i will be showing the markers. Is there a possible way?
In the above sketch, there' s a sample filter at the top right which i intend to show using the layers but the thing is on selecting the 'Location' option i have to show a popup that will prompt the user to enter a location number and on that basis the markers should be placed on the map.
I guess there would be multiple ways of achieving this, depending on what behaviour exactly you want to get.
E.g. you could use a "dummy" layer (with name "Location" probably?), that you can add in the Layers Control (I guess that is the "sample filter at the top"?). Then listen for this dummy layer for being added to the map, and launch your modal ("popup") at this time. Then when the user enters the necessary information, you can programmatically add the corresponding markers to the map.
If you need further help, please add more details on what behaviour you try to get, or start your implementation and post new questions, so that you already have a start of what you are trying to achieve and people can elaborate on it.

Alternatives for picker in iphone/iOS app?

I am showing a form the user fills in my iPhone app. One of the fields is a set of 2 or 3 dates from which the user has to pick one. Putting a picker, or bringing up a table view just for this takes up too much space, leaving no room for the other fields. Is there any simpler way to do this?
To do this you can put two or three arrowed label with text like "Select Date" upon click of it you can show one view that allow user to select the date; once selected you can back to the original view. You can do this for all three (or two) dates and get those date on form view.
I am giving you idea of how you can design apps; if you want code i can assist that too but from your question it seems you want design ideas.
You can go for your custom drop down/combo box, but their is no inbuilt functionality present for this.
Also following is mentioned in apple HIG guideline, you need to consider those as well-
(http://developer.apple.com/library/IOs/#documentation/UserExperience/Conceptual/MobileHIG/UIElementGuidelines/UIElementGuidelines.html)
Guidelines
Use a picker to make it easy for people to choose from a set of values. It’s often best to use a picker when people are familiar with the entire set of values. This is because many, if not most, of the values are hidden when the wheel is stationary. If you need to provide a large set of choices that aren’t well known to your users, a picker might not be the appropriate control.
Consider using a table view, instead of a picker, if you need to display a very large number of values. This is because the greater height of a table view makes scrolling faster.
Use the translucent selection bar to display contextual information, such as a unit of measurement. Do not display such labels above the picker or on the wheel itself.
On iPad, present a picker only within a popover. A picker is not suitable for the main screen.

Appcelerator: Pagination for Views in IPhone

I want to show remotely fetched records and want to display in same format as Apple shows Icons on Home Screen. I also want pagination ( the dots on bottom) for indication of currently selected page. How could it be achieved?
I believe you're looking for the ScrollableView component. Use the HTTPClient to retrieve your data from the server, create views/imageviews/etc from the data as appropriate, then add the views as children to the ScrollableView.