Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    listgrid FETCHDATA does not work in ie

    I´m new to smartgwt, but finally i have a small application running, basically this application gets data from a php server side and populates a listgrid using restdatasource.

    The application runs fine (shows data) in chrome, safari and firefox, but in different versions of ie, shows "No items to show", but the data is transmited ok, as in the other browsers.

    You have a test of the application located in http://www.widestage.com/TEST, you will see the data if opened with firefox or chrome but not in ie.

    Hope you could help me...

    My SmartGWT version is 2.5
    No Javascript error show in the browser even in the developer tools...

    Thanks in advance

    Romero

    #2
    The content type of your response is currently

    Content-Type:text/html

    Change it to text/xml

    Comment


      #3
      Thanks for your quick response

      I have change the header in the php files and now is sending content-type text/xml, but still the data is not shown in the grid, working with ie.

      Comment


        #4
        Your xml data has some non-ANSI characters. Make sure you add the appropriate prolog to your xml.

        Eg :

        <?xml version="1.0" encoding="UTF-8"?>

        Comment


          #5
          Thanks , you were right :)

          Comment

          Working...
          X