[Javascript tutorials #2] Get details and display in a table JS Part 3 - Data processing & display

  Рет қаралды 74,499

DigiFisk

DigiFisk

Күн бұрын

Пікірлер: 116
@tasuttk
@tasuttk Жыл бұрын
I dunno how can I say how much happy I'm today. I was trying to prarctice js alone for the first time and you helped me a lot. For now my happiness is infinite.
@DigiFisk
@DigiFisk Жыл бұрын
Thanks for the compliments!
@francisjacquart9618
@francisjacquart9618 2 жыл бұрын
YOUR TUTORIALS ARE ALL REALLY FANTASTIC. I AAM A TEACHER, AN AUTODIDACT AND ALSO A NOVICE AND I UNDERSTAND EVERYTHING YOU EXPLAIN. THANSKS SO MUCH FOR THESE WONDERFUL MINI APPLICATIONS. I ONLY WISHED, THAT YOU MADE MORE OT THEM TO LEARN EVEN MORE FROM YOU, BUT THANKS FOR YOU GENEROSITY! LOVE AND TAKE CARE! FRANCIS, 68 LEARNING TO PROGRAMM AND CODE SERIOUSLY FOR THE FIRST TIME IN MY LIFE AND ALL BY MYSELF. I JUST LOVE IT! I STARTED IN FEBRUARY OF THIS YEAR, 2022.
@DigiFisk
@DigiFisk 2 жыл бұрын
Thanks for the compliments Francis. All the best in your coding journey! :)
@Emediong-j4h
@Emediong-j4h Жыл бұрын
Wow😮 The best I have ever watched. This is what I have been looking for. Sending love from Nigeria
@armyteguh2649
@armyteguh2649 4 жыл бұрын
Again, your voice really are relaxing my mind, and Damn why the hell i just found you now, you're really have a damn good teach and explaining skill, please update more video...
@DigiFisk
@DigiFisk 4 жыл бұрын
Thanks! Yes, I'll create more videos in the next few weeks, starting from today.
@SabarishRR
@SabarishRR 5 жыл бұрын
Tutorial is really nice and I am impressed with your voice and delivering flow
@vaishalisinghparwal6271
@vaishalisinghparwal6271 5 жыл бұрын
same
@DigiFisk
@DigiFisk 4 жыл бұрын
Thank you! :)
@-alfeim2919
@-alfeim2919 4 жыл бұрын
this is so amazing, thankx a lot. i tried to display data using array but your way is much better
@-alfeim2919
@-alfeim2919 4 жыл бұрын
my button can't work
@subhamsrivastava7181
@subhamsrivastava7181 5 жыл бұрын
Thanks for explaining in such detail.
@ragjnmusic8765
@ragjnmusic8765 3 жыл бұрын
can you help me with displaying the database table rows like this when I click the button it should show the whole table PHP and AJAX JS
@LavkushDhepevlogs
@LavkushDhepevlogs 2 жыл бұрын
If suppose SR No table is there how will increase automatically serial wise if we put data serial wise
@ivanyosifov2629
@ivanyosifov2629 7 жыл бұрын
Wow didn't know JavaScript had native methods for inserting rows and cells in tables. Always used document.createElement(). A nice trick that I learned about inserting cells and rows is if you don't want to keep track of the row or cell index is to use -1 var cell1 = newRow.insertCell(-1); var cell2 = newRow.insertCell(-1); var cell3 = newRow.insertCell(-1); is just the same as: var cell1 = newRow.insertCell(0); var cell2 = newRow.insertCell(1); var cell3 = newRow.insertCell(2); And *var newRow = display.insertRow(row);* is same as *var newRow = display.insertRow(-1);*
@kannand803
@kannand803 2 жыл бұрын
Hi, when I try to submit the form. It returns an empty row. I did console.log, values are showing there.
@davindrabrabumathivanan5523
@davindrabrabumathivanan5523 2 жыл бұрын
Nicely explained... looking forward for more JavaScript tutorial projects
@DigiFisk
@DigiFisk 2 жыл бұрын
Thank you! More to come!
@Mr.React-d4t
@Mr.React-d4t 5 ай бұрын
Awesome madam ❤ thank you so much 🎉🎉🎉
@priyaljain9585
@priyaljain9585 6 жыл бұрын
can u tell me the code to hide the table headings
@crangel155
@crangel155 Жыл бұрын
For anyone that is having a problem with the page refreshing on submit. In the tag put onsubmit="return false". This worked for me, it stops the page from refreshing when you hit the button but still submits the data. This took me a while to figure out.
@crangel155
@crangel155 Жыл бұрын
that is if you used a submit type instead of a button for some reason like I did
@priyeshgupta164
@priyeshgupta164 2 жыл бұрын
How can we add data that we retrieve from backend java application, running on eclipse. I want to show this data as a table data in html.
@hemanthchowdary5381
@hemanthchowdary5381 2 жыл бұрын
It's showing cannot read properties of null(reading 'addEventListener')?
@danbuild977
@danbuild977 4 жыл бұрын
An excellent solution, thank you for this teacher. I have done this slightly differently through the implementation of insertRow(-1). It cuts down on the code a little bit, and is good for single line entry processes. (tableID) => { let tableRef = document.getElementById('my-table'); let newRow = tableRef.insertRow(-1);
@LavkushDhepevlogs
@LavkushDhepevlogs 2 жыл бұрын
When we submit input entry and that i want to empty input
@chiragprajapati4506
@chiragprajapati4506 2 жыл бұрын
Hello ma'am why there is a value in table are disappear in 1 second what is the reason?
@yashbeniwal4337
@yashbeniwal4337 3 жыл бұрын
Very Nice❣Voice concept also
@user-qp4mv6dt9z
@user-qp4mv6dt9z 3 жыл бұрын
.InsertRow(row) Found error like this function is not defined so what should I do?
@aarthie3035
@aarthie3035 3 жыл бұрын
JavaScript is case sensitive. The function is insertRow
@ruudkorunka
@ruudkorunka Жыл бұрын
Thank you for your clear explanation. How can I save the submitted data in an .html file or .txt file, so that they will not disappear?
@DigiFisk
@DigiFisk Жыл бұрын
I'll create a new video detailing this.
@jebonecyjahranv.3416
@jebonecyjahranv.3416 3 жыл бұрын
Can you try to reload. If it won't dissapear the text
@levelclimbingvideos5819
@levelclimbingvideos5819 2 жыл бұрын
Very nice app! It would be fun to continue expanding this app. E.g. let different users save their table, delete entries, edit entries, etc.
@DigiFisk
@DigiFisk 2 жыл бұрын
More videos to come. Please look forward to them. :)
@jitakshgambhir6437
@jitakshgambhir6437 3 жыл бұрын
can the table be on the next page and whenever the user clicks the button it redirects to the next page with the table please reply
@rojakamasani3499
@rojakamasani3499 2 жыл бұрын
Sir using react js how to display the same output.
@gopikrishnan6667
@gopikrishnan6667 2 жыл бұрын
If I hit input entry button... It's showing undefined in the table cells...has anybody got this same error... How to resolve this?
@keinAlias1
@keinAlias1 3 жыл бұрын
Hey thanks for video! Would it also be possible to sort the table like that the new entry always gets showed on top of the table? Thank you in advance!
@aparnavenkatraj4565
@aparnavenkatraj4565 4 жыл бұрын
how to validate your form? where to include that alerts? like enter only characters
@RuthAdebolaHola
@RuthAdebolaHola 4 жыл бұрын
Cooolll, thank you One more problem what if I misspell and submit and need to edit the information or delete it how do I add that button option
@ssdheeraj6347
@ssdheeraj6347 3 жыл бұрын
thank you for explaining in detail.
@allisonricker9336
@allisonricker9336 2 жыл бұрын
hello, can you please share how you would sort this data, since it is not an array?
@sampath2927
@sampath2927 3 жыл бұрын
can we use createElement for creation of new rows in table and then use appendChild to it???? can anyone please help
@surbhi4378
@surbhi4378 5 жыл бұрын
mam, I am Surbhi from Bhubaneswar Odisha. I am facing a problem with the code. my table shows the data for a few seconds and then disappear. hope you will help me with this.
@swarupbasak5227
@swarupbasak5227 3 жыл бұрын
In my case only new row and cell is created.,but no data gets displayed. Have u solved the problem bro
@robertasaservice
@robertasaservice 4 жыл бұрын
This was amazing, Many thanks!!
@yashbeniwal4337
@yashbeniwal4337 3 жыл бұрын
But madam how it will store each time will refresh it goes clean
@deepaknirmal8667
@deepaknirmal8667 2 жыл бұрын
Great explanation. Thanks.
@DigiFisk
@DigiFisk 2 жыл бұрын
Glad it was helpful!
@harshittrivedi4988
@harshittrivedi4988 4 жыл бұрын
Ma'am I don't be able insert my data dynamically.i have already watched and doing practical with you but I can't be able to display data dynamically can please guide me.
@balamuralimedia1653
@balamuralimedia1653 2 жыл бұрын
madam please provide source code.. my vs Code it did't worked .....i enter what you told ....but it not worked
@lillykhan7968
@lillykhan7968 3 жыл бұрын
Great explanation.
@mohdimtiazali3865
@mohdimtiazali3865 4 жыл бұрын
Thanks it is really so helpful Keep doing this
@WaqasKhan-yj4jz
@WaqasKhan-yj4jz 3 жыл бұрын
great Mam, try to solve more advanced javascript lecture we will be waiting. Thank You.
@sunwinsunny
@sunwinsunny 2 жыл бұрын
Thank you , I really needed this
@akashmazumder12
@akashmazumder12 4 жыл бұрын
Great ..it really helped..can you pls show how to delete the last row if user clicks a button say Delete Data
@prottoyalam5035
@prottoyalam5035 3 жыл бұрын
these videos are very helpful
@sundaramahalingama4943
@sundaramahalingama4943 3 жыл бұрын
thank you so much great one for CRUD operations
@jaysonwonder6667
@jaysonwonder6667 2 жыл бұрын
It is not a CRUD, C = Create, R = Read, U = Update, D = Delete
@no-han
@no-han 8 ай бұрын
thanks your videos
@harshsaraswat7024
@harshsaraswat7024 2 жыл бұрын
its not working in me anybody help
@prashil7580
@prashil7580 2 жыл бұрын
Thanks.. Its very helpfull
@DigiFisk
@DigiFisk 2 жыл бұрын
Glad it was helpful!
@MukulSharma-nr3te
@MukulSharma-nr3te 2 жыл бұрын
nice teaching
@DigiFisk
@DigiFisk 2 жыл бұрын
Thank you!
@priyankah455
@priyankah455 3 жыл бұрын
Which text editor you used
@strombreak
@strombreak 2 жыл бұрын
Bracket
@DigiFisk
@DigiFisk 2 жыл бұрын
You can use Visual studio Code now, it works better actually.
@shafferiyasudheenr5499
@shafferiyasudheenr5499 2 жыл бұрын
I didn't get this output
@nadiajamhari98
@nadiajamhari98 4 жыл бұрын
Nice video.
@akhilkazi1454
@akhilkazi1454 4 жыл бұрын
I needed a database as same which as shown on video. Which save data (for ex. If i have 100 mobile if one sale it should be delete from row and shows as 99 remain.
@FMFT
@FMFT Жыл бұрын
AddressBook JavaScript Vanilla
@tolabanjo2675
@tolabanjo2675 3 жыл бұрын
BIG THANKS!
@FMFT
@FMFT Жыл бұрын
Suggestion: AddressBook JavaScript Vanilla
@sushi5854
@sushi5854 4 жыл бұрын
Nice vedio sister
@mdrojjob4459
@mdrojjob4459 2 жыл бұрын
Thank you so Much
@RandomFatcsPH
@RandomFatcsPH 3 жыл бұрын
Nice video very helpful, can u tell create video on how to avoid duplicate entry?
@manojrohit7727
@manojrohit7727 5 жыл бұрын
Hey after display i want go insert these table value can u please create one more video on these
@DigiFisk
@DigiFisk 4 жыл бұрын
Yes, I'll do that.
@coolgirlsharu
@coolgirlsharu 3 жыл бұрын
Thank you 😊💞 so much mam
@C__RahidaPriya
@C__RahidaPriya 2 жыл бұрын
I need the source code.Can You please Share it??
@FMFT
@FMFT Жыл бұрын
AddressBook JavaScript Vanilla
@rajchandra6913
@rajchandra6913 3 жыл бұрын
Hi I really enjoyed your tutorial and watched all three of your videos of the series!! Can you tell me how to add border radius to all cells heading separatelly??
@DigiFisk
@DigiFisk Жыл бұрын
You can select "th" in CSS (selector) and add a border.
@anoushkachouksey9752
@anoushkachouksey9752 3 жыл бұрын
Thank you so much❤️
@pawansingh1601
@pawansingh1601 4 жыл бұрын
very nice
@mehboobdev
@mehboobdev 4 жыл бұрын
You are very good at teaching , keep working hard . well explained , you earn subscriber's
@DigiFisk
@DigiFisk 4 жыл бұрын
Thanks for the compliment! I'll be creating a lot more videos soon. Hope you enjoy them as well.
@salihsendil
@salihsendil 4 жыл бұрын
you are a hero :D
@reshmaofficial9994
@reshmaofficial9994 3 жыл бұрын
Thank you Sister
@ALVIN28288
@ALVIN28288 4 жыл бұрын
Better to have a button to delete row.
@pawansingh1601
@pawansingh1601 4 жыл бұрын
very helpful
@attahussain8277
@attahussain8277 4 жыл бұрын
Can you give this code? please
@FMFT
@FMFT Жыл бұрын
AddressBook JavaScript Vanilla
@amaliavina4029
@amaliavina4029 4 жыл бұрын
Thanks so much!!!
@amalasebastian9968
@amalasebastian9968 2 жыл бұрын
niceee
@DigiFisk
@DigiFisk 2 жыл бұрын
Thanks! :)
@leanboy4952
@leanboy4952 4 жыл бұрын
Its Not working
@salmantariq1528
@salmantariq1528 4 жыл бұрын
i face the same issue which is yours, but then i recheck my code and find my mistake then it's working,,,, she's doing awesome
@ammadhoorani8036
@ammadhoorani8036 Жыл бұрын
TY :)
@rodericklamano6488
@rodericklamano6488 3 жыл бұрын
thank you...
@auliafaza866
@auliafaza866 4 жыл бұрын
ow girl.. finallyyyy
@richluetoure5386
@richluetoure5386 3 жыл бұрын
Very good. can you please share the source code?
@FMFT
@FMFT Жыл бұрын
AddressBook JavaScript Vanilla
@trippie7014
@trippie7014 3 жыл бұрын
thanks
@Armin.Theron
@Armin.Theron 3 жыл бұрын
Jesus loves you so much ❤️ I was addicted to porn for almost 6 years of my life, I was on drugs, alcohol and I hated people, Jesus set me free and he can set you free aswell ❤️ all you have to do is repent and trust in him and he will change your life!! ❤️
@Tutorialworld-g7s
@Tutorialworld-g7s 9 ай бұрын
@reshmaofficial9994
@reshmaofficial9994 3 жыл бұрын
J's code........View
@dcdailycare
@dcdailycare 2 жыл бұрын
It was a nice tutorial until it reached javascript.
@faqaralshehab9269
@faqaralshehab9269 3 жыл бұрын
meci
@priyankah455
@priyankah455 3 жыл бұрын
Which text editor u used
@kamrulhasanshimul6200
@kamrulhasanshimul6200 3 жыл бұрын
Thank you
@DigiFisk
@DigiFisk 2 жыл бұрын
Welcome!
We Attempted The Impossible 😱
00:54
Topper Guild
Рет қаралды 56 МЛН
My scorpion was taken away from me 😢
00:55
TyphoonFast 5
Рет қаралды 2,7 МЛН
Мен атып көрмегенмін ! | Qalam | 5 серия
25:41
User Input and Response on a webpage using JavaScript (for beginners)
16:55
This Is Why Python Data Classes Are Awesome
22:19
ArjanCodes
Рет қаралды 821 М.
Use JavaScript to Get Value from a Textbox and Display on the Page
7:00
Six Minutes. Smarter.
Рет қаралды 215 М.
How to dynamically add and remove table rows with javascript
7:36
Saving User Input in JS Objects
8:00
Steve Griffith - Prof3ssorSt3v3
Рет қаралды 202 М.
Pure JavaScript CRUD Operations with Html
24:19
CodAffection
Рет қаралды 348 М.