I've created a sharepoint site Issue list and Info path form using the advice from Matt Faus (posts relating to adding to a sharepoint list).
What I need advice on is how to use the CAML to provide Drop down boxes and larger text boxes.
I've initially started trying to create the drop downs by adding Choices into the CAML.
However the Choices appear in a list along the text box not in a dropdown control.
Please can someone give me a hand or point me in a new direction. Thanks
<?xml version="1.0" encoding="UTF-8"?>
<Batch OnError="Continue">
<Method ID="1" Cmd="New">
<Fields>
<Field Name='Title'>fill me in</Field>
<Field Name="ReporterName"></Field>
<Field Type="Choice" BaseType="Text Name=" Clinic"></Field>
<Choices>
<Choice>Bristol</Choice>
<Choice>Leeds</Choice>
<Choice>London Barts</Choice>
<Choice>Manchester North</Choice>
<Choice>Newcastle</Choice>
<Choice>Nottingham</Choice>
<Choice>Reading</Choice>
</Choices>
<Field Name="Category"></Field>
<Field Name="IDsAtFault"></Field>
<Field Name="Details"></Field>
</Fields>
</Method>
</Batch>