QR Code plugin - Forum

Forum Navigation
You need to log in to create posts and topics.

QR Code plugin

I have made a plugin for creating QR code in the VisualNEO web.

You can see it in the attachment.

Uploaded files:
  • You need to login to have access to uploads.
luishp, Vadim and 2 other users have reacted to this post.
luishpVadimCN_IcemanSamuel Vanneste

Hi @asmat,

Thank you very much!
Note that your new plugin is not correctly configured: its internal name is "roundslider" and conflicts with your previous plugin with the same name. It also has just one command "qrgenerate" and your sample is looking for "createQRcode" command.
I think you have published an previous unfinished version.
Regards.

asmat has reacted to this post.
asmat

Hi luishp,

I have fixed that.

CDY@44 has reacted to this post.
CDY@44

Great @asmat!
Now it works perfect :)
Thanks!

@asmat Super!!

I am glad to see the new plugin!

CDY@44 has reacted to this post.
CDY@44

@asmat

estoy probando tu plugin, la idea es que el usuario que lo usa pueda descargar el codigo Qr generado para imprimirlo

Como se le puede anexar un boton que permita la descarga del codigo QR generado

@asmat

El plugin genera el codigo QR en un container, se puede descargar a la PC ese Codigo generado ?

Ya aprovecho y lo dejo como sugerencia para una futura actualizacion del plugin

@Gustavo1973s

See the attachment file. I used dom-to-image plugin for rendering container to image:

BEGINJS
domtoimage.toBlob(document.getElementById('qr1'))
    .then(function (blob) {
        window.saveAs(blob, 'my-node.png');
    });
ENDJS

 

 

Uploaded files:
  • You need to login to have access to uploads.
YASIN has reacted to this post.
YASIN

Hello and shame! I'm so ashamed to be here in this post! I had a technical question from you! Have you found a solution for printing Persian from the table? Shame again @asmat

asmat has reacted to this post.
asmat

Hi, I have already exported Persian neotable as pdf file with this plugin pdf-generator-plugin in mobile.

but in web neoPDF plugin does not work for Persian language, the problem maybe the neoPDF does not support UTF-8 I have tried a little around this issue but still this issue remain unsolvable for me.

Yes that's right ! Unfortunately it does not support Persian language! Please let me know if you reach a conclusion in this regard! Of course I sent a message to your email. thank you ...

@asmat

Thanks for your help, I ask you where the java library should be located? in the same folder where the project is saved? or should it be uploaded to the server


I had not seen that the library had to be added, I already did, but it downloads a black square without the QR code If I can see the generated code in the container If I support myself with the mouse on the container and I download it, it does it perfectly, it only gives an error if I do it through the button with the code that you passed.

Gustavo1973
In any project if you need to add JavaScript file or CSS file you must add it to project>properties>Files/libraries..

The sample that I uploaded here, you do not need to bring any changes to it, it works fine.

 

Uploaded files:
  • You need to login to have access to uploads.