Hi,
I would like to add filter using textbox. So I created CFilterOption
CFilterOption opt = api.Filter.NewFilterOption(); opt.SetRawHtmlForm(string.Format("", api.PluginPrefix)); opt.sName = api.PluginPrefix + "scustomername"; opt.sQueryParam = api.PluginPrefix + "scustomername"; opt.sHeader = "Customer name"; opt.sQueryParam = api.PluginPrefix + "scustomername";
But after submit when I'm trying to get value from textbox using
api.Request[api.PluginPrefix + "scustomername"]; in FilterCommitBefore(CFilter filter) event
But in request there is no data
Any idea?
Thanks