Jump to content

Farshad Mohajeri

Administrators
  • Posts

    12114
  • Joined

  • Last visited

  • Days Won

    805

Everything posted by Farshad Mohajeri

  1. I failed to see any correlation between your problem and uniGUI.
  2. Apart from uniGui, how one will retrieve that info in a standard html app?
  3. Is that text box something you insert in HTML code? Show me the code you put in uniHTMLFrame
  4. Are you building packages for C++ builder?
  5. does this file "\unigui\hpp_fix.exe" exist?
  6. Yes, it is planned but I'm not sure about the target version.
  7. Issue logged #1282 Workaround: Assign a dummy OnExit event to all Edit fields in both forms.
  8. This should work well. That said, I'll add callback support for Show and ShowModal in next versions.
  9. Personally I don't see much demand for it.
  10. As Zilav said, uniGUI will only supports functionality that is already implemented in Ext JS. Sometimes we may extend and improve some of the Ext JS components but it is limited. Does Ext JS 3 or 4 support this feature? As far as I know Ext JS 3 doesnt.
  11. No. Currently only TUniImage allows using a URL for image path.
  12. Any complex structure like objects and arrays must be converted to proper string notation before they are sent to server. JS converts arrays to string using a,b,c,... notation. Objects must be converted manually.
  13. Not yet. I'll inform you when I test it.
  14. This is not a normal error. DesignIde is a Delphi package.
  15. Version 0.89.0 is under development. It will be announced in beta forums.
  16. OK. Please send a test case which can reproduce the issue.
  17. procedure TMainForm.UniButton2Click(Sender: TObject); begin uniForm2.Refresh; uniEdit1.Text:=uniForm2.UniEdit1.Text; uniEdit2.Text:=uniForm2.UniEdit2.Text; end; If UniForm2->FreeOnClose is True and UniForm2 is closed above code will not work correctly.
  18. Why do you call this? uniForm2.Refresh; Refresh has no equivalent functionality in web mode. procedure TMainForm.UniButton2Click(Sender: TObject); begin uniForm2.Refresh; uniEdit1.Text:=uniForm2.UniEdit1.Text; uniEdit2.Text:=uniForm2.UniEdit2.Text; end; Above code will not work if UniForm2 has been closed unless UniForm2.FreeOnClose is False.
  19. UniDBGrid->Columns->Column[x]->Editor
  20. There is no need for a special technique. Just assign them as you'd do in a regular Delphi app. UniForm1.Edit1.Text:=UniForm2.Edit2.Text; PS: Both forms must be valid instances at time of assignment.
  21. There several ways to create a project in uniGUI. Your project is created in one of following ways: 1) Standalone exe In this case project can't be directly converted to a DLL. You must create a blank ISAPI Module or Standalone ISAPI Combo project and manually move all your forms and modules to new project. 2) Standalone + ISAPI Module Combo project Open the project file and comment the first line: {$define UNIGUI_VCL} // Comment out this line to turn this project into an ISAPI module Rebuild your project and a DLL file will be created in output directory.
  22. OS X is not much popular in server business. uniGUI servers needs a 24/7 server which can be found in form of VPS or private servers. Not sure if there are any OS X hosting company around. I see little value in supporting OS X as server, as there will be a tiny demand for it. I'm waiting the day Delphi will support Linux OS which is widely available.
×
×
  • Create New...