I've a table which stores unique ids for an object that I've to retrieve via SOAP( I've a url to a WSDL file) service calls. This table also contains some details like last access to this object from application etc.
*What I need very badly and urgently:* I've to display a few items from this table + data retrieved from the SOAP service per unique ids in the table into a <table> </table> And columns must be sortable and there's a drop down list for filtering too. probably I need pagination too. Since, all the data is not in my applications table and comes from SOAP service, I'm confused about it. How should I go about it? I can think of something like, there'll be custom methods in the table, which retrieves each item that need to be displayed from SOAP service. (Con: This will need so many SOAP service calls per item, where as I can retrieve whole data in one go, here I need to get data and use only one field from it. ), and from what I know, if I use custom methods, then table columns will not be sortable. I'm not a django expert. so please consider this while answering. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

