Skip to main content

Show Posts

This section allows you to view all Show Posts made by this member. Note that you can only see Show Posts made in areas you currently have access to.

Messages - lp_felix

2
Suggestions / Re: Uploading files suggestions
I want this,
"Possibility to have dynamic folder names on file uploads. Such as by date, by user id/name or next Auto Increment ID of the table."

To have all process files in one folder.

5
Suggestions / Re: timeline / gantt chart
Hi @robertr ,

you can subscribe @willvin patreon, he have a realy nice gannt chart plugin (and one calendar like google calendar), and videos how to implement it on any project.
its almost plug a play..

6
Questions / Re: Max value
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!');
    }
});
9
Suggestions / Re: Full Calendar
i have full calendar working, thanks to willvin!!
works very nice and its super easy to implement!! im super happy to have it working and for willvin support.


11
Suggestions / Barcode / QR scanner
Hi,  another idea, 
Give PHPRad ability to create Barcodes and QR codes.
And like me,  most of us have a smartphone capable to read them PHPRad should have a inbuilt reader also.
It's a nice feature for software and for customers who o have to track products,  deliverys..  This will create a  lot of new possibilities..
Awaiting for your feedback

Tks