Jump to content

mhmda

uniGUI Subscriber
  • Posts

    1141
  • Joined

  • Last visited

  • Days Won

    157

Everything posted by mhmda

  1. Grid? Editbox?....
  2. Hi there, I check the file type and in some cases I need to delete the copied file but it uses by the unigui app. mFileUpload.TargetFolder := ServerModule.StartPath+'compsdata\'; ..... procedure TfrmAttachFiles.mFileUploadCompleted(Sender: TObject; .... DestName:=ExtractFileName(AStream.FileName); CopyFile(PChar(AStream.FileName), PChar(DestName), False); .... deletefile(ServerModule.StartPath+'compsdata\'+DestName);//file is used by other process (unigui app in this case) Any idea?
  3. The Front-End is Extjs, which creating element in DOM, there is no static html, your page is SAP (single application page), the framework has it's own layout engine to be cross-device, I don't see any need to use bootstrap.
  4. For the menu use panels with hbox layout, and for main window use also panel and load Frames inside it.
  5. Hi, I udated to last version "1.90.0.1496" and number of sessions is increasing all the time even when I close browser or reload page.
  6. Have you tried to do it using your own scripting (Delphi)? If I may ask for what purpose you need to do that? If I have spare time I would try to make an example :-)
  7. I use Frames with .svg icons, most of the work done in client side, and applying DDproxy for drag drop functionality.
  8. You can use js to do that or you can use a jQuery plug-ins.
  9. Any recommended solution for that? Thanx
  10. I think it depends on the query itself: join, calculation, sub select etc. Extjs itself uses buffering in client-side like Android when using a listview. You can try to measure executing time for your query.
  11. http://prime.fmsoft.net/demo/desktop/mdemo65.dll
  12. I need to print html text (unihtmlmemo) into FastReport. Has anyone done this before? The AllowHTML in fastreport isn't a solution, I need to print also bullets.
  13. https://en.delphipraxis.net/topic/711-rtl-patch-to-speedup-350-server-app-tested-on-i7-quad-core/
  14. I managed to solve it, in case someone need it: function celldblclick(sender, td, cellIndex, record, tr, rowIndex, e, eOpts) { var el=e.target.parentElement; if($(el).hasClass("x-grid-td")&&!$(el).hasClass("x-grid-cell-special")) { sender.up('window').mask('loading...'); ajaxRequest(sender.up('window'),'grdDblClick',['indx='+record.get('1')]); } }
  15. Nothing special, Just enable check select and that's it :-)
  16. How can I disable double click on these areas?
×
×
  • Create New...