Sometimes we face this issue in Salesforce LEX. For example, we have two record types on Contact object:
Contact 1 and Contact 2.

Now for System Administrator profile Contact 1 record type is default one.
I am calling the sforce.one.createRecord() method from visualforce page and provide the hardcoded id of Contact 2 record type like this.

It is showing record type title Contact 1 although we are facing Contact 2 record type id in visualforce page.

So we need to pass Contact 2 record type id in sforce.one.createRecord() method in place of null like this:

Output

I think this will help you guys.
Leave a comment