Valid CRT-450 Dumps shared by EduDump.com for Helping Passing CRT-450 Exam! EduDump.com now offer the newest CRT-450 exam dumps, the EduDump.com CRT-450 exam questions have been updated and answers have been corrected get the newest EduDump.com CRT-450 dumps with Test Engine here:
A developer must create a Lightning component that allows users to input Contact record information to create a Contact record, including a Salary__c custom field. What should the developer use, along with a lightning-record-edit-form, so that salarv < field functions as a currency Input and is only viewable and editable by users that have the correct field level permissions on salary _c?
Correct Answer: D
Recent Comments (The most recent comments are at the top.)
Vitalii - May 28, 2025
The answer is B:
To format numerical input as a percentage or currency, set formatter to percent or currency respectively. To allow for decimal numbers, specify the step attribute as well.
Recent Comments (The most recent comments are at the top.)
The answer is B:
To format numerical input as a percentage or currency, set formatter to percent or currency respectively. To allow for decimal numbers, specify the step attribute as well.
<template>
<lightning-input
type="number"
label="Price"
value="12345"
formatter="currency"
step=".01"
>
</lightning-input>
</template>
https://developer.salesforce.com/docs/component-library/bundle/lightning-input/documentation