Beispiel #1
0
 def get_content_wdg(self):
     div = DivWdg()
     for sobject in self.sobjects:
         kwargs = self.kwargs.copy()
         layout = CustomLayoutWdg(**kwargs)
         layout.set_sobjects(self.sobjects)
         layout.set_sobject(sobject)
         div.add(layout)
     div.add("<br clear='all'/>")
     return div
Beispiel #2
0
 def get_content_wdg(my):
     div = DivWdg()
     for sobject in my.sobjects:
         kwargs = my.kwargs.copy()
         layout = CustomLayoutWdg(**kwargs)
         layout.set_sobjects(my.sobjects)
         layout.set_sobject(sobject)
         div.add(layout)
     div.add("<br clear='all'/>")
     return div
Beispiel #3
0
 def get_content_wdg(self):
     kwargs = self.kwargs.copy()
     kwargs["search"] = self.search
     layout = CustomLayoutWdg(**kwargs)
     layout.set_sobjects(self.sobjects)
     return layout
Beispiel #4
0
 def get_content_wdg(my):
     kwargs = my.kwargs.copy()
     layout = CustomLayoutWdg(**kwargs)
     layout.set_sobjects(my.sobjects)
     return layout
Beispiel #5
0
 def get_content_wdg(self):
     kwargs = self.kwargs.copy()
     kwargs["search"] = self.search
     layout = CustomLayoutWdg(**kwargs)
     layout.set_sobjects(self.sobjects)
     return layout