Questions tagged [trello-powerup]

Trello Power-Ups are powerful independent modules that allow developers to modify the Trello experience while still maintaining member control. Power-Ups represent the ability to enrich the experience of members by modifying and improving their interactions with Boards and Cards.

26 questions
5
votes
1 answer

Setting custom field values on a card with the Trello API

I am trying to use the new Custom Fields methods of the Trello API to set the value of a custom field on a card. I've created a custom field of type number. When I make a GET request for the custom field by it's id, it returns this custom field…
Employee
  • 2,231
  • 3
  • 33
  • 60
4
votes
1 answer

How to access the trello API from within a powerup?

How can I make queries against the trello API from within a powerup? This seems like such an obvious question but it doesn't seem to be covered that I can find. My simple powerup looks like this so far: var boardButtonCallback = function(t){ …
Hamish
  • 579
  • 5
  • 20
1
vote
0 answers

Update field of a power-up from Trello API

I am using Trello's REST API to create cards in my board. I have enabled in my board some power ups, like Star Is there a way to update Star's field from API as well?
yaylitzis
  • 5,354
  • 17
  • 62
  • 107
1
vote
1 answer

Google Script to send GET request to Trello API and import data to Google Sheet

I have a small script to pull information from a Trello API. The script works fine when I've assigned the full URL to a String variable. However, when I pass the params separately, I get an error "unauthorized permission requested". Working…
1
vote
1 answer

Trello to Jira migration and sync up

I have my team Board in TRELLO. I want to Migrate the same to JIRA now. I want them to be in sync at both place. ie if anyone updates any task in TRELLO, it should be updated in JIRA board as well. Is this doable? I checked the only power up…
user3661835
  • 29
  • 1
  • 2
1
vote
1 answer

Trello power-up get the Board's ID on Initialize

Is there a way to get the current ID of the board currently using the power-up? something like this in my client.js var Promise = TrelloPowerUp.Promise; TrelloPowerUp.initialize({ // Start adding handlers for your capabilities here! …
Evan
  • 2,327
  • 5
  • 31
  • 63
1
vote
0 answers

Trello power-up set modal width by percent

Hello there I am currently making a power-up for trello with popup function. I would like to know if it's possible to set the popup modal of trello to percent '75%'. var boardButtonCallback = function(t){ return t.popup({ title: 'Time…
Evan
  • 2,327
  • 5
  • 31
  • 63
1
vote
1 answer

Trello power-up display more than one card-badge

I am new to trello, I would like to know how can I display more than one card-badge when my trello power-up is initialize? the problem here is that only one card-badge is shown. here is my initialize code: TrelloPowerUp.initialize({ …
Evan
  • 2,327
  • 5
  • 31
  • 63
0
votes
0 answers

Trello automation copy card but link original

I created a custom button using Trello's automations that enables me to copy a card from one board to another. However, when this action is performed, I want the new copied card to have a comment or attachment with the link to the original card. Is…
0
votes
0 answers

Cannot retrieve Card URL from Trello PowerUp

i am trying to get the current Card url from my Powerup iframe JS code, but i get "undefined" , when calling t.card().url Please can you check what is wrong with my code? Thanks
HelloWorld
  • 160
  • 2
  • 13
0
votes
0 answers

How can an admin add a private Power-Up to a Trello workspace?

I have developed a Power-Up in a personal Trello workspace, and now it must be implemented in a different, shared workspace where I am not an admin. How can the admin for that other workspace add my Power-Up to it? Given that my Power-Up is not…
Ken Stuart
  • 63
  • 1
  • 6
0
votes
0 answers

How do I to access the t.card(id)? I keep getting an iframe error (per the console)

Sorry for the long post, I've tried to include as much relevant information as possible. I'm trying to display a card's ID in a card-back-section but it isn't working correctly. I can get the card-back-section to display with static text but I…
Jim C
  • 1
  • 2
0
votes
0 answers

Retrieving input form data Trello power-up

I have created a custom power up that requires settings. I use the show-settings capability for this. The settings form is shown successfully: But I don't know how to retrieve data from that form. Getting and setting is for saving en retrieving…
Matt
  • 136
  • 2
  • 17
0
votes
1 answer

Are there any Power-Ups or plugins that support automatically formatting bulleted lists in Trello?

I know Trello supports bulleted lists through markdown language, but I would like to have bulleted lists created similar to how Google Docs or Microsoft Word does it. Are there any solutions out there to automatically format bulleted lists in…
0
votes
0 answers

Use power-up to copy to clipboard on click

I've created a button to take the url of a card and add the relative path to our own url to stop it showing a description when posted to Flock. Right now it shows the spliced url in a popup which we have to manually copy, the functionality we want…
JonHerbert
  • 647
  • 1
  • 8
  • 23
1
2