문제

I am already using custom field iterators to customize the fields on my list forms. When users are creating or editing a list item, I want certain field names to show in bold.

For example, when users are creating a new Task item, I want the fields Assigned To and Description to be in bold.

How can I achieve this and I am not interested in using InfoPath for the forms.

도움이 되었습니까?

해결책

You can use jQuery to find the fields and apply css to them with something like:

$("h3[class^='ms-standardheader']:contains('Assigned To')").css("font-weight", "Bold");
$("h3[class^='ms-standardheader']:contains('Description')").css("font-weight", "Bold");
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top