Changes

File Upload Size Restriction

66 bytes added, Wednesday at 10:40
/* File Upload Size Restriction */
Previously, when a file exceeded the allowed limit, the system would repeatedly attempt to upload it. Since the upload could never succeed, this resulted in an internal retry loop. The user received no feedback, leaving them confused and unaware of why their changes were not being fully committed.
The new '''FileUploadSizeRestriction ''' mechanism resolves this issue by enforcing a maximum allowed file size before any upload attempt is performed. When a file exceeds this configured limit, the system immediately stops the upload and provides clear user feedback.  
=== User Feedback ===
When an oversized over-sized file is detected:
* The user immediately receives a notification.
* The configured upload limit (MB)
<br>
Example usage:
<source lang="xml">Text="{Binding DocumentViewModel.FileNotUploadedReason}"</source>
 
<br>
==== 2. MaxUploadSizeMB ====
A double representing the maximum allowed file size in megabytes.
This allows UI elements to display helpful contextual information directly—e.g., in dialogs, item details, or editorsdirectly.
Example usage:
133
edits