We can use filters to search for Jira issues and display them in a list. This improvement follows the release that allows you to search for issues using keywords or JQL, and flexibility to add, remove, and reorder fields. Start using filters to search for Jira issues: Edit a Jira description or comment. Type /jira and select Jira issues. With Basic selected, use… Continue reading Use filters to search and display Jira issues
Tag: filter
Creating custom filter for customer
let statusField = form.addField({ id: ‘custpage_cus_filter’, type: serverWidget.FieldType.MULTISELECT, label: ‘Customer’, … Continue reading Creating custom filter for customer
Using Javascript in Filter – Celigo
On the left pane, you can navigate to Scripts by way of “Resources -> Scripts”. Then on the Scripts page, you can create a new script, then choose insert function stub “filter”. When you have created and saved the filter, you can choose this filter script when you are defining filter using javascript option. Here… Continue reading Using Javascript in Filter – Celigo
A Guide to Refining Jira Software Boards with Quick Filters
Refining your board with quick filters in Jira Software is a useful way to focus on specific issues and streamline your workflow. Here’s a step-by-step guide on how to achieve this: Navigate to Your Board: Open your Jira Software instance. Go to the desired project board. Access Board Settings: Click on the “Board” dropdown located… Continue reading A Guide to Refining Jira Software Boards with Quick Filters
Brand filter option on the PLP page
In website setup added the facet field. Brand field added there as shown below image. In configuration added the brand facet. In facets subtab added the brand field ID , name, priority, behvior etc. In plp brand filter came
Array Merge/ Combine in JS
Merge without removing duplicate elements -> Using concat() Method: The concat() method accepts arrays as arguments and returns the merged array. // with elements of nums1 and returns the // combined array – combinedSum arraylet combinedNums = nums1.concat(nums2, nums3);// More readable formlet combinedNums = [].concat(nums1, nums2, nums3); -> Using spread operator: Spread operator spreads the value of the array into… Continue reading Array Merge/ Combine in JS