web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :

Retrieve Quick View Value using JavaScript in Dataverse Environment

Ram Prakash Duraisamy Profile Picture Ram Prakash Duraisamy 5,753 Super User 2026 Season 1

Implementation Steps:

 

What is Mean by Quick View?

 

If we want to Populate data from One Entity to Another Entity based on Lookup then we can easily create Quick View Form to display the same.

 

Navigate to Forms --> Open main form --> Select Quick View Component and select respective entity and its Quick Form 

rampprakash_0-1640945694379.png

 

Javascript

 

Quick View Form Name : QuickViewContact

 

 

 

 

function getQuickViewForm(executionContext)
{
// get form Context
 var formContext = executionContext.getFormContext();
// get Quick View Contact
 var quickViewControl = formContext.ui.quickForms.get("quickviewcontact");
// get First name
 var firstNameControl = quickViewControl.getControl("firstname");
// Show Alert Dialog from FirstName
 Xrm.Utility.alertDialog(firstNameControl.getAttribute().getValue());
}

 

 

 

 

That's it 🙂

 

Comments

*This post is locked for comments