Git Product home page Git Product logo

Comments (10)

mingworld avatar mingworld commented on May 23, 2024

I got it working! I also need to use this variable on this line in ESignatureHelper.js
var wrapper = document.getElementById(cmp.get('v.signatureWrapperID'))

from lightning-esignature.

david-onehub-dev avatar david-onehub-dev commented on May 23, 2024

from lightning-esignature.

david-onehub-dev avatar david-onehub-dev commented on May 23, 2024

from lightning-esignature.

mingworld avatar mingworld commented on May 23, 2024

Hi David,
Thanks for your help.
I tested and it works only if I put all 3 esignature components inside the same lightning component.

My application has one parent LC and multiple children LC. I have a requirement to have 3 esignature on 3 different children LC (i.e. one esignature per child LC).

Can please help?

Thanks

Ming

from lightning-esignature.

mingworld avatar mingworld commented on May 23, 2024

Hi David,

I think I found the issue.
My App has one parent LC with many children LC. It is a step by step wizard.
So when parent LC loaded, It only shows the first child LC and hides the reset child LCs. When a user clicks next button, it hides current child LC and shows next child LC.

The issue is that when e-signatures are loaded on different child LC, it executes "onScriptReady" which set the correct location of the canvas. but my app hides and shows child LCs and it changes the canvas coordinations. I think this is why the first signature works and rest do not.

I put a 'getReady' method on the esignature, and use a button click on the child LC to call this method and this calls onScriptReady
<aura:method name="getReady" action="{!c.onScriptReady}" description="re-init signature"/>

Is there any way to reset the esignaure without a button click?

Thanks

from lightning-esignature.

mingworld avatar mingworld commented on May 23, 2024

Hi David,

I found a solution to my problem. Not sure if this is the best solution.

I add onmouseover="{!c.onMouseOver}">
to <div class="mb-signature-container"
then call h.init(cmp); once.

onMouseOver: function(cmp, evt, h) {
console.log("onMouseOver");
var doneMouseOver = cmp.get("v.mouseOverDone")
console.log(doneMouseOver);
if (doneMouseOver == false) {
cmp.set("v.mouseOverDone", "true");
h.init(cmp);
}

Thanks

from lightning-esignature.

david-onehub-dev avatar david-onehub-dev commented on May 23, 2024

you need to assign different id for esignatrue for different children. each sig has its own document element id. it will not interfere with each other. when saying "hide children', are you using aura:if. it is not hiding, it is just remove hidden component from DOM tree. The real hiding is actually through CSS display: none.

from lightning-esignature.

mingworld avatar mingworld commented on May 23, 2024

Thanks for your reply. I hide these children components through CSS display: none.

from lightning-esignature.

david-onehub-dev avatar david-onehub-dev commented on May 23, 2024

from lightning-esignature.

mingworld avatar mingworld commented on May 23, 2024

Hi David,

Can you show me how please? Thanks.

Ming

from lightning-esignature.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.