Questions tagged [clarity]

Clarity can refer to three products: CA Clarity™ PPM is a Project and Portfolio Management tool. VMware's Clarity is an extensible product-based framework for building clean, crisp, and modern web apps. Blockstack's Clarity is a Smart Contract language used to run contracts on the Stacks 2.0 blockchain.

CA Clarity™ PPM helps to Connect Strategy to Execution

  • Strategic agility– Portfolio Management gives you dynamic 'what if' and change impact analysis.
  • Improved forecasting– Financial management and budgeting keeps forecasts in line with actuals.
  • Staff utilization– Resource management ensures you have the skills and people to meet increased demand.
  • Better data– Mobile time-tracking improves the quality and accuracy of time-entry and approvals.
  • Greater insights– Role-based views and reporting makes it easier to communicate with stakeholder teams.
  • Highly configurable– Works the way you work, with flexible methodologies and Certified Stage-Gate™ processes, plus PMBOK®, PRINCE2® and support for Agile Scrum and Kanban.
  • A world class user experience— The most robust, comprehensive PPM tool available. Our customers find it intuitive, easy to use and easy to like.

source ( http://www.ca.com/us/products/detail/ca-clarity-ppm.aspx )

VMware Clarity Design System

Clarity is VMware’s extensible product-based framework for building clean, crisp, and modern apps. Clarity provides designers and developers with a library of patterns, components, and robust tools, making it easy to rapidly prototype and build beautiful and functional apps in HTML, CSS, and Angular.

source (https://vmware.github.io/clarity/)

Stacks Clarity Language

Clarity is a programming language for writing smart contracts on the Stacks 2.0 blockchain. It supports programmatic control over digital assets.

Clarity differs from most other smart contract languages in two essential ways:

  • The language is interpreted and broadcasted on the blockchain as is (not compiled)
  • The language is decidable (not Turing complete)

source (https://docs.stacks.co/write-smart-contracts/overview)

135 questions
4
votes
3 answers

Clarity Design Tree View Recursive Issue

I have started using the Clarity Design Angular project and have run into an issue with the Tree View recursive template that was provided in the 0.10.0-alpha. https://plnkr.co/edit/KK8rVH1xUGCO7VetgomA?p=preview selectableRoot = { "@name":…
bangelakos
  • 81
  • 6
4
votes
1 answer

Camera+ Clarity Filter and GPUImage

I'm playing around with doing some camera filters using GPUImage and attempting get get something resembling Camera+'s Clarity filter (not expecting to match 100% of course, but to get in the same ballpark). But I can not seem to get anywhere close…
MarkPowell
  • 16,482
  • 7
  • 61
  • 77
4
votes
1 answer

iPhone Dev - Where to put lazy loading code

I already had a question like this, but I already deleted it anyway. I have very simple app that has a root view controller and it switches between two other view controller views. So in my root view controller, It lazy loads the instances of the…
mk12
  • 25,873
  • 32
  • 98
  • 137
4
votes
9 answers

General programming - else or else if for clarity

In a situation where a variable could have two different values, and you do something if its one, something differnent if its the other, would you just do: if(myVariable == FIRST_POSSIBLE_VALUE) { ... } else { ... } or would you do: if(myVariable…
mk12
  • 25,873
  • 32
  • 98
  • 137
3
votes
2 answers

How to add a condition for ngFor loop

I am creating a table using Clarity. They have their own syntax, clrDgItems, but the structure is the same as ngFor. I want to create an loop for my table, which filters the first 10 items, and then a second table which only shows items 11-20. You…
3
votes
1 answer

Clarity Terraform testing for checking resource tags

I am new to clarity test tool. I wanted to know whether clarity can be used to check whether tags are added to AWS resources or not. I wrote the clarity test for tags like below: Scenario: EC2 should have tag "application" Given Terraform …
TechGirl
  • 123
  • 1
  • 7
3
votes
1 answer

ClarityNg: how to close sidenav on click button inside

I have a basic clarity angular template with search in sidenav. When I click find button in sidenav on mobile device, sidenav does not disappear. How I can close sidenav using angular?
3
votes
1 answer

Hide the caret column on expandable Datagrid with VMWare Clarity Design with Angular2+

I'm using the VMWare Clarity Datagrid component. Description: I have two datagrids and I managed to expand the right one (blue) when expanding one of the rows of the left datagrid (red). My GOALS: Hide the caret column on the right datagrid and…
Leo
  • 5,363
  • 5
  • 27
  • 30
2
votes
2 answers

How to get rid of the blurry fonts for menus when using WPF?

WPF beginner here. I'm trying to mimic the font style used in Visual Studio 2010 for menus. Under Windows XP menus look blurry. How can my code be changed to get the same result?
Frank Ross
  • 349
  • 1
  • 7
  • 16
2
votes
3 answers

How to correctly use react-native-clarity in a React Native app?

I'm trying to integrate react-native-clarity into my React Native app to track user analytics. I have followed the installation steps mentioned in the documentation and successfully linked the package. However, I'm uncertain about where exactly to…
ionman
  • 39
  • 5
2
votes
2 answers

How to get a particular value from a map

In my contract I have a map with a principal as its key and a tuple as its value. I want to get a particular value from the value-tuple for every principal in the map. Let's say I want to get the salary for every member from the map…
2
votes
1 answer

Dynamic filter in clarity design

I am new to clarity design framework. I have created the customized grid with dynamic column and dynamic row in Clarity design. I am trying to filter as based on the dynamic column but I am not able to get the column name in the default filter…
2
votes
1 answer

Changing the color of a Clarity toggle switch

I have a Angular project with .Net core and I'm using Clarity as well, I was wondering if there is a way to change the color of a Clarity toggle switch? my code that I've tried so far which was not working:
A. Kriel
  • 260
  • 4
  • 20
2
votes
1 answer

Failed to execute 'define' on 'CustomElementRegistry' when using ClarityIcons

In my application I want to use ClarityIcons.add() to add a custom icon. However I get the following error: index.js:402 Uncaught DOMException: Failed to execute 'define' on 'CustomElementRegistry': this name has already been used with this…
Felix Engelmann
  • 399
  • 5
  • 17
2
votes
0 answers

Clarity datagrid custom filter issue: ERROR TypeError: Cannot read property 'subscribe' of undefined at FiltersProvider.add (

I am trying to implement a custom filter. my filter code is: import { Component, OnInit, ChangeDetectionStrategy, Input } from '@angular/core'; import { Filter } from "@clr/angular"; import { DatagridFilter } from "@clr/angular"; import { Subject }…
1
2
3
8 9