Here are a couple of hacks I have tried so far until JIRA Agile provides a fix for this issue. All credits here for Jose Garcia who helped me tweak the JIRA standard Kanban Board with javascript plus CSS hacks.
TamperMonkey script
This is our preferred option so far. I have built a Chrome Tampermonkey JIRA Extended Rapidboard plugin. A similar plugin could be tested and released for Firefox GreaseMonkey plugin.Javascript Injector add-on
I started using this at the beginning but it was buggy in chrome for windows (In a MAC it worked kind of OK)- Install Javascript Injector chrome plugin
- Set url as http://your.jira.url/secure/RapidBoard.jspa
- Paste the snippet in “script”:
var clone = $("#ghx-column-header-group").clone(); clone.attr("id", "newHeader").css("background", "#FFF").css("position", "absolute").css("width", "1465px").css("margin-top", "-90px"); $("#ghx-column-header-group").remove(); $("#ghx-rabid").append(clone); $("#ghx-pool").css("width", "1500px"); $("body").removeClass("ghx-scroll-columns").css("overflow-y", "hidden !important"); $("#ghx-work").attr("id", "ghx-work1").css("overflow-x", "scroll").css("overflow-y", "hidden").width("2000px");
- Hit “Inject Now”. You have some options there like unchecking "autorun" or using regex for "url" so most likely you will be able to introduce some more customization for your own needs like when needing something different depending on the specific board.
No comments:
Post a Comment