Field Caption

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
aspmaker_fan
User
Posts: 46

Field Caption

Post by aspmaker_fan »

Hi,

How can we fix the field captions to a specific size just like the field size (by default is 30)? So that it looks better and aligned to rows and columns when we setup custom input templates? the caption should align the left as well?

kind regards
Zam


MichaelG
User
Posts: 1123

Post by MichaelG »

You can add custom css to control the column width (HTML -> Styles -> User). For example:

th[data-name="FieldName"] {
min-width: ...;
max-width: ...;
}

Please note that if you have too many fields in the list page that overflow the page width, the field width may still be controlled by the browser.


aspmaker_fan
User
Posts: 46

Post by aspmaker_fan »

Thanks Michael, but how do we do with the Add/Edit Pages which has multiple input fields per row?

kind regards
Zam


MichaelG
User
Posts: 1123

Post by MichaelG »

For add/edit pages, you can enable Tools -> Advanced Settings -> Use tabular form for desktop.


Post Reply