hcker2000
hcker2000
SSolidJS
Created by hcker2000 on 10/11/2024 in #support
Importing bootstraps JS
That's very helpful and I'm sure I'll need it at some point
8 replies
SSolidJS
Created by hcker2000 on 10/11/2024 in #support
Importing bootstraps JS
Thanks I'll check that out
8 replies
SSolidJS
Created by hcker2000 on 10/11/2024 in #support
Importing bootstraps JS
is there a way to do that?
8 replies
SSolidJS
Created by hcker2000 on 10/11/2024 in #support
Importing bootstraps JS
thats what i ended up doing but lets say i want to use something that hasnt been preperared for solid js
8 replies
SSolidJS
Created by hcker2000 on 10/9/2024 in #support
Any way to pass the value of an event to say an onChange handler?
that works well
33 replies
SSolidJS
Created by hcker2000 on 10/9/2024 in #support
Any way to pass the value of an event to say an onChange handler?
const getSounds = createMemo(() => {
if (store.search == '') {
return store.sounds
}

return store.sounds.filter(obj => obj.title.includes(store.search))
})
const getSounds = createMemo(() => {
if (store.search == '') {
return store.sounds
}

return store.sounds.filter(obj => obj.title.includes(store.search))
})
33 replies
SSolidJS
Created by hcker2000 on 10/9/2024 in #support
Any way to pass the value of an event to say an onChange handler?
interesting idea @Emily
33 replies
SSolidJS
Created by hcker2000 on 10/9/2024 in #support
Any way to pass the value of an event to say an onChange handler?
No description
33 replies
SSolidJS
Created by hcker2000 on 10/9/2024 in #support
Any way to pass the value of an event to say an onChange handler?
So i have not used memos yet but i understand the gist of them is to only redraw when underlying data is changed. so i could make a memo that would use the search state and then filter and return the objects i want based on the search?
33 replies
SSolidJS
Created by hcker2000 on 10/9/2024 in #support
Any way to pass the value of an event to say an onChange handler?
and then as i change the search i can run a find and update them if needed which will trigger the redraw on the for?
33 replies
SSolidJS
Created by hcker2000 on 10/9/2024 in #support
Any way to pass the value of an event to say an onChange handler?
so that being said would it be better to make a class/visible property on my sounds stores objects
33 replies
SSolidJS
Created by hcker2000 on 10/9/2024 in #support
Any way to pass the value of an event to say an onChange handler?
No description
33 replies
SSolidJS
Created by hcker2000 on 10/9/2024 in #support
Any way to pass the value of an event to say an onChange handler?
No description
33 replies
SSolidJS
Created by hcker2000 on 10/9/2024 in #support
Any way to pass the value of an event to say an onChange handler?
and was hoping that this would work but it dosnt because it dosnt modify the store im looping over
33 replies
SSolidJS
Created by hcker2000 on 10/9/2024 in #support
Any way to pass the value of an event to say an onChange handler?
i added the search text to my store
33 replies
SSolidJS
Created by hcker2000 on 10/9/2024 in #support
Any way to pass the value of an event to say an onChange handler?
im trying to write a search filter that works with an array of elements that shows on the page using <For>
33 replies
SSolidJS
Created by hcker2000 on 10/9/2024 in #support
Any way to pass the value of an event to say an onChange handler?
one more general question
33 replies
SSolidJS
Created by hcker2000 on 10/9/2024 in #support
Any way to pass the value of an event to say an onChange handler?
for sure
33 replies
SSolidJS
Created by hcker2000 on 10/9/2024 in #support
Any way to pass the value of an event to say an onChange handler?
the more you know right
33 replies
SSolidJS
Created by hcker2000 on 10/9/2024 in #support
Any way to pass the value of an event to say an onChange handler?
ok just wanted to make sure there was no magic going on there
33 replies