How can we call a UI macro through client script?

swapsnil
Kilo Contributor


I have to call a GlideWIndow through onChange().

How is this possible? Any idea?

1 ACCEPTED SOLUTION

Fathah
Giga Contributor

You can call the macro function from CS.



Macro:


<script>


function a()


{}


</script>



Client script:




you have to call that a function from CS


a();


View solution in original post

2 REPLIES 2

Fathah
Giga Contributor

You can call the macro function from CS.



Macro:


<script>


function a()


{}


</script>



Client script:




you have to call that a function from CS


a();


Fathah
Giga Contributor

I would appreciate if you can mark my answer as correct if it resolves your issue.



Thanks,


Fathah.