Announcement

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

    #16
    Originally posted by smartgwt.dev
    First, you cannot use GWT-RPC / Ajax to upload / download a file.

    Use Fiddler / Firebug to see the URL being invoked when you're using the servlet.

    Yes, i am not using GWT RPC Manager, I am using another file servlet,

    upload file, servlets reads it , then I want to populate the data back into the ListGrid,

    How can I populate the smart GWT ListGrid with the data present in the upload file? Please suggest.

    Comment


      #17
      You will need to write code to do it :)

      There is no magic bullet to get around that

      Comment


        #18
        Except SmartGwt Pro, which solves this problem without coding required. Lots of effort being spent here on a solved problem
        - if you're a professional developer, does your manager know you're reinventing the wheel? :)

        Comment


          #19
          Originally posted by Isomorphic
          Except SmartGwt Pro, which solves this problem without coding required. Lots of effort being spent here on a solved problem
          - if you're a professional developer, does your manager know you're reinventing the wheel? :)

          I was able to achieve the import (Upload) functionality using GWT Form Panel

          Do we have any submitComplete Listener for DynamicForm in Smart GWT ?

          for ex FormPanel.addSubmitCompleteHandler ?

          formPanel.addSubmitCompleteHandler(new SubmitCompleteHandler(){

          public void onSubmitComplete(SubmitCompleteEvent event) {


          SC.say(event.getResults());

          }
          });

          Thanks in advance.

          Comment

          Working...
          X