using FastReport.Dialog; using static FastReport.Web.Constants; namespace FastReport.Web { public partial class Dialog { private void TextBoxChange(TextBoxControl tb, string data) { tb.Text = data; tb.FilterData(); tb.OnTextChanged(null); } private string GetValHook() { return ""; } private string GetTextBoxHtml(TextBoxControl control) { string id = GetControlID(control); string html; if (control.Multiline) { html = $""; } else { html = $""; } return html; } private string GetTextBoxStyle(TextBoxControl control) { return $"{GetStandardStyle(control)} {GetControlAlign(control)}"; } } }