Jump to content

FunnyBlue

uniGUI Subscriber
  • Posts

    14
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by FunnyBlue

  1. Dear friends,

     

    what is the best charting solution for UniGui.

     

    I have used UniChart within one of my UniGui projects.

     

    But, I have seen different 3rd party JS based charting solutions exists which integrated with UniGui.

    For example, TeeChart, HighCharts, Kendo Charts, eCharts, Google API Charts, etc.

     

    Which one is stable, useful, frequently updated, and compatible with latest UniGui versions?

     

    Regards.

     

    Funny Blue

  2. >>HTML requests passed to current Session

     

    Could you give a sample?

     

    For example, if a unigui app runs on www.mysite.com

    and if I have put this kind of links www.mysite.com/arcid=12345678 into automatically sent emails,

    and then a user clicks this link the unigui app can handle this request?

     

    Regards.

     

    Hur

  3. Dear Farshad,

     

    I am wondering that how do you convert ExtJS classes to Delphi classes/component?

     

    Do you convert them line by line or using an external tool or a tool written by you?

     

    Why I am asking this? Because I need ListView component like in Delphi.

    I have read forum pages, it is requested by someones.

    (I need a DataView or AdvancedDataView component like on Sechna.com)

    But I think that it is not your primary focus.

     

    I know UniGUI is not open source or community driven product.

    But, If converting ExtJS classes to Delphi components takes your time,

    perhaps, forum members may help you, if you have give convertion rules.

     

    Regards.

     

    Hur AKDULGER

    • Upvote 1
  4. I want to write programs using the ISAPI module (only isapi module. i use webbrowser. no exe.)

    I need to use the which database and which component.

     

    I am already using Informix + DbExpress without any problem.

    In theory, you can use all databases and engines with supported by Delphi.

     

    Regards.

     

    Hur

    • Upvote 1
  5. Hi all,

     

    I have read some topics about column sorting is not working when using clicking column title method.

    It works on VCL app mode, but not work on web browser mode, after first clicking.

     

    I solved this problem like this way:

     

    procedure TFListe.UniDBGridListeCDSTitleClick(Column: TUniDBGridColumn);

    begin

    UniMainModule.ListeCDS.DisableControls;

    try

    UniMainModule.ListeCDS.IndexFieldNames:= Column.FieldName;

    UniMainModule.ListeCDS.First;

    Self.UniDBGridListeCDS.Refresh;

    finally

    UniMainModule.ListeCDS.EnableControls;

    end;

    end;

     

    I use ClientDataSet (named ListeCDS in code above) for caching data on server.

     

     

    Regards.

     

    Hur AKDULGER

  6. Main problem with Delphi 7 is Frames. There is no way to implement and install a custom TFrame descendant in Delphi 7.IDE:

     

    Dear Farshad,

     

    I have prepared a customized address info frame which inherited from TFrame by using Delphi 7.

    It contains a lot of DbEdit components on it

    I have compiled it as a design time package and installed it into a IDE component pallette.

     

    So, I can drop my address frame as component onto my forms.

     

    This not directly related with UniGUI.

    I have used standard components and frames.

    But, it may give us somes clues.

     

    Regards.

     

    Hur

  7. Man, it would be great if you could send me the sample code, just to place. Thanks

     

    Hi Anders, and Flavio.

     

    I cannot find anything on QuSoft's web site.

    Could you give me an example and link to QuSoft's web site.

     

    Thanx.

     

    Hur

×
×
  • Create New...