skafinski Posted March 30, 2022 Posted March 30, 2022 Hi, Is it possible to create invisible UniFileUploadButton? What I want is just an overlay above any component that if you drop file there it just uploads. Now there is TUniFileButtonUpload where if you disable button look it is still dotted lines around him. Also I would like to be able to disable click on it. Would I be able to click whatever is under him if you disable click? Maybe you can make any component event that acts as a drag&Drop for files...
Sherzod Posted March 30, 2022 Posted March 30, 2022 Hello, First of all, can you please specify which edition and build of UniGUI are you using?
Sherzod Posted March 30, 2022 Posted March 30, 2022 4 minutes ago, skafy said: It is 1.9.0.1556 Okay. This demo may help you !? \Framework\uniGUI\Demos\Desktop\FileUpload - DragDrop
skafy Posted March 30, 2022 Posted March 30, 2022 Yes I already looked at this demo. Have you read initial post? I would like INVISIBLE button that acts (now if you disable buttony look, there is still dotty outline.). Or make all unigui component able to take dropped attachment
Sherzod Posted March 30, 2022 Posted March 30, 2022 1 hour ago, skafy said: Have you read initial post? Yes.. 1 hour ago, skafy said: I would like INVISIBLE button that acts (now if you disable buttony look, there is still dotty outline.) I couldn't reproduce. Simple testcase?
Sherzod Posted March 30, 2022 Posted March 30, 2022 14 minutes ago, skafy said: I would like to remove dots on borders 1. procedure TMainForm.UniFormCreate(Sender: TObject); begin UniFileUploadButton1.JSInterface.JSConfig('cls', ['customFUpload']); end; 2. CustomCSS: .customFUpload .x-file-area { border: none; opacity: 0.5; }
skafy Posted March 30, 2022 Posted March 30, 2022 Thank you.. That worked like charm... One more thing.. Is it possible to modify caption font size caption multiline (now it only write in one line) Thank you for your replays!
Sherzod Posted March 30, 2022 Posted March 30, 2022 19 minutes ago, skafy said: caption font size .customFUpload .x-btn-inner { font-size: 10px; color: green !important; } 19 minutes ago, skafy said: caption multiline (now it only write in one line) Using <br> Caption := 'Please drop file(s) or click here<br>second line';
Recommended Posts