Fast report dialogs

Fast report dialogs and events not work with me in .net core MVC web application.

please help

Comments

  • edited 8:41AM
    workaround: use ajax, create your own dialog
  • edited 8:41AM
    I want to show and hide controls from report in run time with out recreate report.
  • edited 8:41AM
    dialog is run at report startup => workaround: ajax

    show and hide controls? what controls???


  • edited 8:41AM
    control >> data field like textobject or picture or any field in the report.
  • edited 8:41AM
    did you try it before? don't forget after hiding textobject, call Report.Refresh() from script
  • edited 8:41AM
    How can i hide textobject at runtime?
  • edited 8:41AM
    change Text1 'cursor property' to hand or something else and create click event
      public class ReportScript
      {
        private bool hideMe = true;
        
        private void Text1_Click(object sender, EventArgs e)
        {
          hideMe = !hideMe;
          Text2.Visible = hideMe;
          Report.Refresh();
        }
      }
    

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.