Fast report dialogs

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

please help

Comments

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

    show and hide controls? what controls???


  • edited 7:27AM
    control >> data field like textobject or picture or any field in the report.
  • edited 7:27AM
    did you try it before? don't forget after hiding textobject, call Report.Refresh() from script
  • edited 7:27AM
    How can i hide textobject at runtime?
  • edited 7:27AM
    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