I am developing a plugin for JIRA that sets a custom field a iDalko DateGrid type. This custom field has 3 fields inside and one of them is a list type. It refers to another custom field list type with a list of established values string type. I am trying to insert a string of this list, but I am getting a TGEInvalidCallException. Do you know how to set this field??
The Custom Field type DateGrid is Titulo and it has 3 fields:
TipoTitulo is a customField list type with values: "TEST1", "TEST2", "TEST3".
Titulo titulo1 = new Titulo("TEST1", new Date(), "P. Smith");
long issueId = 2345l;
int cfId = 456;
try {
List<Map<String, Object>> valuesToInsert = titulo1.getValuesToInsert();
if (!valuesToInsert.isEmpty()) {
tGEGridTableDataManager.addRows(issueId, cfId, valuesToInsert, adminUser);
}
} catch (Exception e) {
...
}
I am having a TGEInvalidCallException in addRows instruction.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.