Jump to content

Mehmet Emin

uniGUI Subscriber
  • Posts

    229
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Mehmet Emin

  1. Forum removes my brackets from source code so I am attaching the image
  2. Today I started using TUnimMap instead of TUnimGMap in a project and having similar problems like you (map becomes invisible) only rotating device causes the map to refresh and display. I've been watching this thread.
  3. UniMainModule ExtLocale is already set to a different locale then [Auto] but the dialog is in English. I am making a mistake somewhere. How do you change the locale other than UniServerModule and UniMainModule ExtLocale? Thanks
  4. This is my generated page by uniGUI. Url to correct resource is generated with correct language but it does not help at all. <!DOCTYPE HTML> <html lang="it"> <head> .......... <link rel=stylesheet href="/m/ext-7.0.0/build/modern/theme-material/resources/theme-material-all.css" /> <link rel=stylesheet href="/m/unim-1.90.0.1531/css/uni-ext.css" /> <script src="/m/ext-7.0.0/build/ext-modern-all.js"></script> <script src="/m/ext-7.0.0/build/modern/theme-material/theme-material.js"></script> <script src="/m/uni-1.90.0.1531/ext-unicommon-min.js"></script> <script src="/m/uni-1.90.0.1531/ext-sync-min.js"></script> <script src="/m/ext-7.0.0/build/classic/locale/locale-it.js"></script>
  5. There is an event in servermodule may be it can help you (I have never used it). procedure TUniServerModule.UniGUIServerModuleException( Sender: TUniGUIMainModule; AException: Exception; var Handled: Boolean);
  6. I do like this: procedure TUniServerModule.UniGUIServerModuleBeforeInit(Sender: TObject); ServerRoot := FConfigINI.ServerRoot; // my config settings Then move "unipackages-7.0.0" etc under your new serverroot C:\....\ServerRoot So I don't install unigui runtime, just copy the files under serverroot
  7. Hi, I set both ExtLocale in ServerModule and MainModule to Italian (it) still the mobile app show those message dialogs in English. I am using touch material theme. Do I need to alter any other setting? Thanks in advance
  8. This advice is if you are using FireDAC but should be possible with other libs. To keep minimum database connections at any one time, use "offlining connection" option of FireDAC combined with "connection pooling". This way you open the connection when you require and do your job and put it back to offline mode. These links has the information http://docwiki.embarcadero.com/RADStudio/Rio/en/Offlining_Connection_(FireDAC) http://docwiki.embarcadero.com/RADStudio/Rio/en/Multithreading_(FireDAC) (Connection Pooling) Also check uniGUI docs for proper use of FireDAC components in multi threaded apps.
  9. Comparing uniGUI to TMS web core is compairing apples and oranges. They have only Pascal dialect as common and they target different niches. I am new to uniGUI and only developed two intranet apps with it so far I am very satisfied with the development speed uniGUI offers. I would like to say thank you to the development/support team behind uniGUI for bringing such product to Delphi community.
  10. Hi, I tried to replicate this problem with one of the data bound demos of uniGUI but could not get the error that I see in my project. In my project I have inherited frames with TUniDBGrids on them and instantinate these frames based on menu actions so it is a little different then uniGUI demo I tried. I am sure I have isolated the problem that this happens when I share one datasource between two grids. My current workaround is to copy first dataset to memtable for the second grid. Anyway I will try to build a testcase or isolate that part of the project and send it to you.
  11. Hi, I've two TUniDBGrids on the same frame sharing a single TDataSource/TDataset. When I create this frame, form UI and grids fails to display data (some columns missing, menus not visible etc.) Is it possible to share a single tdataset between two visible TUniDBGrids on the same form/frame? thanks.
×
×
  • Create New...