문제

Is there a way to shorten a form field? Here is an example of what I have:

form field example

These are text fields that will have a maximum of 6 characters in each box. I want to make them smaller so they don't stretch across the page and take up room.

도움이 되었습니까?

해결책

All the textboxes have a css class ms-long and this class has a width property fixed to 386px. If you want to update the css for specific textboxes you can write JavaScript/jQuery.

Example:

$("input[id^=CustomTextBox]").removeClass("ms-long").css("width","50px")

The CustomTextBox is my field name.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top