Errtu
Errtu
KPCKevin Powell - Community
Created by Errtu on 11/15/2023 in #front-end
Stuck on getting items to grid wrap.
thank you
11 replies
KPCKevin Powell - Community
Created by Errtu on 11/15/2023 in #front-end
Stuck on getting items to grid wrap.
okay
11 replies
KPCKevin Powell - Community
Created by Errtu on 11/15/2023 in #front-end
Stuck on getting items to grid wrap.
its not, just trying to learn how to use grid in more responsive ways
11 replies
KPCKevin Powell - Community
Created by Errtu on 11/15/2023 in #front-end
Stuck on getting items to grid wrap.
im trying to do it without media queries
11 replies
KPCKevin Powell - Community
Created by Errtu on 11/15/2023 in #front-end
Stuck on getting items to grid wrap.
11 replies
KPCKevin Powell - Community
Created by Errtu on 11/10/2023 in #front-end
Odd question about real life problems and Front-end
Thank you both. So I am better of interepting these projects my own, rather than going by the style guide.
5 replies
KPCKevin Powell - Community
Created by Errtu on 8/30/2023 in #front-end
Trying to bring two items closer together inside a grid on different rows
Thank you all. Sorry my brain was fried and forgot to look outside the box… or well div.
7 replies
KPCKevin Powell - Community
Created by Errtu on 7/6/2023 in #front-end
Issue with saving an element with localStorage.
Do you mean creating a base class, then a seperate class for each board?
87 replies
KPCKevin Powell - Community
Created by Errtu on 7/6/2023 in #front-end
Issue with saving an element with localStorage.
87 replies
KPCKevin Powell - Community
Created by Errtu on 7/6/2023 in #front-end
Issue with saving an element with localStorage.
Base of what I wanted is done, still a work in project.
87 replies
KPCKevin Powell - Community
Created by Errtu on 7/6/2023 in #front-end
Issue with saving an element with localStorage.
I understand those somewhat, getters and setters still confused me in definition. I did a project with Module Controller View format few weeks ago.
87 replies
KPCKevin Powell - Community
Created by Errtu on 7/6/2023 in #front-end
Issue with saving an element with localStorage.
I had that in an earlier version but didn't think it looked clean
87 replies
KPCKevin Powell - Community
Created by Errtu on 7/6/2023 in #front-end
Issue with saving an element with localStorage.
Ah so converting an object to an array can changes the order.
87 replies
KPCKevin Powell - Community
Created by Errtu on 7/6/2023 in #front-end
Issue with saving an element with localStorage.
So i wouldnt be able to get the number index of each board in the state and pass it on to do boards[index].appendChild
87 replies
KPCKevin Powell - Community
Created by Errtu on 7/6/2023 in #front-end
Issue with saving an element with localStorage.
But yes, when looping over the object how do you get the index of each board.
87 replies
KPCKevin Powell - Community
Created by Errtu on 7/6/2023 in #front-end
Issue with saving an element with localStorage.
I messed up, meant to have it like const iterateOverState = () => { for (const board in state) { state[board].forEach((item, i) => { createNewItem(item, i); }); } };
87 replies
KPCKevin Powell - Community
Created by Errtu on 7/6/2023 in #front-end
Issue with saving an element with localStorage.
How would you get the index of the board in that loop? I know this way just give you the 3 index values of the items. Do you have to do it with looping over object.entries? const iterateOverState = () => { for (const board in state) { state[board].forEach((item,) => { createNewItem(item, i); }); } };
87 replies
KPCKevin Powell - Community
Created by Errtu on 7/6/2023 in #front-end
Issue with saving an element with localStorage.
Thank you that works.
87 replies
KPCKevin Powell - Community
Created by Errtu on 7/6/2023 in #front-end
Issue with saving an element with localStorage.
I dont see where boardCategory is referencing
87 replies
KPCKevin Powell - Community
Created by Errtu on 7/6/2023 in #front-end
Issue with saving an element with localStorage.
Understandable.
87 replies