Hi Amanda,
Sorry, I didn't understand well your question. If you want to set Title in transformation, from repeater, then you can try to bind it on event 'OnOnBeforeDataLoad', so you need to add something like this on your BizForm control instead of SetDataValue: OnOnBeforeDataLoad="BizForm_OnBeforeDataLoad"
Then with server side script, you should get title and set it into desired field:
protected void BizForm_OnBeforeDataLoad(object sender, EventArgs e)
{
((CMS.OnlineForms.Web.UI.BizForm)sender).Data["FormFieldName"] = Eval("TitleFromTransformation");
}
This need to be added directly in ASCX transformation, wrapped by 'script' tag (runat="server").
Best regards,
Dragoljub