function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Hema YejjuHema Yejju 

lightning input field

Hi , i am trying to populate one field value from my Case object where in i want to dispaly the particular field on the Quick action button of case record page.
   </lightning-quick-action-panel>
 <!  <lightning-record-edit-form
         object-api-name={objectApiName}
         record-id={recordid}
         onsuccess={handleSuccess}>
         <lightning-input-field field-name={nameField} ></lightning-input-field>
       
        </lightning-record-edit-form>


JS:
/*  handleSuccess(event){
        // Close the modal window and display a success toast
       
        this.dispatchEvent(
            new ShowToastEvent({
                title: 'Success',
                message: 'Record updated!',
                variant: 'success'
            })
        );
   }*/


i am getting nothing while im clicking on that button if i use this
Hema YejjuHema Yejju
i wanted to give the value to particular field and after clicking on that button the record needs to be saved with the particular comment on the field 
Hema YejjuHema Yejju
imported particular field using @salesforce/schema/
i want that field displayed down the button? ,because i have still many fields to dispaly only after filling all deatils i need to submit can any one suggest