• agtSearchview results in error when column is an array.

    By James Jashinski 2 decades ago

    Line 76 Print "<text>" & XMLEscape(Cstr(value)) & "</text>"



    can be replace by something like this.


                    If Isarray ( value ) Then<br/>
                        ' code to hadle array goes here<br/>
                        Print &quot;&lt;text&gt;&quot; <br/>
                        Forall arrayvalue In value<br/>
                            Print  XMLEscape(Cstr(arrayvalue)) <br/>
                        End Forall  <br/>
                        Print  &quot;&lt;/text&gt;&quot;<br/>
                    Else<br/>
                        Print &quot;&lt;text&gt;&quot; &amp; XMLEscape(Cstr(value)) &amp; &quot;&lt;/text&gt;&quot;<br/>
                    End If              <br/>
    



    This issue is in all versions.

    • Search

      By Jeremy G Hodge 2 decades ago

      Thanks!! i'll get it researched and patched for the next release!!!



      Jeremy