Is there a way to format the buttons created by KTL? #221
-
I'm using the _click keyword to create a button that will "Acknowledge All" entries shown in a grid, by sequentially pressing the Acknowledge action button on each row. I have this Acknowledge button in a red colour, so its clear to the user that it has some level of 'danger' about it. Ideally, I would like the KTL-created Acknowledge All button to be in the same shade of red, and even more ideally located above the action button column it is sequentially pressing. Is there any way (in KTL or in CSS) to modify the attributes of this KTL-created button? (Apologies if this is a numpty question, but I'm not a developer) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Ok, after some fiddling around I have worked out how to target that specific button only using the _style keyword and have modified the colors to match the action buttons in the grid, but I have not been able to work out how to change its position on the page so that it sits on the right border (i.e. above the action buttons) instead of the left border. Any suggestion welcomed. |
Beta Was this translation helpful? Give feedback.
-
OK, worked it out - added position: absolute; right: 0; z-index: 100; to the _style statement. This is exactly how I wanted it, so another happy customer! :) |
Beta Was this translation helpful? Give feedback.
OK, worked it out - added position: absolute; right: 0; z-index: 100; to the _style statement. This is exactly how I wanted it, so another happy customer! :)