Jump to content

rlakinski

Members
  • Posts

    12
  • Joined

  • Last visited

Everything posted by rlakinski

  1. Thanks Farshad, I tested the .904 version. Visible / Enabled properties works fine. But the problem #2 stated in my previous post is still present.
  2. 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
  3. Can you please implement Visible property of TUniMenuItem in Web mode ? I tried both Visible and Enabled properties, but without success. (works OK in windows mode). Thanks,
  4. 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.
  5. 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,
  6. 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,
  7. 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...