Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/13/19 in all areas

  1. Hi, I would like to launch an idea. We have been developing a CRM-platform based on Unigui. As we have been lacking a number of components that are provided standard by Unigui we (me and a friend here on the Unigui forums) started to develop wrappers for SyncFusion components. The SyncFusion components can be used freely by any company that meets some limitations (https://www.syncfusion.com/products/communitylicense). I would strongly suggest to create a task force to create wrappers for these components. I had several wrappers created, including the scheduler, authentication with Google, Microsoft, dropbox integration, OneDrive integration, drag and drop upload, ... I think it would be great to create a library with a number of components that can be used easily from Unigui. It is my personal oppinion that people would be willing to pay for such a library. I had several components created but a library with several developers working on this would be great. Let's say the biggest components would be supported, I would be more than willing to pay a fee of 800 - 900 USD for this. I currently pay over 1.000 USD for DevExpress each year. Let me know if there would be an interest in this. Thx, Dominique
    2 points
  2. OMG it's work perctly!! Thanks a lot!! You are the best!
    1 point
  3. Hi, Can you try these steps? 1. CustomFiles: files/html2canvas.min.js 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); } } 3. How to use, for example: procedure TMainForm.UniButton2Click(Sender: TObject); var fName: string; begin fName := 'capture' + FormatDateTime('ddmmyyyyhhnnss', Now); UniPanel1.JSInterface.JSCode( 'html2canvas(document.querySelector("#'+ UniPanel1.JSId +'")).then(function(canvas) {'+ ' canvasSaveAs(canvas.toDataURL(), "'+ fName +'");'+ '});' ); end;
    1 point
  4. Hi, I will try. I will try using UniPanel as an example.
    1 point
  5. Hi all, I'm trying Vertical DBGrid component... how to set row height and word wrap text into column? how to center image into column? Thanks
    1 point
  6. Starting with Paypal Buttons. http://hayriaslan.net:8090/ DEMO VIDEO : https://webm.red/ZFGO.webm To test payment Generated Credit Card Details Card Type: Visa Card Number: 4597443260919173 Expiration Date: 01/2022 CVV: 200 To get values you can use UniOSPaypalButtons1.ResultList.Values['purchase_units.shipping.name.full_name'] ***NOTES*** https://developer.paypal.com/docs/checkout/integrate/ - Add https://www.paypal.com/sdk/js?client-id=YOUR_CLIENT_ID to Servermodule.CustomFiles. - Set ClientID and SecretKey properties of component UniGUIOpenSource.zip
    1 point
×
×
  • Create New...