Jump to content

freedowsRoO

Members
  • Posts

    188
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by freedowsRoO

  1. Just click, wait the download finish and click again and reapeat. In the first time that you click the application will send 1 file to save, the second time the application will send two, the third time three and etc...
  2. I managed to reproduce the problem. The problem is when i call the html2canvas function but i don´t know how to fix it. To reproduce the problem, just click to 'send file' button more than one time. SendFile.rar
  3. Thanks for reply but i have only one ajaxevent. The server trigger the unissession.sendfile many times..
  4. Try this newPanel.ClientEvents.UniEvents.Add('beforeInit=function beforeInit(sender, config){sender.cls="YOURCSS CLASS";}')
  5. Sorry, i did not manage to reproduce them. The error occurs only in my application, i made a video to try to explain better. Note in the video that the application stops at breakpoint only once, but on the client appears to save the file many times. Video_1590223862_Trim.wmv
  6. Hello! How can i have sure that ajaxEvent finish the execution? I need to use a function after the ajaxEvent are processed. I'm triyng to use 'UniSession.SendFile()' in the event ajaxEvent but the application send more than one file to the client side, The first time that i click the button the application send 1 file per time, if i click the second time the application send 2 files and so on.... Is difficult to explain....
  7. How i do that? I save just de base64 string in my database and after that i decode de base64 string to get the img.
  8. Look at the image, the float panel supossed to be over the normal panel. Float panel Align = AlRight Normal panel layout = Vbox and width/height = 100%
  9. I tried to use Align = alRight but when the Floating propertie = TRUE did not work.
  10. I set the propertie 'floating' of TUniPanel with True and need to align the panel like the propertie "Alig" to "AlRight". I made a CSS with "float: Right" but did not work.
  11. Hi there! How can i align the panel on left or Right of the screen when the propertie 'floating' are activated?
  12. Hello, any ideia about this? How can i retrieve a variable in server side from this code? For example, if i want to get the 'uri' on server side, how i can do that? 2. MainForm.Script: function canvasSaveAs(uri, filename) { var link = document.createElement('a'); if (typeof link.download === 'string') { link.href = uri; link.download = filename; document.body.appendChild(link); link.click(); document.body.removeChild(link); } else { window.open(uri); } }
  13. Hello! You did an amazing work dude!!!! Thanks!! I have a little question, can you post some example of the solid gauge to us? Thanks a lot!
  14. Sure, here is it. Version: 1.90.0.1496 syntaxEdit.rar
  15. Hello! How are you?? The TUniSyntaxEdit has a bug that the layouconfig.width = 100% doesn't work.... I also tried to set the aligment = AlClient and doesn't work. Can you check this please?
  16. Hello! Are you used idSMT to send the email?
  17. It work's! Thank you so much, again....
  18. The <script> tag need's to below the DIV and UNIGUI put the tag after the <HEAD> tag.
  19. Thanks sherzod but not work yet. My CustomFiles: https://cdn.quilljs.com/1.3.6/quill.snow.css files/style.css My HTML: <div id="editor-container"> </div> <script src='https://cdn.quilljs.com/1.3.6/quill.js'></script> <script src="files/script.js"></script> My unigui test project: EmailBI.rar
  20. Hello! I am trying to use a text editor in my application but I am not getting it, i don't know what the best place to declare the scripts because they need to be before my DIV. My HTML code is this: <!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <link rel='stylesheet' href='https://cdn.quilljs.com/1.3.6/quill.snow.css'> <link rel="stylesheet" href="./style.css"> <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js'></script> </head> <body> <div id="editor-container"> </div> <script src='https://cdn.quilljs.com/1.3.6/quill.js'></script> <script src="./script.js"></script> </body> </html> I need to make the HTML above works in UNIGUI, I'm putting the following lines inside: ServerModule> Custom Files <link rel='stylesheet' href='https://cdn.quilljs.com/1.3.6/quill.snow.css'> files/style.css And the following lines inside: HTMLFrame > HTML <div id="editor-container"> </div> <script src='https://cdn.quilljs.com/1.3.6/quill.js'></script> <script src="files/script.js"></script> I'm trying a lot of things and nothing works. I guess the problem is in the HTMLFrame because when i look the code by pressing F12 the scripts: <script src='https://cdn.quilljs.com/1.3.6/quill.js'></script> <script src="files/script.js"></script> Doesn't appears in the code. Thanks in advance. The HTML project with the editor: .editor.rar
×
×
  • Create New...