Max value January 14, 2020, 10:47:53 AM Hi,Its possible put MaxValue field equal to other field in same table?https://docs.radsystems.io/phprad-pages/pages/page-field-properties/add-page-field-properties#maxvalue Quote Selected
Re: Max value Reply #1 – January 14, 2020, 12:21:28 PM @lp_felix no, it is not possible as phprad does not support it. Quote Selected
Re: Max value Reply #2 – January 15, 2020, 10:31:50 AM hi, i used this, to prevent user to add a value bigger than x_value$( "#entregas_p-add-form" ).submit(function( event ) { if ( +$('#ctrl-e1').val() > +$('#ctrl-qt_falta').val() ) { event.preventDefault(); // console.log('el1: ' + $('#ctrl-e1').val()); // console.log('el2: ' + $('#ctrl-qt_falta').val()); alert('A quantidade entregue não pode ser maior que a quantidade por entregar!'); }}); Quote Selected