Пікірлер
@Chris-p8u4j
@Chris-p8u4j Ай бұрын
😂
@dheerajsukhwal642
@dheerajsukhwal642 Ай бұрын
how to add authenticate query. like rest api where we can use self, anonymous
@Jra_hatke_sarthak
@Jra_hatke_sarthak Ай бұрын
Ye sare comments krne wale tere dost hai na 😅😂
@basiccodingwithshailendra
@basiccodingwithshailendra Ай бұрын
Ha bhai
@PriyaMaurya-ro1dp
@PriyaMaurya-ro1dp 3 ай бұрын
Hello sir ap offline classes nh dete
@basiccodingwithshailendra
@basiccodingwithshailendra 3 ай бұрын
Mujhe mail kro then ham log discuss krte hai
@muhammadsameer.2062
@muhammadsameer.2062 3 ай бұрын
Kindly update branch URL in description as I've noticed that you've already updated the code in Mass_Delete branch.
@basiccodingwithshailendra
@basiccodingwithshailendra 3 ай бұрын
Ok
@muhammadsameer.2062
@muhammadsameer.2062 3 ай бұрын
Kindly update git branch URL. It is showing the first default branch.
@muhammadsameer.2062
@muhammadsameer.2062 3 ай бұрын
Kindly update the code for new Magento version (2.4.6): File Path: Custom/Blog/Controller/Adminhtml/Post/Savepost.php Note: unset($data['post_id']) is missing from 3rd to 6th branch. But I've found the fix in your last video. ******** OLD CODE ******** if(isset($id) && !empty($id)){ $model = $this->postFactory->create()->load($id); $model->addData($data); $model->save(); }else{ $model = $this->postFactory->create(); $model->setData($data); $model->save(); } ******** NEW CODE ******** if(isset($id) && !empty($id)){ $model = $this->postFactory->create()->load($id); $model->addData($data); $model->save(); }else{ unset($data['post_id']); $model = $this->postFactory->create(); $model->setData($data); $model->save(); }
@basiccodingwithshailendra
@basiccodingwithshailendra 3 ай бұрын
Ok I will do
@muhammadsameer.2062
@muhammadsameer.2062 3 ай бұрын
Kindly update the code for new Magento version (2.4.6): File Path: Custom/Blog/Model/DataProvider.php ********** NOTE ********** $loadedData is undeclared. Kindly add the code before __construct method. ********** CODE ********** protected $loadedData;
@basiccodingwithshailendra
@basiccodingwithshailendra 3 ай бұрын
Ok thanks
@muhammadsameer.2062
@muhammadsameer.2062 3 ай бұрын
@@basiccodingwithshailendra Your Admin Grid playlist is outstanding. Love from Pakistan <3
@basiccodingwithshailendra
@basiccodingwithshailendra 3 ай бұрын
Thank you very much
@muhammadsameer.2062
@muhammadsameer.2062 3 ай бұрын
Kindly update the code for new Magento version (2.4.6): File Path: Custom/Blog/view/adminhtml/ui_component/customblog_new_form.xml ********** OLD CODE ********** <dataSource name="customblog_form_data_source"> <settings> <submitUrl path="customblog/post/savepost"/> </settings> <argument name="dataProvider" xsi:type="configurableObject"> <argument name="class" xsi:type="string">Custom\Blog\Model\DataProvider</argument> <argument name="name" xsi:type="string">customblog_form_data_source</argument> <argument name="primaryFieldName" xsi:type="string">id</argument> <argument name="requestFieldName" xsi:type="string">id</argument> </argument> <argument name="data" xsi:type="array"> <item name="js_config" xsi:type="array"> <item name="component" xsi:type="string">Magento_Ui/js/form/provider</item> </item> </argument> </dataSource> ********** NEW CODE ********** <dataSource name="customblog_form_data_source"> <argument name="dataProvider" xsi:type="configurableObject"> <argument name="class" xsi:type="string">Custom\Blog\Model\DataProvider</argument> <argument name="name" xsi:type="string">customblog_form_data_source</argument> <argument name="primaryFieldName" xsi:type="string">post_id</argument> <argument name="requestFieldName" xsi:type="string">id</argument> <argument name="data" xsi:type="array"> <item name="config" xsi:type="array"> <item name="submit_url" xsi:type="url" path="customblog/post/savepost"/> </item> </argument> </argument> <argument name="data" xsi:type="array"> <item name="js_config" xsi:type="array"> <item name="component" xsi:type="string">Magento_Ui/js/form/provider</item> </item> </argument> </dataSource>
@basiccodingwithshailendra
@basiccodingwithshailendra 3 ай бұрын
Ok Thanks.we will do.
@twitch.tv.piskoszo
@twitch.tv.piskoszo 4 ай бұрын
I can't add a new post I receive the message that the post has been successfully saved but it is not added to the database
@BastO582
@BastO582 4 ай бұрын
yes i have same issue sir please help sir
@basiccodingwithshailendra
@basiccodingwithshailendra 4 ай бұрын
Check the table name is created or not
@basiccodingwithshailendra
@basiccodingwithshailendra 4 ай бұрын
Check the table name is created or not
@twitch.tv.piskoszo
@twitch.tv.piskoszo 3 ай бұрын
@@basiccodingwithshailendra But i see table in Manage Custom Blogs, button Add New Post work correct and if i click this button i saw Name,Url key, Post Content but if i click save nothing happens it doesn't add a new post for me
@basiccodingwithshailendra
@basiccodingwithshailendra 3 ай бұрын
Send me the whole module in my email .i will check and tell the fixes.
@BhimLamichhane-km6nj
@BhimLamichhane-km6nj 5 ай бұрын
when i click on the addpost button then i get the following issue. Invalid security or form key. Please refresh the page. how to solve?
@basiccodingwithshailendra
@basiccodingwithshailendra 5 ай бұрын
Please check the router id from adminhtml/routes.xml and your addpost controller name
@basiccodingwithshailendra
@basiccodingwithshailendra 5 ай бұрын
Yes,Send me your whole module in my email id.i will check and tell you the fixes.
@jsm357
@jsm357 8 ай бұрын
Best tutorial congratulations!!
@basiccodingwithshailendra
@basiccodingwithshailendra 8 ай бұрын
Thanks And Welcome
@jsm357
@jsm357 8 ай бұрын
Thanks man this video save me ! For magento 4.2 I needed add an typing in de collection file in Grid folder like this \Magento\Framework\DB\Adapter\AdapterInterface $connection = null,
@basiccodingwithshailendra
@basiccodingwithshailendra 8 ай бұрын
Thanks and Welcome
@myller5522
@myller5522 10 ай бұрын
Hello Shailendra, Thank you so much for your video. It helped me a lot! #grateful
@basiccodingwithshailendra
@basiccodingwithshailendra 10 ай бұрын
Thanks and Welcome
@BouncerHook
@BouncerHook 11 ай бұрын
Database my ni aya ye
@basiccodingwithshailendra
@basiccodingwithshailendra 11 ай бұрын
Create table and insert dummy data
@SANDEEPSINGH-b7r
@SANDEEPSINGH-b7r 11 ай бұрын
Aap ne bahot ache se bataya hai thanks. Mujhe is me bas eak issue hai ki aap ne blog_id kahe se liya hai (schema.graphqls & BlogDetails.php) me. Jo ki PHP my admin me bhi show nahi ho raha hai.
@basiccodingwithshailendra
@basiccodingwithshailendra 11 ай бұрын
blog_id column hai table ka jiske through model load karte hai. Ek tarike se wo entity id hai
@DanielRueda-d6t
@DanielRueda-d6t 11 ай бұрын
where take this customblog_form_data_source ? , i see only in customblog_new_form.xml but don't create in di.xml or othre file, what is the meen of this ?
@basiccodingwithshailendra
@basiccodingwithshailendra 11 ай бұрын
Please see the edit form video there you can see
@alpeshnavadiya7194
@alpeshnavadiya7194 11 ай бұрын
how can i update and delete by graphql?
@basiccodingwithshailendra
@basiccodingwithshailendra 11 ай бұрын
Use graphql query and pass id in query and write deletion code in resolver.
@alpeshnavadiya7194
@alpeshnavadiya7194 Жыл бұрын
create video on image upload
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Ok will create and upload soon.
@horrorbotgaming6393
@horrorbotgaming6393 Жыл бұрын
But br is not a closing tag😢
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Yed 😄😄
@Rohit-x5u
@Rohit-x5u Жыл бұрын
Thanks sir for explaining crud operation in easy to understand manner... Best tutorial on magento in entire youtube...loads and loads of love😍😍
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Thank you very much Rohit.
@ubedrajput1102
@ubedrajput1102 Жыл бұрын
Hello sir can you please make a video for create a magento2 ui grid in frontend custom select query way please.
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Ok Sure
@ArbitraryZer0101
@ArbitraryZer0101 Жыл бұрын
why english title, then all hindi in video??? annoying
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Sorry,that is just for SEO purpose. I am working on thumbnail,will update soon
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Super Global Variable in PHP | PHP - $_SERVER Variable In Hindi
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Super Global Variable in PHP | PHP $_GET $_POST $_REQUEST Variables Tutorial in Hindi
@ShailendraOffice-n9k
@ShailendraOffice-n9k Жыл бұрын
Nice Explain
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Thanks
@ShailendraOffice-n9k
@ShailendraOffice-n9k Жыл бұрын
Nice Tutorials
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Thanks
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
How To Include Files In PHP - Include, Require, Include Once, and Require Once Tutorial In Hindi
@shubhamrajjaiswal9122
@shubhamrajjaiswal9122 Жыл бұрын
Thank you so much, you explained very well
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Thanks And Welcome.
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Php to Print A.
@priyapatel8711
@priyapatel8711 Жыл бұрын
Thanks for this video :) Please tell me how can I fetch product quantity of each size variant of configurable products, as well as for simple products too in product filter query Magento 2 graphql. Can you kindly share asap
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Magento2 does not provide quantity in the response and you can only get the each variant sku and stock_status. If you want then you have to add extra parameters in the graphql.
@ShailendraOffice-n9k
@ShailendraOffice-n9k Жыл бұрын
Great logic
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Thanks
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
PHP To Print 'A' Using * #shorts #php #corephp #coding
@ShailendraOffice-n9k
@ShailendraOffice-n9k Жыл бұрын
Best Logic explained in 3 Step.
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Thanks
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
How to Print Alphabet letter 'A' using Star in PHP
@musyfy5594
@musyfy5594 Жыл бұрын
Nice concept
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Thnks
@ShailendraTheTech
@ShailendraTheTech Жыл бұрын
Best Video
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Thanks
@musyfy5594
@musyfy5594 Жыл бұрын
great tutorials.
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Thanks
@Shailendra-g1w
@Shailendra-g1w Жыл бұрын
Nice Tutorials
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Thanks
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
How To Override Controller | How To Override Block | How To Override Template File In Mganeto2
@pratikbhosale2967
@pratikbhosale2967 Жыл бұрын
Nice tutorial sir make video layout instructions in details helpful for magento developer
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Thanks,noted I will create and uplod soon
@ShailendraOffice-n9k
@ShailendraOffice-n9k Жыл бұрын
Very Good Explained
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Thanks
@ShailendraOffice-n9k
@ShailendraOffice-n9k Жыл бұрын
Thank You For You Video.
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Thanks
@ShailendraTheTech
@ShailendraTheTech Жыл бұрын
Well Explained
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Thanks
@musyfy5594
@musyfy5594 Жыл бұрын
best tutorials
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Thanks
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Page Layouts in Magento2 | Module Page Layout in Magento2 | Magento 2 Frontend Development
@ShailendraOffice-n9k
@ShailendraOffice-n9k Жыл бұрын
nice tutorials
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Glad you think so!
@ShailendraOffice-n9k
@ShailendraOffice-n9k Жыл бұрын
Nice Video
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Thanks and welcome
@ShailendraTheTech
@ShailendraTheTech Жыл бұрын
Well explained.
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Thanks
@Shailendra-g1w
@Shailendra-g1w Жыл бұрын
Best tutorials.
@basiccodingwithshailendra
@basiccodingwithshailendra Жыл бұрын
Thanks