change button dimensions

  • 23 October 2019
  • 3 replies
  • 22 views

Badge +8

Is it possible to change the dimentions of a button?

i would like to have circle buttons, and also vertical buttons


3 replies

I think it's impossible to do it using the built-in button in view/forms.

 

The only workaround that i can think of is that you can use data label using html expression of your own custom button.

and check the literal mark on the data label


Badge +8

i ended up using javascript

<script type="text/javascript">$(document).ready(function() {$("[title='Circle Button']").css('background','#bbb').css('border-radius','50%');})</script>

 

cheers

Badge +9

Hi,


 


You should also be able to use an image and a Picture Control, i believe it would also have a "click" function.


This way you can create your 'button' in an image editor, or download from and external source and use it within a Picture Control


 


-Jean

Reply