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
Laxman Vattam 26Laxman Vattam 26 

Launching a Case create page with a particular record type when user clicks on link in lightning component

I'm building a home page lightning component where once a user clicks a link, we should launch create page of particular (particular record type) 'Case' record. I'm trying to use the below code in lightning component. When the link is clicked, it is launching default 'Case' record create page. It does nto consider the record type being passed but rather launches create page for default record page. How to overcome of this issue and launch correct record type page for case?
 
<li class="slds-list__item slds-p-bottom--xxx-small">
     <a href="/500/e?retURL=%2F500%2Fo;RecordType=0120j0000008ABC">{!$Label.c.LblHomepage}</a>
</li>