Skip to main content

Messages

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

Messages - emezty

1
Issues / Stop the DROPZONE autoupload
Already set
Code: [Select]
 autoProcessQueue: false,
in to false just to auto uploading to server.

What I need is, it will upload, once the form is successfully submitted, I have code in my JS to find the submit button but its not working, any ideas?

Code: [Select]
$('form').submit(function(){
       Dropzone.processQueue();
});

Thanks in Adv
2
Issues / Re: Adding style in page heading does not work
Hi,
I am using PhpRad 2.7.3. I am a newbie. In one of the tutorials, i learnt that we could change or remove the icon in "add" button. When i did that, it did not work. The tutorial is by Twozik  "https://www.youtube.com/watch?v=Fs0D9yRNVnw&t=319s".  The definition is as follows:

<b>Add New Records</b>
<style>
    button i {
        display:none;
    }
</style>

You damn forum does not work either. How do you expect us buy the new RadSytems when your forums and support dont work. When i upload files it says it full. Damn!




Agree, and looks dying, PHPRAD has a potential if they fix they long OVERDUE UNRESOLVED BUGS AND ISSUES!
3
Questions / Re: How to calculate and assign values using ClientEvents
Many thanks Willvin: worked for me, amazing !
My code bellow, as inspiration for others:

$('#ctrl-Pret_unitar_fara_TVA').on('change', function(){
     //initialize variables with fields values
   var pretUnitar = $(this).val(); //current field where event take place
   var Numar_de_luni = $('#ctrl-Numar_de_luni').val(); (pay attention: Database field name is Numar_de_luni)
   var Cantitate = $('#ctrl-Cantitate').val();
   //assignment of calculation to another field   
        $('#ctrl-Valoare_totala_fara_TVA').val(pretUnitar * Numar_de_luni * Cantitate);
});


not working on MODAL, or any idea please? Thanks in advance
7
Issues / Re: Admin must show all record
I see, hope they fix it to make dynamic role do ticking what page need to access per users.
And Administrator role has automatics rights to access all records.

Thanks WIllvin you're a big help.
8
Issues / Re: Admin must show all record
Figure it out  :)) .


Thanks Willvin, my problem is, I created another page for admin, how do I see all records even the record management set, to see record per users?


Thanks in advance
9
Issues / Admin must show all record
I have question regarding this record management thing,

#1
I have set a table with ownership field (for user's to access their own record only), but how can the ADMINISTRATOR can access, all records even it does not belong to him.

Admin has all the rights, to access, to alter, correct if there some need to alter.


Thanks in advance.
-mic