Re: Applying JavaScript and CSS on f:select

2021-05-12 Thread Daniel Akua
It's not just CSS, it's JavaScript as well. the element ignores it. If i add id to f:select, it is removed in the html. if i use the auto generated name (_.XYZ) i can find the element and apply the changes but then i lose the binding. I need to find a way to have both the binding and the pretty

Blue Ocean/Pipeline Graph Display

2021-05-12 Thread Bryan Stopp
What's the right way for a *Step/StepExecution* to provide custom content to display on the Blue Ocean dashboard? Is it just logging information out to the TaskListener log? Does that display each *println* in its own collapsible row, or will all Step's logging be written to one collapsible vi

Re: Applying JavaScript and CSS on f:select

2021-05-12 Thread Tim Jacomb
Why can't you apply CSS to it? Are you missing attributes? Do you need to change the markup? Better to avoid forking core widgets if you can as then plugins get out of sync when we make changes in core, and it was a real pain when we did the form modernisation work, and any plugins that fork the

Re: Applying JavaScript and CSS on f:select

2021-05-12 Thread Ullrich Hafner
They only way I see is to copy the select.jelly (https://github.com/jenkinsci/jenkins/tree/master/core/src/main/resources/lib/form ) into your plugin and try to rewrite it so that it works with your JS and CSS.

Re: Applying JavaScript and CSS on f:select

2021-05-12 Thread Daniel Akua
I am using this element in a "build environment" step in the configuration page. And I must use the f:select because i need the binding. On Tuesday, May 11, 2021 at 10:48:59 PM UTC+3 ullrich...@gmail.com wrote: > Where do you want to use the element? In one of your views? Or in a job > configur