Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/05/22 in all areas

  1. There was few posts about reaplacing standard loading,gif in project: So in CustomCSS: 1) When loading web page image: #loading .loading-indicator { background: url(./files/loading.gif) no-repeat; background-color: white; color: black; font: bold 16px tahoma,arial,helvetica; padding: 5px 10px 10px 50px; margin: 0; text-align: center; height: auto; } 2) For screenmask with loading.gif eg. when connection is lost: .x-mask-overlay { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-image: url(./files/loading.gif) !important; background-repeat: no-repeat !important; background-position: center !important; text-align: center; } Marcin
    1 point
  2. Howdy Marlon, I just found out I can make it work even with child forms if I create the forms only when needed - I can live with this. The bigger issue I have with the TUniFSMultiUpload component is that you hard-coded the ID=UP301 and so I can only have one instance of the control when I am attempting to create a "grid" of required documents and EACH cell is a TUniFSMultiUpload component with an upload of 1 max file. Any chance of changing it soon to allow multiple instances of the component to be used? If you want to see what I am talking about, just drop two copies of the components with each a differnt OnComplete event and you will see that both component instances will go to the SAME event. Thanks in advance, Aggie85
    1 point
  3. Howdy! I have been porting my framework that sits on top of whatever framework I am using (VCL / FMX / UniGui). I have always used forms for my base even for embedded objects (child forms). I am trying to use some UniGui controls like Falcon Components TUniFSMultiUpload. It works fine if I use it on a TUniFrame and embed into into a tabsheet on my Main Form. If I try the same with a TUniForm, it renders but the events of the control don't get fired. I am guessing the difference is some kind of message loop or something. Before I start trying to convert my TUniFormBase class to a TUniFrameBase class in my framework, can someone tell me if there is a way to solve this issue? All the best, Aggie85
    1 point
×
×
  • Create New...