Jump to content

Farshad Mohajeri

Administrators
  • Posts

    12126
  • Joined

  • Last visited

  • Days Won

    811

Everything posted by Farshad Mohajeri

  1. Workaround: procedure TUniServerModule.UniGUIServerModuleCreate(Sender: TObject); begin MimeTable.AddMimeType('csv', 'text/plain'); end; I will add this internally in next build.
  2. Two Issues logged: 0001186: Bug when exception is raised in Form.OnShow event 0001185: Bug when exception is raised before created form is shown Temporary workaround: Create forms using below method: frmPredmet:= TfrmPredmet.Create(uniapplication); try . . . frmPredmet.show; . . . except frmPredmet.Free; raise; end;
  3. I think I could reproduce your problem.
  4. I still get error when I start app. '''' is not a valid integer value. Probably because your DB doesn't contain data.
  5. I can't run project with included sql data. Please re-send up to date data.
  6. It depends on 3rd party DB components you use in your project. Also newer Delphi versions can create bigger exe files.
  7. What is Form.Position property? This behavior is normal for Ext JS windows.
  8. function OnAfterCreate(sender) { sender.editable=true; }
  9. It is recommended to upgrade to 0.87.0 which contains ext js 3.4.0 I will also create a runtime deployment package for Ext JS. Logged #1178
  10. I can allow typing in ComboBox field so it will Autocomplete what you type. Logged #1177
  11. You can call server events directly from Ajax events. Do you need something different?
  12. This issue is fixed in build 904.
  13. It is not planned. Fire Monkey is very different from VCL in design and I'm not sure if the end result is worthy of required effort. That said, I have other long term plans for cross OS deployment.
  14. http://forums.unigui.com/index.php?/topic/1249-tips-for-mobile-browsers/
  15. Please always test with most recent build. Current build is 0.87.0.904.
  16. Id of UrlFrame is defined as: "iframe_"+ComponentName for exampe: "iframe_UniURLFrame1"
  17. Both properties are already implemented. What is your UniGUI version?
×
×
  • Create New...