Jump to content

rlakinski

Members
  • Posts

    12
  • Joined

  • Last visited

Posts posted by rlakinski

  1. I'm using xxx.889 version.

     

    I noticed these kind of behavior:

     

    1. Visible and Enabled properties of top level menu items ( eg: 'File' and 'Theme' in MegaDemo) are not working in web mode.

    For other menu items everything works OK.

     

    2. If I delete the value of the Menu property of the MainForm (in MegaDemo), the whole menu is still visible and functional in web mode.

     

     

    Is this a bug ?

    Thanks

  2. hi,

     

    I've implemented login form with two TuniEdit fields (for username and password) and a TUniButton (for submit button).

     

    I tried to set TuniButton's default property to true, but it seems it is not working in web mode.

    I also tried TUniBitBtn but without success.

     

    How can I set form's default button (which will be functional in web mode)?

     

    Thanks.

  3. Series can't be created at runtime, but you can modify data of an existing Series.

     

     

    Can you at least implement Title property change at runtime ?

    It seems it's not working in web mode (I tried this on TUniLineSeries).

     

    I also need to change series color at runtime.

     

    Thanks,

  4. Hi,

     

    I'm testing TUniChart component and trying to implement multiple series (TUniLineSeries) at runtime.

     

    I tried to set parentChart property but without success. (AV error appears in both modes).

     

    Here is simplified version of my code:

     

    Series := TUniLineSeries.Create(myChart);

    Series.Name := 'S1';

    Series.Title := Series.Name;

    Series.ParentChart := TCustomAxisPanel(myChart); // without casting a compile error is being raised

     

     

    any help?

    Thanks,

  5. I created UNIGUI application with a main form and several frames (TUniFrames).

     

    Is it possible to reference TUniFrame instance with a function (in a similar manner like referencing mainform) ?

     

    ----------------------------------------------

    function MainForm: TMainForm;

    begin

    Result := TMainForm(UniMainModule.GetFormInstance(TMainForm));

    end;

    ----------------------------------------------

     

     

    I tried the following function for TUniFrame, but error appears in web mode: "Owner form not found"

     

    ----------------------------------------------

    function DailySales: TuDailySalesFrame;

    begin

    Result := TuDailySalesFrame(UniMainModule.getFormInstance(TuDailySalesFrame));

    end;

    ----------------------------------------------

     

    Thanks

×
×
  • Create New...