Best thing about this tutorial is it is focussed on hands-on, not useless ppts and useless tech talks..just the way it should be for a developer. Well done Saket.
Very well explained with example, i have 15 years of experience working as full stack java/react js developer, but the way you explained is really good.
The problem is on 16:58 you are already have the full table, code and stuff. And for newbie hard to understand when you need to add a table and information in it to the home tab.
surprised out of 34K views of this nice tutorial only 370 viewers were considerate enough to hit a like!! If someone is helping me in this knowledge industry i should at least give back something as a token of gratitude.
@@apexhours login.salesforce.com/packaging/installPackage.apexp?p0=04t3t000002zMXh This is Unmanaged package so if install this can have the access to all the code.
This video is a bit tough to understand for those who don't have JavaScript knowledge because I could not understand how the 1. setCallback(); 2.setParams(); 3.$A.enqueueaction(); 4.helper.fetchoppHelper(null,component); here why should take component etc... hope you understand.
Why Account_Name__c why not Account.Name??? We can refer Account.Name from Opp then why Account_Name__c custom field. If we want to show Account.Name no custom field how to show that??
Good evening sir, I have two doubts regarding this session: Ques 1 How string searchkey taking all the opportunity name when string parameter is null by % % ?string takes only 1 value I think Ques 2 why columnstodisplay is accessed by v.columntodisplay It should be c.columntodisplay because we are getting the data from java script file Please reply sir so that my doubt get cleared Thanks,
Check this post for Code and PPT www.apexhours.com/introduction-to-aura/
Can't see the code in this link. Can you plz look into it
Best thing about this tutorial is it is focussed on hands-on, not useless ppts and useless tech talks..just the way it should be for a developer. Well done Saket.
Thank you so much for your feedback
The flow of the explanation is amazing. Very in depth. Thank you so much !
Glad you enjoyed it!
New to Salesforce world. I am blown out by the content. thank you Saket!
Glad it was helpful! Keep watching
Very well explained with example, i have 15 years of experience working as full stack java/react js developer, but the way you explained is really good.
Great to hear!
Thanks Apex Hours very clear & concise Explaination
The way of explanation was very clear and crisp, thanks for the tutorial!
Glad you enjoyed it!
Thank you so much. It is a great sessions on aura I have seen .
Glad you enjoyed it!
too good and very helpful video saket very well explained all the things thank you thank you so much ......
He ks great
Awesome video. Thank you for in depth explanation. Really helpful..
You're very welcome!
The problem is on 16:58 you are already have the full table, code and stuff. And for newbie hard to understand when you need to add a table and information in it to the home tab.
Sorry to heard about that. We will take care in future
the way u explained is awsome
Thanks
Awesome video !! Clear and concise
Thanks for feedback
Thank you for making it available to us.
It's our pleasure
surprised out of 34K views of this nice tutorial only 370 viewers were considerate enough to hit a like!! If someone is helping me in this knowledge industry i should at least give back something as a token of gratitude.
This comment make my day. Thanks
Amit Chaudhary
What a classic talk!Amazing!!!!!!
Glad you like it
Nice session team. It was helpful.
Glad it was helpful!
Thank you so much!!!! This is so clear, logical and in an easy-to-follow order.
Glad it was helpful!
Great video. Definitely brought all the pieces together for me.
Perfect!
Video is very informative and you explained it very well.
Glad it was helpful!
Best video on aura
Thanks you so much. Glad you like it.
Great lecture!! Learnt a lot in such a short time. Thank you so much. Looking forward to your new videos.
We tried our best to include real-time scenarios as an example in demo. I hope you will enjoy it. Please help us to spread the words
That was well detailed explanation.. 😊 Thank you so much
My pleasure 😊
Wonderful session!!
Glad you enjoyed it! Keep leaning the salesforce developer training
very nice video .I came to know the flow of aura component creation.
Glad to hear that
Wow. So clear and easy! Thank you)
Glad it was helpful!
This is So amazing...Thank you so much..
You're so welcome!
Hi Team,
Thank you so much for the video.
Just one thing, please enable auto-captions for the video.
Thanks.
Ok next time
Wonderful video!! Very helpful and useful assignment!. Let me know if some one looking for code , I am able to achieve the functionlity. Keep it up!
Great job! Please add in comment that will help others
@@apexhours login.salesforce.com/packaging/installPackage.apexp?p0=04t3t000002zMXh
This is Unmanaged package so if install this can have the access to all the code.
I am
Nice video and great explanation Saket 👏👏👍👍
Glad you liked it!
Thank you so much, found a very good practical session on aura, is there a session on LWC as well ?
Not yet!
Thanks a lot for your great efforts ~~
So nice of you
Amazing video....
Glad you like our Aura Component course
We are not getting the ppts so it would be helpful if useful links can be posted under descriptions as well please.
All link are content and code is available on apexhours.com blog
where can I find the code u have explained in the video?
No code or ppt given. Even in the post. I am looking for the OpportunityList component code but its not there...
We will upload it soon
This video is a bit tough to understand for those who don't have JavaScript knowledge because I could not understand how the
1. setCallback();
2.setParams();
3.$A.enqueueaction();
4.helper.fetchoppHelper(null,component); here why should take component etc...
hope you understand.
You need basic knowledge of JavaScript for sure
@@apexhours Yes I agree, I'm from non programming background
Really helpful, thank you a lot
Glad it was helpful!
Yes
It's a good video, could you share a test class for the custom controller component created..?
Try to create and we will help you in same
@isTest
public class MyOpportunityControllerTest {
@testSetup
static void setup(){
List oppList = new List();
Opportunity opp1 = new Opportunity(name = 'Test opp1', closeDate=Date.today() , Amount=7800 , stageName='Negotiations');
Opportunity opp2 = new Opportunity(name = 'United Test opp2', closeDate=Date.today() , Amount=5800 , stageName='Negotiations');
Opportunity opp3 = new Opportunity(name = 'United Test opp3', closeDate=Date.today() , Amount=9800 , stageName='Negotiations');
oppList.add(opp1);
oppList.add(opp2);
oppList.add(opp3);
insert oppList;
}
/*
@isTest(seeAllData='true')
static void testMethod1(){
test.startTest();
List listOpp = MyOpportunityListController.fetchOpportunity(null);
System.debug('listOpp:= ' + listOpp);
test.stopTest();
}
@isTest(seeAllData='true')
static void testMethod2(){
test.startTest();
List listOpp = MyOpportunityListController.fetchOpportunity('United');
System.debug('listOpp:= ' + listOpp);
test.stopTest();
}
*/
@isTest
static void testMethod3(){
test.startTest();
List listOpp = MyOpportunityListController.fetchOpportunity(null);
System.debug('listOpp:= ' + listOpp);
System.debug('listOpp.size():= ' + listOpp.size());
System.assertEquals(3, listOpp.size(), 'Opportunities are not captured');
test.stopTest();
}
@isTest
static void testMethod4(){
test.startTest();
List listOpp = MyOpportunityListController.fetchOpportunity('United');
System.debug('listOpp:= ' + listOpp);
System.debug('listOpp.size():= ' + listOpp.size());
System.assertEquals(2, listOpp.size(), 'Correct searched Opportunities are not captured');
test.stopTest();
}
}
Hi Awsm content .
Just one thing can you please share the link or code you used in this session
Soon we will update the blog
My auraEnabled function is taking too much time ,what can be the reasons for this issue .
you need to debug your code
Very helpful. Thanks.
You're welcome!
Really good content thank you Apex hours !!! Really helpful. It will be more nice if we get PPT as in the blog i am not getting full content.
Working on it!
I have a question. Can we fire application events across namespaces?
Very good question. Need to check for namespaces
Wonderful
Thank you
Awesome!!
Thank you! Cheers!
Can you please tell me the lightning component life cycle?
we will create recording soon on same topic
one question : it is working fine for me but i am not able to see the component in the app builder ->custom components.How can i see?
Please enable my domain in your org. you will see after my domain is set up
Check my domain
i am working through this lecture but i must have made errors along the way. is there somewhere i can see the final code for this?
We will try to upload the same on our website
Thanks for the awesome video!! I have a small doubt : can we use application events for child to parent component communication. Thanks again!
Yes you can! but dont use that. Use application events only for non-related components.
How can I access parent component method from child component?
check this post amitsalesforce.blogspot.com/2018/09/component-event-in-lightning-component.html
How can i find the code used in the demo?
available on Apex Hours website
sir i have gone through 17 videos in apex hour.so how can we improve more Apex because i am non coder background.ur help would be Better path for mine
Check out Advance Apex Development playlist
Thank you for the videos... Can you please make an videos on community cloud
Here we go ruclips.net/p/PLaGX-30v1lh0yjm8UbB-4smaykJzCsH2y
Please let me know the extension name ?
Which one you are asking
Can anyone help me out with the code in the video?
What help you need for code?
@@apexhours , I can't see the code in the link that you shared. There is no file/link to get this code. plz look into it
Thank you mam :)
He is Sir :)
Why Account_Name__c why not Account.Name??? We can refer Account.Name from Opp then why Account_Name__c custom field. If we want to show Account.Name no custom field how to show that??
Aswm 👌
Glad you like it
Where do I get code from the session ?
check apex hours website
@@apexhours Sorry I am regularly checking the website but I am unable to get it. Please guide me where it is exactly
why it is not going to that record when we clicked the record
where you are talking
@@apexhours i mean we made this component show opportunities but why it is not going to that opp record when we click i want to see whole record
thanks for the videos ..... just one problem the voice is very low
Sorry about that
The voice is fine....you can speed up the video. For fast speaker...
It will help with comprehension if you use a proper microphone and try to dampen the audio reflections in the room
Thanks for suggestion. We will take care in future.
Can someone share github repo for this project?
where is the code for this?
Check our blog
did you find the code if yes help me to find
Good evening sir,
I have two doubts regarding this session:
Ques 1 How string searchkey taking all the opportunity name when string parameter is null by % % ?string takes only 1 value I think
Ques 2 why columnstodisplay is accessed by v.columntodisplay
It should be c.columntodisplay because we are getting the data from java script file
Please reply sir so that my doubt get cleared
Thanks,
awsome
Keep watching
why ther's no CC indian accent is hard to understand for non english native speaker
You can enable cc from youTube setting
nič te ne kapim
Keep watching