Jump to content

FabioMorcillo

Members
  • Posts

    19
  • Joined

  • Last visited

Posts posted by FabioMorcillo

  1. Hello,

    Thank you so much Sherzod, my boss aproved to buy UniGUI for new application :)

    How can i intercept in custom component TUniEdit OnAjaxEvent ?

    In custom TUniEdit i have ClientEvents -> UniEvents to insert button and when click in this button i need execute some code, but i need implement this code in custom component.

     

    Thank you

  2. Hello :)

     

    procedure TMainForm.UniEdit1AjaxEvent(Sender: TComponent; EventName: string;
      Params: TUniStrings);
    begin
      if EventName = '_search' then
      begin
        ShowMessage(Params.Values['val']);
      end;
    
    end;

    When we click in search button and made this AjaxEvent, this ShowMessage don´t open dialog message in browser ( client-side )

     

    We need when click in this search button, open new TUniForm in browser ( client-side )

     

  3. Hi,

    I have trying UniGUI and create custom UniEdit with button.

    In UniEdit UniEvents set beforeInit ->  lUniEdit.ClientEvents.UniEvents.Values['beforeInit'] :=
    'function beforeInit(sender, config) {

       config.triggers = {

           search: {

               cls: ''fa fa-ellipsis-h'', handler: function() { *** need call public procedure on custom UniEdit here ***  } } } }';

     

    Type

    TCustomUniEdit = class(TUniEdit)

    public

       procedure ButtonClick;

     

    Is possible call ButtonClick in custom component using UniEvents ?

    Thank you,

  4. Hi,

     

    I am trying UniGui.

     

    When we have application with more 100 forms, in desktop version we remove from auto-create and create on demand.

     

    In the UniGUI application, do we need to create Free Form to process on demand or use the Application Form to increase performance and low cost of resources ?

     

    Thank you,

  5. Hi,

     

    I need add new properties to columns in UniDBGrid, i have inherited to new component and change the property columns to new object, but property editor don´t show my new property.

     

    Any here can help me ?

     

    CODE

    https://drive.google.com/file/d/1Tfzc0z4tMwbz_kTjFV8ClhHFfc-iIjy4/view?usp=sharing

    OBJECT INSPECTOR WITH CORRECT TYPE
    https://drive.google.com/file/d/16BCfgVSkhVg0KyxGnkRagU_oGgWgy4Z8/view?usp=sharing

    EDITOR PROPERTY WITH INCORRECT TYPE
    https://drive.google.com/file/d/1dSlHJ6VhU7gXEOZi_pzfFaBLZ9-5fpy2/view?usp=sharing


    Thank you,

  6. Hello,

    I am new trying to use the uniGUI and i have some doubts.

    UniGUI present web interface from Delphi form very good, when we using adoconnection, client side made connection or server side in ISAPI made connection ?

    UniGUI render only Delphi form in web and all processing code is execute in server side ISAPI ?

    Does uniGUI have documentation on how it works ?

    Thank you,

×
×
  • Create New...