0 votes
1.7k views
in Coach Views by (21.6k 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 593 views
0 votes
0 answers 2.7k views
0 votes
1 answer 1.2k views
0 votes
0 answers 747 views
0 votes
0 answers 820 views
0 votes
1 answer 557 views
0 votes
1 answer 911 views
0 votes
2 answers 886 views
0 votes
0 answers 318 views

635 questions

495 answers

98 comments

2.9k 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
...