Uploading Files from Button on Add Form
Is there documentation anywhere about how to add files from a button on an add form much like the Add Attachment on the Constituent Documentation tab? I would like to be able to have that functionality on an Add form that I am creating.
1
Comments
-
Hi Lynne!
This is a great question. Adding a file upload feature isn't difficult, but as you point out, it's not documented on the Blackbaud site.
I created an article with instructions on how to do it, which you can find here.
The short-short version is:
1) Add two fields to your form:
<FormField FieldID="TESTIMAGE" Caption="Test image" DataType="Binary">
<File FileNameFieldID="TESTIMAGEFILENAME"/>
</FormField>
<FormField FieldID="TESTIMAGEFILENAME" Caption="Test image file" Required="true" MaxLength="500" Multiline="false" DataType="String"/>2) Create a UIModel (or refresh it, if you already have one)
3) Modify the HTML file by adding this CSS to the very top:
<style type="text/css">
.filename-input {
background: transparent !important;
border: none !important;
outline: none !important;
padding: 0px 0px 0px 0px !important;
}
</style>and also by changing the image file name field to look like this:
<input id="#MAP#TESTIMAGEFILENAME_value" type="text" class="filename-input"/>I hope this helps!
-J.R. Styons
https://www.styonssoftware.com0 -
Hi again Lynne,
I just wanted to mention that I also created a help article on using file uploads within an edit form.
You can find that article here.
Have a great day!
-J.R. Styons
https://www.styonssoftware.com0 -
Do you have any instruction on retrieving the file from the database using a datalist or listbuilder?
0
Categories
- All Categories
- 6 Blackbaud Community Help
- 210 bbcon®
- 1.4K Blackbaud Altru®
- 395 Blackbaud Award Management™ and Blackbaud Stewardship Management™
- 1.1K Blackbaud CRM™ and Blackbaud Internet Solutions™
- 15 donorCentrics®
- 360 Blackbaud eTapestry®
- 2.5K Blackbaud Financial Edge NXT®
- 649 Blackbaud Grantmaking™
- 567 Blackbaud Education Management Solutions for Higher Education
- 3.2K Blackbaud Education Management Solutions for K-12 Schools
- 937 Blackbaud Luminate Online® and Blackbaud TeamRaiser®
- 84 JustGiving® from Blackbaud®
- 6.5K Blackbaud Raiser's Edge NXT®
- 3.7K SKY Developer
- 247 ResearchPoint™
- 119 Blackbaud Tuition Management™
- 165 Organizational Best Practices
- 239 The Tap (Just for Fun)
- 33 Blackbaud Community Challenges
- 31 PowerUp Challenges
- 3 (Open) PowerUp Challenge: Data Health
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Product Update Briefing
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Standard Reports+
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Email Marketing
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Gift Management
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Event Management
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Home Page
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Standard Reports
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Query
- 784 Community News
- 2.9K Jobs Board
- 53 Blackbaud SKY® Reporting Announcements
- 47 Blackbaud CRM Higher Ed Product Advisory Group (HE PAG)
- 19 Blackbaud CRM Product Advisory Group (BBCRM PAG)


