Replies: 3 comments 4 replies
-
Hello! There is no such component in SQLPage yet... Would you be interested in contributing one? I can help ! |
Beta Was this translation helpful? Give feedback.
-
What I would do is reuse the "tags input" element from the tabler css library that SQLPage embeds: <div class="mb-3">
<label class="form-label">Tags input</label>
<select type="text" class="form-select tomselected ts-hidden-accessible" placeholder="Select tags" id="select-tags" value="" multiple="multiple" tabindex="-1">
<option value="HTML">HTML</option>
<option value="JavaScript">JavaScript</option>
<option value="CSS">CSS</option>
<option value="jQuery">jQuery</option>
<option value="Bootstrap">Bootstrap</option>
<option value="Ruby">Ruby</option>
<option value="Python">Python</option>
</select><div class="ts-wrapper form-select multi"><div class="ts-control"><input tabindex="0" role="combobox" aria-haspopup="listbox" aria-expanded="false" aria-controls="select-tags-ts-dropdown" id="select-tags-ts-control" placeholder="Select tags" type="select-multiple"></div></div>
</div> You can follow the instructions to create your own custom component, or contribute directly to the form component The way I would do it is adding a new row level parameter called Then the user could do
|
Beta Was this translation helpful? Give feedback.
-
Support for autocomplete has been added and will be released in 0.20.3 🎉 You will be able to use a https://sql.ophir.dev/documentation.sql?component=form#component |
Beta Was this translation helpful? Give feedback.
-
First SQLPage is very nice many thanks for sharing.
How do I allow user to select / auto complete a input box from sql table which contain 10K rows (item_names) user need to input few letter to start search.
Beta Was this translation helpful? Give feedback.
All reactions