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
keshin okawakeshin okawa 

what to do with <namespace:expenseList expense="{!expense}"/> if my org has no namespace?

I encountered something like this through https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/qs_aotp_app_step4_nested.htm
and I can't figure out how to save my form.cmp because I ddnt use any namespace on my developer account. I tried some ways but I can't seem to igure it out on my own and I don't have much experience with it. Any suggestions/solutions will be a great help to me...
Best Answer chosen by keshin okawa
SonamSonam (Salesforce Developers) 
You can use the default namespace:

c:expenseList

Did you get a chance to go through the code sample when an ORG doesn't have a namespace set:
https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/namespace_using_reference.htm#namespace_using_reference

Hoping this helps you with your piece of code!

All Answers

SonamSonam (Salesforce Developers) 
You can use the default namespace:

c:expenseList

Did you get a chance to go through the code sample when an ORG doesn't have a namespace set:
https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/namespace_using_reference.htm#namespace_using_reference

Hoping this helps you with your piece of code!
This was selected as the best answer
keshin okawakeshin okawa
thx @Sonam...