I’ve been using the method below to get custom field values from Project Files. I have recently discovered this does not give me the actual text of a field in the case of lookup fields. In this case, I get a value returned which is the presumably the id# of the lookup value. Can you tell me what I am doing wrong?
public static string GetExtendedAttribute(this Task tsk, string Alias)
{
foreach (ExtendedAttribute ea in tsk.ExtendedAttribute)
{
if (ea.AttributeDefinition.Alias != null && ea.AttributeDefinition.Alias == Alias)
{
return ea.Value;
}
}
return “”;
}
Hi,
Hi,
This is awesome. Works exactly as expected now.
Thanks for the quick response!
The issues you have found earlier (filed as 20859) have been fixed in this update.
This message was posted using Notification2Forum from Downloads module by aspose.notifier.
The issues you have found earlier (filed as ) have been fixed in this Aspose.Words for JasperReports 18.3 update.