0 votes
1.4k views
in Coach Views by (21.5k points)

1 Answer

+2 votes
by (16.3k points)

There is no need to create a custom coach view for this since its a simple javascript invocation of the window.print() method, you can make a copy of the stock button and change the onclick() as following in the behaviour->view javascript

    button.onclick = function() {
        if (this.disabled == false) {
            var context = _this.context;
            if (context.options.allowMultipleClicks == undefined || !context.options.allowMultipleClicks.get("value")) {
                this.disabled = true;
                domClass.add(this, "BPMButton-disabled");
            }
            if (context.binding) {
                context.binding.set("value", true);
            }
            var _button = this;
            window.print();
            //context.trigger(function() {_button.disabled = false; domClass.remove(_button, "BPMButton-disabled");});

        }
    }

if you need to print certain div in the Coach, you can do that also by defining a div wrapper and passing the specified div to the invocation as specified at the following url

http://stackoverflow.com/questions/16894683/how-to-print-html-content-on-click-of-a-button-but-not-the-page

Related questions

0 votes
0 answers 480 views
0 votes
0 answers 1.5k views
0 votes
1 answer 1.0k views
0 votes
0 answers 597 views
0 votes
0 answers 671 views
0 votes
1 answer 417 views
0 votes
1 answer 765 views
0 votes
2 answers 659 views
0 votes
0 answers 221 views

634 questions

495 answers

97 comments

2.7k users

Join BPM Community Discord Channel

Welcome to BPM Tips Q&A, Community wiki/forum where you can ask questions and receive answers from other IBM BPM experts and members of the community. Users with 2000 points will automatically be promoted to expert level.
Created by Dosvak LLC
Our Youtube Channel
...