field width edit not working

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
vintoICT
User
Posts: 408

field width edit not working

Post by vintoICT »

Field Width edit not working . I want to change the width of a select column . its too wide. so i input 10 in the width box on field setup . Others work excep the select fields . How do i fix this pls

I need this to work on grid edit


arbei
User
Posts: 9388

Post by arbei »

vintoICT wrote:

so i input 10 in the width box on field setup

If you enter "10", it means 10px. Read Field Setup -> List Page -> Width in the help file for more information.


vintoICT
User
Posts: 408

Post by vintoICT »

I understand. But no matter what i put the select field width does not change on edit and grid edit .

class="select2-selection__rendered" is what is saw when i inspect in chrome


arbei
User
Posts: 9388

Post by arbei »

vintoICT wrote:

class="select2-selection__rendered" is what is saw when i inspect in chrome

That is not related to the "width" setting (which set the field column width in the List page) under Field Setup page. If you want to control the width of class="select2-selection__rendered", simply add your CSS under HTML -> Styles -> User, e.g.

.select2-selection__rendered {
/* your CSS styles */
min-width: ...;
max-width: ...;
}

Post Reply