Hello Guys,
I am trying to get current entity logical name and record Id in CRM Portal forms using JavaScript using following code.
Entity logical name: $("#EntityFormControl_EntityFormView_EntityName").val();
Record ID: $("#EntityFormControl_EntityFormView_EntityID").val();
I have also used :
Entity logical name: $(“input[id^=’EntityFormControl_’][id$=’_EntityFormView_EntityName’]”).val()
Record ID: $(“input[id^=’EntityFormControl_’][id$=’_EntityFormView_EntityID’]”).val()
Both of the methods are not working so please help me... I want to use this in webresource inside portal.







