Variable Currency Widget on Record Producer is way too small

Tobi_01
Tera Contributor

 Hello All, 

 

Im Having a issue with using a Item on a Record Producer.

I am using Type „Custom with Label“ for a variable that should Display the variable currency Widget.
It is displaying it, but just way too small, it is Stored inside a 2 Column container, but just using around 10% of the available Space.

can someone help me with that?

IMG_4392.jpeg

IMG_4393.png

 

1 ACCEPTED SOLUTION

Sandeep Rajput
Tera Patron
Tera Patron

@Tobi_01 I faced the similar issue in the past, Since OOTB Variable Currency widget is read only. You need to make a clone of it and use that clone as a Custom with Label variable on your Record Producer.

 

Also, on your cloned widget, you need to add following CSS in the CSS field.

 

Screenshot 2023-11-10 at 8.57.42 AM.png

input.currency{
  text-align: right; 
  width:auto;
}

Hope this helps.

View solution in original post

10 REPLIES 10

Sandeep Rajput
Tera Patron
Tera Patron

@Tobi_01 I faced the similar issue in the past, Since OOTB Variable Currency widget is read only. You need to make a clone of it and use that clone as a Custom with Label variable on your Record Producer.

 

Also, on your cloned widget, you need to add following CSS in the CSS field.

 

Screenshot 2023-11-10 at 8.57.42 AM.png

input.currency{
  text-align: right; 
  width:auto;
}

Hope this helps.

@Sandeep Rajput @Thank you very much, this is really helping me. The only Problem is that it is still Not as big as other Fields. Do you have a Solution for that as well?

 

 

@Tobi_01 Try adjusting the 

width:'<some value>';

Try adjusting the width property in CSS and see if the size increases.

@Sandeep Rajput unfortunately that did Not work. Im also having trouble with Setting the Field read only.