I have a property in my custom activity that accepts a Laserfiche folder path. In the Activity Proxy Generator I selected the "Support browsing to a Laserfiche folder" option for this property. The attribute is present in the proxy class file:
[DisplayNameAttribute("Destination Path")]
[SortIndexAttribute(11)]
[TextboxWithFolderBrowserAttribute(true, CustomTokenType.DefaultExcludedFromMenus, CustomTokenType.None, 1, 32767)]
public string DestinationPath
{
get
{
return this.destinationPath;
}
set
{
if (this.destinationPath != value)
{
string old = this.destinationPath;
this.destinationPath = value;
this.OnPropertyChanged(DestinationPathPropertyName, old, value);
}
}
}
But the button is disabled:
Any suggestions? Thanks!