Jump to content

mazluta

uniGUI Subscriber
  • Posts

    118
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by mazluta

  1. i use css file to ajust what i need. but i think you should add some property to eliminate those needs
  2. suppose i want to add special filter or select form execute directly from the dblookupcombobox, i have to manipulate the components the + button will help the user to add new record (special for will be open) the ... button will open special form that will help user to select one or more records from the tables (this help if you have Document type with 200 + records and so on) this behavior exists in Delphi EhLib components, EhLib have EXTRA "buttons" property and for each button you can add icon and event
  3. can you add some extra property of the image itself: like : width, height, center, middle.... let say i want height : 80% and Width=Auto. now, i have to connect CSS CLASS and do all that outside of the components
  4. no, for all of them. why should i mange all those buttons. give me some property and the components will do the job.
  5. FMSOFT where is the documentation of all that stuf...
  6. that good. with UnimImage1.JSInterface do JSConfig('cls', ['borderImg']); so sherzod where can i find documentation of this JSInterface ...
  7. thank to all and thanks to Flávio i will see the vidow and then decide.
  8. how do i connect the css class to the img itself and not to the image frame instead of the img it put it in the DIV (image frame)
  9. i come across RadCORE. what does it help us (developers) what is it for? Has anybody tried it? test it? any conclusion?
  10. is it possible to set on : PDFFrame, UrlFRAME uniMage the poropertys - disable right-click, disable download, disable open file disable print, disable open new file disable CTRL-A disable CTRL-C in one big property - Options
  11. it looks that TUniPDFFrame viewers have two viewers. one for searchable PDF and one for Image PDF. when I add: UniSession.AddJS (PDFView.JSName + '.iframe.contentWindow.document.getElementById("download").style.display = "none"'); UniSession.AddJS (PDFView.JSName + '.iframe.contentWindow.document.getElementById("print").style.display = "none"'); UniSession.AddJS (PDFView.JSName + '.iframe.contentWindow.document.getElementById("openFile").style.display = "none"'); to procedure TViewerFrm.PDFViewFrameLoaded(Sender: TObject); it works only for searchable PDFs, even if they have the same id Name
  12. if you want to fail - use intraweb - full of bugs all over. even in their demos. if you want to write stabel app use uniGui I'm 30 years developer in Delphi - just move to the web. never see a framework with so many bugs like intraWeb and I talk from experience. their panel is not working well, their Grid don't give you base property, the client refresh very bad.
  13. there is PDFViewer in FmSoft\uniGUI\uni-1.90.0.1551\pdf.js there in viewer.js there is function function noContextMenuHandler(evt) { evt.preventDefault(); } can i override this function just on my VIEWER form to change to function noContextMenuHandler(evt) { evt.stopPropagation(); } by some inner code in FormCreate, Active Or After PdfLoaded ?
  14. Hi Sherzod where can i find documentation about sender.getEl().dom.addEventListener('mousedown', function(e) { e.stopPropagation(); }) what is sender - the object owen the evennts? how can i use it inside ext evenet - like mouse down. what is geEL() is dom is not the ALL "page document" where the "e" came from ? addEventListener - where can i find list of all the functions? i treid stop the mousedown event of UniPDFFrame - no success
  15. so now - how can i check if there is titlebar in the frame? what the way to check the DOM or Document
  16. ok. on form create the toolbar is not implemented yet, so that why it fail If PdfLoad Then // PdfLoad is true - after load the file to PdfURL begin UniSession.AddJS (UniPDFFrame1.JSName + '.iframe.contentWindow.document.getElementById("download").style.display = "none"'); UniSession.AddJS (UniPDFFrame1.JSName + '.iframe.contentWindow.document.getElementById("print").style.display = "none"'); UniSession.AddJS (UniPDFFrame1.JSName + '.iframe.contentWindow.document.getElementById("openFile").style.display = "none"'); end;
  17. well Frederick, did you get any HELP? Do you have any idea where to start? i just bought uniGui and was in Delphi desktop for 30 years. now i'm doing my steps in Delphi for the Web....
  18. Where can I find good documentation for Client event, ExtEvent, UniEvent? include an explanation, examples, little app that the connection between Delphi obj and the ExtJS function?
×
×
  • Create New...