TurboGears - अंकुरण

टर्बोजियर्स पेजों में आउटपुट को विभाजित करने के लिए पेजिनेट () नामक एक सुविधाजनक डेकोरेटर प्रदान करता है। यह डेकोरेटर एक्सपोज़ () डेकोरेटर के साथ संयुक्त है। @Paginate () सज्जाकार क्वेरी परिणाम के शब्दकोश ऑब्जेक्ट को तर्क के रूप में लेता है। इसके अलावा, प्रति पृष्ठ रिकॉर्ड की संख्या items_per_page विशेषता के मूल्य द्वारा तय की जाती है। सुनिश्चित करें कि आप अपने कोड में tg.decorators से पेजेट फ़ंक्शन आयात करते हैं।

रूटराइट में रिवाइराइट लिस्ट्रेक () फ़ंक्शन निम्नानुसार है -

from tg.decorators import paginate
class RootController(BaseController):
   @expose ("hello.templates.studentlist")
   @paginate("entries", items_per_page = 3)
	
   def listrec(self):
      entries = DBSession.query(student).all()
      return dict(entries = entries)

प्रति पृष्ठ आइटम तीन होने तय हैं।

Studentlist.html टेम्पलेट में, पृष्ठ नेविगेशन को निर्देशन के लिए tmpl_context.paginators.entries.pager (py के नीचे) जोड़कर सक्षम किया गया है। इस टेम्पलेट के लिए कोड निम्नानुसार होना चाहिए -

<html xmlns = "http://www.w3.org/1999/xhtml"
   xmlns:py = "http://genshi.edgewall.org/">
   
   <head>
      <link rel = "stylesheet" type = "text/css" media = "screen" 
         href = "${tg.url('/css/style.css')}" />
      <title>Welcome to TurboGears</title>
   </head>
   
   <body>
      
      <h1>Welcome to TurboGears</h1>
		
      <py:with vars = "flash = tg.flash_obj.render('flash', use_js = False)">
         <div py:if = "flash" py:replace = "Markup(flash)" />
      </py:with>
      
      <h2>Current Entries</h2>
		
      <table border = '1'>
         <thead>
            <tr>
               <th>Name</th>
               <th>City</th>
               <th>Address</th>
               <th>Pincode</th>
            </tr>
         </thead>
         
         <tbody>
            <py:for each = "entry in entries">
               <tr>
                  <td>${entry.name}</td>
                  <td>${entry.city}</td>
                  <td>${entry.address}</td>
                  <td>${entry.pincode}</td>
               </tr>
            </py:for>
				
            <div>${tmpl_context.paginators.entries.pager()}</div>
         </tbody>
         
      </table>
   
   </body>

</html>

दर्ज http://localhost:8080/listrecब्राउज़र में। तालिका में रिकॉर्ड का पहला पृष्ठ प्रदर्शित किया जाता है। इस तालिका के शीर्ष पर, पृष्ठ संख्याओं के लिंक भी देखे गए हैं।

डाटाग्रिड में पेजेशन सपोर्ट कैसे जोड़ें

डेटाग्रिड में पेजेशन सपोर्ट जोड़ना भी संभव है। निम्नलिखित उदाहरण में, पृष्ठांकित डेटाग्रिड को एक्शन बटन प्रदर्शित करने के लिए डिज़ाइन किया गया है। कार्रवाई बटन को सक्रिय करने के लिए डेटाट्रेड ऑब्जेक्ट का निर्माण निम्नलिखित कोड के साथ किया जाता है -

student_grid = DataGrid(fields = [('Name', 'name'),('City', 'city'),
   ('Address','address'), ('PINCODE', 'pincode'),
   ('Action', lambda obj:genshi.Markup('<a
      href = "%s">Edit</a>' % url('/edit',
      params = dict(name = obj.name)))) ])

यहां एक्शन बटन डेटा ग्रिड में प्रत्येक पंक्ति के नाम पैरामीटर से जुड़ा हुआ है।

फिर से लिखें showgrid() कार्य निम्नानुसार है -

@expose('hello.templates.grid')
@paginate("data", items_per_page = 3)

def showgrid(self):
   data = DBSession.query(student).all()
   return dict(page = 'grid', grid = student_grid, data = data)

ब्राउज़र निम्न के अनुसार पृष्ठांकित डेटा दिखाता है -

तीसरी पंक्ति में संपादित करें बटन पर क्लिक करके, यह निम्नलिखित URL पर पुनर्निर्देशित करेगा http://localhost:8080/edit?name=Rajesh+Patil