Lalakis Alfa Ordner
Lalakis Alfa Ordner
SSolidJS
Created by Lalakis Alfa Ordner on 3/23/2025 in #support
Update array of signal by index, it does unfocus on typing
When i type a letter on the input it loses focus trying to update and arr based on index.
<For each={names()}>
{(name, index) => (
<div class={styles.inputGroup}>
<input
type="text"
value={name}
onInput={(e) => updateName(index(), e.target.value)}
placeholder="Enter name"
class={styles.input}
/>
</div>
)}
</For>

<For each={names()}>
{(name, index) => (
<div class={styles.inputGroup}>
<input
type="text"
value={name}
onInput={(e) => updateName(index(), e.target.value)}
placeholder="Enter name"
class={styles.input}
/>
</div>
)}
</For>

const [names, setNames] = createSignal([''], { equals: false });

const addName = () => {
setNames([...names(), '']);
};

const updateName = (index: number, value: string) => {
setNames((prev) => {
const newNames = [...prev];
newNames[index] = value;
return newNames;
});
};
const [names, setNames] = createSignal([''], { equals: false });

const addName = () => {
setNames([...names(), '']);
};

const updateName = (index: number, value: string) => {
setNames((prev) => {
const newNames = [...prev];
newNames[index] = value;
return newNames;
});
};
6 replies
SSolidJS
Created by Lalakis Alfa Ordner on 11/30/2023 in #support
Sort the data in createStore
This is my first solid-ts app. I got an array of objects and want to sort the by the number field which can be from 0 to an amount. I also want to sort by checkbox checked. I figure that out in javascript. In solid i run this changeTitles(sortedTitles); It seems not updating and breaking. The ui does not update. i tried createSignal, but the same (ui does not update). I tried reading more from the Docs.
16 replies