Jump to content

9223000

Members
  • Posts

    9
  • Joined

  • Last visited

Posts posted by 9223000

  1. Hello!
    How to activate cell editing in UniBGrid?
     
    The cell is activated for editing if the user "Press Enter" or "mouse left button double clicks"
     
    How can one of these events be implemented programmatically, after WebFocus on UniDBGrid?
     
    I'm trying to do this:

     

    procedure TMainForm.UniBitBtn1Click(Sender: TObject);
    begin
      with UniMainModule.FDQ_regProjectSheets do
      begin
        Append;
          FieldByName('regProject_ID').Value := ParamByName('iProjectID').AsInteger;
          FieldByName('NameShort').Value := 'New products list';
        Post;
      end;
      UniDBGrid_ProjectSheets.WebFocus;
      UniSession.AddJS('$("#'+UniDBGrid_ProjectSheets.JSName+'"'+').dblclick();');
    // UniSession.AddJS('$("#'+UniDBGrid_ProjectSheets.JSName+'"'+').trigger(jQuery.Event("keypress", {which: 13}));');
    end;
     
  2. Please comment why UniScreenMask does not work

     

    So on the form UniLoginForm posted:

    1) UniButton:

    .OnClick: Sleep (3000)

     

    2) UniScreenMask:

    .AttachedControl: UniButton

    .TargetControl: UniLoginForm

     

    When the user presses the UniButton button, the OnClick event appears, and UniScreenMask executes correctly.

    If you call the method from the code like this: UniButton.Click; , then UniScreenMask does not work. Is this a bug?

  3. Hello, community!

    I'm in web development very poorly understand, ask for your help and advice.

    Actually I can not figure out how to use the web components. Example jQuery clear. However, how to use the components HTML5. I'm trying to use TUniHTMLFrame, but by analogy with both jQuery can not achieve a result. Can anyone be kind enough to make an example of use the components "HTML Canvas Guages" https://github.com/Mikhus/canvas-gauges

×
×
  • Create New...