Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - mohta.kam

Pages: [1]
1
But products  object is neither returned and neither used.

2
When I create a new record in the grid it does not have a productid.  My database insert statement creates and returns it.  How do I update the grid with that productid?

Note: I do not want to refresh the entire grid - only the new record. i have checked the batch editing example but failed to understand in below code how dlist is gets the productid  before returning the response.

    @RequestMapping(value="/products/batch", method=RequestMethod.POST)
    public @ResponseBody String batch(@RequestParam String list, HttpServletRequest request ){       
        HttpSession ses = fillInSession(request);
       
        Map dlist = deserializeMap(list);
       
        ArrayList updateList = (ArrayList)dlist.get("updateList");
        ArrayList addList = (ArrayList)dlist.get("addList");
        ArrayList deleteList = (ArrayList)dlist.get("deleteList");
       
        this.updateList(updateList, ses);
        this.addList(addList, ses);
        this.deleteList(deleteList, ses);       
       
        return serializeMap(dlist);
    }


Please help.


Pages: [1]