Im using the combo (bootstrap theme) in conjunction with other bootstrap styling for text input boxes. The text in the text boxes is left padded a few spaces, but the text in the infragistics combo is left aligned up to the edge of the control. How do I add left padding to the text in the dropdown ?
@(Html.Infragistics().ComboFor(model => model.Status).ID("statusCombo").Width("150px") .TextKey("Value") .ValueKey("Key") .DataSource(Url.Action("GetStatusComboDataSource", "Organisation")) .DataBind() .Render())
Hello Mark,
You can apply padding using css to the .ui-igcombo-field.ui-corner-all.
Let me know if I may be of further assistance.
Im using the bootstrap theme and that css doesnt exist in there