Jump to content

Alain Debande

uniGUI Subscriber
  • Posts

    10
  • Joined

  • Last visited

Posts posted by Alain Debande

  1. How could I give a specific column.picklist by row ?

    Other question : how to disable a cell of unidbgrid on runtime?

     

    procedure TMainForm.UniDBGrid1DrawColumnCell(Sender: TObject; ACol,
      ARow: Integer; Column: TUniDBGridColumn; Attribs: TUniCellAttribs);
    begin
      if ACol = 1 then
      begin
        Attribs.Style.Cls:= 'myShadowStyle';// style is defined in file "files/mycss.css" ;
      end
      else if ACol = 2 then
      begin
        Attribs.Style.Padding := '0px';    // force image to fit in the cell
      end
      else if ACol = 3 then
      begin
        column.PickList.Clear;
        if Arow = 1 then
        begin
          column.PickList.Add('1');
          column.PickList.Add('2');
        end
        else if Arow = 2 then
        begin
          column.PickList.Add('3');
          column.PickList.Add('4');
        end;
      end
    end;

     

    Thanks very much for your response.

  2. So I have some applications developed with intraweb.

    https://drive.google.com/file/d/1fF2UKTvOv_bGGFvsLRDktHAdmiWxlyeT/view?usp=sharing

    https://drive.google.com/file/d/1YkcXMQJZgZeBuNHbXztJ3HTMQbTo9e16/view?usp=sharing

    These application-services are on a server and some clients ask the page like this http://srvInterFacBL:8801/$/start?fournisseur=F0000747&facture=7100282838 or http://srvFA:8890/$/start?docid=710.

    My question with uniGUI :

    • on client side the application need anything ?
    • on server side the application need a runtime package, anything else?
    • on client side the user need to view a pdf file, this pdf is on server when the page of the application need to be refresh, do you think that the pdf needs also to be reloaded on client ?

     

    Thanks for your response.

  3. So I have some applications developed with intraweb.

    https://drive.google.com/file/d/1fF2UKTvOv_bGGFvsLRDktHAdmiWxlyeT/view?usp=sharing

    https://drive.google.com/file/d/1YkcXMQJZgZeBuNHbXztJ3HTMQbTo9e16/view?usp=sharing

    These application-services are on a server and some clients ask the page like this http://srvInterFacBL:8801/$/start?fournisseur=F0000747&facture=7100282838 or http://srvFA:8890/$/start?docid=710.

    My question with uniGUI :

    • on client side the application need anything ?
    • on server side the application need a runtime package, anything else?
    • on client side the user need to view a pdf file, this pdf is on server when the page of the application need to be refresh, do you think that the pdf needs also to be reloaded on client ?

     

    Thanks for your response.

×
×
  • Create New...