Posts

Showing posts from April, 2018

Using FetchXml Retrieve more than 5000 records with XrmSvcToolkit in MS CRM

var pagingNo; var pageCookie = ""; var FetchXmlBuilder = function () {     return {         getPageCookie: function (a) {             return a;//.replace(/</gi, "&lt;").replace(/>/gi, "&gt;").replace(/\"/gi, "&quot;")         }     } }(); var Bind_Results = new Array(); function xrmSvcTooltRequest() {     var fetch = "<fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='false' page='" + pagingNo + "' count='5000'  paging-cookie='" + pageCookie + "'>" +                 "<entity name='apy_jobpackagetasks'>" +                  "<attribute name='apy_jobpackagetasksid' />" +                  "<attribute name='apy_name' />" +                  "<attribute name='createdon' />" +                  "<

html page with table inside another table

<!DOCTYPE html> <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> <head>     <meta charset="utf-8" />     <title>Designing html page</title>     <style>         body {             font-family: Segoe\000020UI,Arial,sans\00002Dserif;             font-size: 12px;             color: #444;             padding: 0px;             margin: 0px;         }         table {             border-collapse: collapse;             width: 100%;         }         th {             border-bottom: none!important;             border-right: 1px solid #dddddd!important;         }         td, th {             border: 1px solid #dddddd;             text-align: left;             padding: 8px;             vertical-align: top;         }         .nobrdr td {             border: none;         }         input {             cursor: pointer;         }         .Record-table {             position: absolute;