Symptoms
Alignment issue w/ autocomplete control
Diagnoses
autocomplete controls have 3px of padding to the left of the box and padding then within the text box itself resulting in misaligned controls / fields on a form.
Resolution
This issue will be resolved in a future release.
Workaround:
Inject the following script into the form:
1- Add a data label control and check 'Literal' property
2- Add the following as an expression on the data lable:
andltscript type="text/javascript"andgt
$(document).ready(function()
{
$(".runtime-content .SourceCode-Forms-Controls-Web-ControlPack-AutoComplete").css("margin-left", "-3px")
})
andlt/scriptandgt