Hi Dan thanks for your reply.
Yeh i tryed to load jquery add the bottom.
//Edit// Yep this works now when i load all scripts add the bottom, except for the date field which works fine when i load the query add the top.
Do i still need to insert the jQuery UI by hand?
//Edit2// Also the safecracker file field has some issues in a other form, i can’t remove a file which i inserted.
//Edit3// I don’t think to load all scripts at the bottom is the solution because i get a lot of faults in my other forms.
I think my safecracker form contains noting special. All straight forward and for the date field i use this.
//Don’t mind the messy code i still need to clean it up 😉
{exp:safecracker channel="taken" return="project/{segment_4}" entry_id="{segment_3}"}
<fieldset>
<table>
<tr>
<td>Klant: <input readOnly type="text" size="30" value="{klant_link_taak}{title}{/klant_link_taak}" class="disabled">
</td>
<td>Project: <input readOnly type="text" size="30" value="{project_link}" class="disabled">
</td>
<td>Status:
<select name="category[]" id="categories">
{categories}
<option value="{category_id}"{selected}>{category_name}</option>
{/categories}
</select>
</td>
<td>Uren:
<input name="taak_uren" id="taak_uren" value="{taak_uren}" size="3" maxlength="3" type="text">
</td>
</tr>
</table>
</fieldset>
<fieldset>
<table>
<tr>
<td valign="top" width="50%">
Taak naam: <input name="title" type="text" size="45" id="{title}" value="{title}"><hr>
Taak omschrijving:
<textarea name="taak_omschrijving" id="taak_omschrijving" cols="60">{taak_omschrijving}</textarea>
</td>
<td width="50%" valign="top">
<!-- DATE FIELD!!!--> Datum uitvoering: {field:taak_datum}
<hr>
Door: {field:taak_medewerker}
<hr>
<span class="icon"></span> Verwijder taak: <input name="status" type="checkbox" value="closed"/>
<input class="blue" type="submit" name="submit" value="Bewaar Taak">
</td>
</tr>
</table>
</fieldset>
{/exp:safecracker}