Skip to main content
Nintex Community Menu Bar
Solved

Remove spaces between Radiobutton List values

  • July 11, 2017
  • 1 reply
  • 5 views

Hi All,

 

is there a way to remove some spaces between the radiobutton list values?

 

13547i8FAC91584BB5E1D7.png

Thanks

Best answer by Albarghouthy

Hi TTN,


 


The display type is set to 'Table', you just need a script to change it to 'Block'.


 


Add a data lable to your view/form and set the following script as an expression:


 


 


<script type="text/javascript">$(document).ready(function(){

$('.stack-container').css({"display": "block"});

});

Hope that helps


 

1 reply

Albarghouthy
Forum|alt.badge.img+16
  • Scholar
  • Answer
  • July 12, 2017

Hi TTN,


 


The display type is set to 'Table', you just need a script to change it to 'Block'.


 


Add a data lable to your view/form and set the following script as an expression:


 


 


<script type="text/javascript">$(document).ready(function(){

$('.stack-container').css({"display": "block"});

});

Hope that helps