Posts

Showing posts from October, 2013

DataTables server-side processing example feeding from SharePoint 2010 search service plus Reformatting Columns To Hyperlink

DataTables server-side processing example feeding from SharePoint 2010 search service plus Reformatting Columns To Hyperlink  My SharePoint search started to return a huge number of records back so I decided to use the service side processing technique.  I didn't see any example on the internet so I decided to publish mine. Step 1 So here is my HTML Markup to create the page  <table id="GADIR-datagrid" >           <thead>               <tr>             <th>ID</th>             <th>Name</th>             <th>Number</th>             <th>Supervising Partner</th>             <th>Billing address</th>             <th>Filing address</th>             <th>Status</th>             <th>Open Date</th>             <th>Close Date</th>             </tr>           </thead>       </table>  Step 2 An