Suitelet to fetch custom record details.

Jira Code: BTN-517

The suitelet script is calling from the SCA website landing page. A custom record includes details of the news. The script gets those details and passes it to the website. In the website, custom record details are displayed.

Script

define(['N/record', 'N/search'],
/**
 * @param {record} record
 * @param {search} search
 */
function(record, search) {
   
    /**
     * Definition of the Suitelet script trigger point.
     *
     * @param {Object} context
     * @param {ServerRequest} context.request - Encapsulation of the incoming request
     * @param {ServerResponse} context.response - Encapsulation of the Suitelet response
     * @Since 2015.2
     */
    function onRequest(context) {
    	try {
    		log.debug({
				title: context.request.method
			});
    		var callBackFuncStr = context.request.parameters.callback;
    		//If there is callback	
			if (callBackFuncStr != "") {
				try {
					var allNewsArray = [];
					var mySearch = search.create({
					   type: "customrecord_btn_517_zizo_news_pages",						   
					   columns:
					   [
					      search.createColumn({name: "id", label: "ID"}),
					      search.createColumn({name: "custrecord_zizo_news_image", label: "Zizo News Image"}),
					      search.createColumn({name: "custrecord_zizo_news_heading", label: "Zizo News Heading"}),
					      search.createColumn({
					         name: "custrecord_zizo_news_date",
					         sort: search.Sort.DESC,
					         label: "Zizo News Date"
					      }),
					      search.createColumn({name: "custrecord_zizo_news_page_url", label: "Zizo News Page Url"})
					   ]
					});
					var searchResultCount = mySearch.runPaged().count;
					log.debug("mySearch result count",searchResultCount);
					mySearch.run().each(function(result){
						var singleNewsDetails = {};
						singleNewsDetails.imageurl = result.getValue({name : 'custrecord_zizo_news_image'});
						singleNewsDetails.imageurl=escape(singleNewsDetails.imageurl);
						singleNewsDetails.heading = result.getValue({name : 'custrecord_zizo_news_heading'});
						singleNewsDetails.heading=escape(singleNewsDetails.heading);
						singleNewsDetails.date = result.getValue({name : 'custrecord_zizo_news_date'});
						singleNewsDetails.date=escape(singleNewsDetails.date);
						singleNewsDetails.url = result.getValue({name : 'custrecord_zizo_news_page_url'});
						singleNewsDetails.url=escape(singleNewsDetails.url);
						allNewsArray.push(singleNewsDetails);
					   return true;
					});
					var strJson =
						callBackFuncStr + "('" + JSON.stringify(allNewsArray) + "');";

					context.response.write(strJson);
					
				} catch (e) {
					result = "failure";
					var strJson = callBackFuncStr + '(\'' + JSON.stringify(result)
					+ '\')';
					context.response.write(strJson);
					logme("Error in try statement of callBackFuncStr", getError(e));
				}
			}
			//If there is no callback
			else{
				result = "failure";
				var strJson = callBackFuncStr + '(\'' + JSON.stringify(result)
				+ '\')';
				context.response.write(strJson);
				log.debug({
					title : 'failure, no callback function detected'
				});

			}
		} catch (e) {
			logme('Error in Main try staement', getError(e));
			result = "failure";
			var strJson = callBackFuncStr + '(\'' + JSON.stringify(result)
			+ '\')';
			context.response.write(strJson);
		}
       
    }

    return {
        onRequest: onRequest
    };
    
});
/*******************************************************************************
 * return error
 * 
 * @param e
 * @returns
 */
function getError(e) {
	var stErrMsg = '';
	if (e.getDetails != undefined) {
		stErrMsg = '_' + e.getCode() + '<br>' + e.getDetails() + '<br>'
		+ e.getStackTrace();
	} else {
		stErrMsg = '_' + e.toString();
	}
	return stErrMsg;
}

/*******************************************************************************
 * Log these data
 * 
 * @param title
 * @param details
 * @returns
 */
function logme(title, details) {
	log.debug({
		title : title,
		details : details
	});
}

HTML Code

<!DOCTYPE html>
<html>

<head>
    <style>
        .blog {
            font-size: 20px;
            font-weight: normal;
        }

        .small {
            font-size: 13px;
            padding-top: 5px;
            padding-bottom: 5px;
            color: #828282;
        }

        .recent:hover {
            color: #ed2130;
        }

        .article_image {
            padding-top: 50px;
        }

        .article {
            padding-top: 50px;
        }

        .sidebar_content {
            border-left: solid 1px #494c50;
            padding-left: 20px;
        }

        .action_button {
            background: #fd1818;
            color: #ffffff;
            border: 0;
            padding: 10px 20px;
            text-align: center;
            cursor: pointer;
            font-family: Montserrat;
            font-weight: bold;
            font-size: 14px;
            text-transform: uppercase;
            line-height: 1.8em;
            width: 100%;
            transition: all 200ms ease 0s;
            -webkit-appearance: none;
            border-radius: 2px;
            -webkit-font-smoothing: antialiased;
            box-sizing: border-box;
        }

        @media only screen and (min-width: 1400px) {
            .bcg {
                margin-top: -1%;
            }
        }

        @media only screen and (min-width: 1920px) {
            .bcg {
                margin-top: -4%;
            }
        }

    </style>

    <link rel="stylesheet" type="text/css" href="SSP Applications/Balaji Trading, Inc./DEV-Vinson-Zizo/css/Landing_page (1).css" />
</head>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript">   
    function loadContent() {
        var u = "https://forms.na2.netsuite.com/app/site/hosting/scriptlet.nl?script=1394&deploy=1&compid=4215023&h=7bfad08d782223a853e8";
        var cb = 'myCallBackZizoNews';
        getJSONP(u + '&callback=' + cb);
    }
    function getJSONP(url) {
        var script = document.createElement('script');
        var head = document.getElementsByTagName('head')[0] || document.documentElement;
        script.src = url
        head.appendChild(script);
    }
    function myCallBackZizoNews(data) {
        var myObj = JSON.parse(data);        
        showNewsDetails(myObj);
    }
    function showNewsDetails(myObj) {
        if (myObj != "failure") {
            for (var i = 0; i < myObj.length; i++) {
                myObj[i].imageurl = unescape(myObj[i].imageurl);
                myObj[i].heading = unescape(myObj[i].heading);
                myObj[i].date = unescape(myObj[i].date);
                myObj[i].url = unescape(myObj[i].url);              
                var dynamicElements = "";
                 dynamicElements += "<div class='seven columns alpha article_image'><a href='/" + myObj[i].url + "' title='" + myObj[i].heading + "'><img src='" + myObj[i].imageurl + "' alt='" + myObj[i].heading + "'></a></div><div class='five columns omega article'><h2><a href='/" + myObj[i].url + "'><p class='blog'>" + myObj[i].heading + "</p></a></h2><p class='blog_meta'><span class='small' style='color: #828282;'>" + myObj[i].date + "</span></p><p class='small'><a href='/" + myObj[i].url + "' title='" + myObj[i].heading + "'>Read More <span class='icon-right-arrow'></span></a></p></div><br class='clear'>";
                $("#new_zizo_newspages").append(dynamicElements);               
            }
        } else {
            var dynamicElements = "";
            dynamicElements += "<p><span>Couldn't load content right now.</span><br><span>Please try again later...</span></p>"       
             }
    }
    $("#twelve_columns").ready(function() {
        loadContent();
    });
</script>

<body>
    <div id="slide-blog" style="margin-top: 0px">
        <div class="bcg" data-bottom-top="background-position: 50% 0px;" data-top-bottom="background-position: 50% -200px;" data-anchor-target="#slide-blog">
            <img src="SSP Applications/Balaji Trading, Inc./DEV-Vinson-Zizo/img/news-2.jpg">
        </div>
    </div>
    <div class="container">
        <div class="twelve columns" id="twelve_columns">
            <!-- area to display data from custom record -->
            <div class="new-zizo-newspages" id="new_zizo_newspages"></div>

            <div class="seven columns alpha article_image">
                <a href="https://www.zizowireless.com/blogs/news/how-often-should-you-replace-your-screen-protector" title="How Often Should You Replace Your Screen protector?">
              <img src="SSP Applications/Balaji Trading, Inc./DEV-Vinson-Zizo/img/download_1024x1024.jpg" alt="How Often Should You Replace Your Screen protector?">
            </a>
            </div>
            <div class="five columns omega article">
                <h2>
                    <a href="https://www.zizowireless.com/blogs/news/how-often-should-you-replace-your-screen-protector">
                        <p class="blog">How Often Should You Replace Your Screen protector?</p>
                    </a>
                </h2>
                <p class="blog_meta">
                    <span class="small" style="color: #828282;">April 26, 2017</span>
                </p>
                <div class="excerpt">
                    <h1>
                        <p class="blog">When you've chipped an edge, and it's sharp</p>
                    </h1>
                    <p><span class="small">They’re liable to chip since they don’t sit flush with the sides of your phone.</span></p>
                    <p><span class="small">It only takes a few bumps and drops before the corners start chipping. It’s not the screen protectors fault, they’re made of glass.</span></p>
                    <p class="small">It’s just what glass does when it get bumped.</p>
                </div>
                <p class="small">
                    <a href="https://www.zizowireless.com/blogs/news/how-often-should-you-replace-your-screen-protector" title="How Often Should You Replace Your Screen protector?">Read More <span class="icon-right-arrow"></span></a>
                </p>
            </div>
            <br class="clear">
            <div class="seven columns alpha article_image">
                <a href="https://www.zizowireless.com/blogs/news/the-7-ways-to-keep-your-iphone-s-battery-green-all-day" title="7 Ways to Avoid the Dreaded Red iPhone Battery">
              <img src="SSP Applications/Balaji Trading, Inc./DEV-Vinson-Zizo/img/Dead-battery-charge_5f734d34-fd4b-471c-9977-fded571f527c_1024x1024.jpg" alt="7 Ways to Avoid the Dreaded Red iPhone Battery">
            </a>
            </div>
            <div class="five columns omega article">
                <h2>
                    <a href="https://www.zizowireless.com/blogs/news/the-7-ways-to-keep-your-iphone-s-battery-green-all-day">
                        <p class="blog">7 Ways to Avoid the Dreaded Red iPhone Battery</p>
                    </a>
                </h2>
                <p class="blog_meta">
                    <span class="small" style="color: #828282;">February 23, 2017</span>
                </p>
                <div class="excerpt">
                    <h3><strong>   <p style="font-size:18px;" >1.Find Who’s Being a Greedy App</p></strong></h3>
                    <p><span class="small">Some will keep being greedy even when they’re in the background. Not all apps only use battery while you’re using them.</span></p>
                    <p><span class="small">Like my Podcasts app at the top of the list to the right.</span></p>
                    <p><span class="small">It’s been sucking battery life all morning and I haven’t even had a chance to listen to the latest Criminal Podcast.</span></p>
                    <p><span class="small">You have to shut these down if you don’t want them to be snagging up all your battery life.</span></p>
                    <p><span class="small">To turn them off go to </span><b>Settings > Battery </b><span>to see all those greedy battery sucking apps.</span></p>
                </div>
                <p class="small">
                    <a href="https://www.zizowireless.com/blogs/news/the-7-ways-to-keep-your-iphone-s-battery-green-all-day" title="7 Ways to Avoid the Dreaded Red iPhone Battery">Read More <span class="icon-right-arrow"></span></a>
                </p>
            </div>
            <br class="clear">
            <div class="seven columns alpha article_image">
                <a href="https://www.zizowireless.com/blogs/news/7-best-things-to-do-when-youve-broken-your-phone" title="7 Best Things to do When You've Broken Your Phone">
              <img src="SSP Applications/Balaji Trading, Inc./DEV-Vinson-Zizo/img/broken_phone_images_2_1024x1024.jpg" alt="7 Best Things to do When You've Broken Your Phone">
            </a>
            </div>
            <div class="five columns omega article">
                <h2>
                    <a href="https://www.zizowireless.com/blogs/news/7-best-things-to-do-when-youve-broken-your-phone">
                        <p class="blog">7 Best Things to do When You've Broken Your Phone</p>
                    </a>
                </h2>
                <p class="blog_meta">
                    <span class="small" style="color: #828282;">February 02, 2017</span>
                </p>
                <p class="small">
                    <a href="https://www.zizowireless.com/blogs/news/7-best-things-to-do-when-youve-broken-your-phone" title="7 Best Things to do When You've Broken Your Phone">Read More <span class="icon-right-arrow"></span></a>
                </p>
            </div>
            <br class="clear">
            <div class="seven columns alpha article_image">
                <a href="/blogs/news/6-of-the-best-star-wars-memorabilia-gifts-thats-sure-to-get-some-laughs-this-winter" title="6 of the Best Star Wars Memorabilia gifts thats sure to get some laughs this Winter">
              <img src="SSP Applications/Balaji Trading, Inc./DEV-Vinson-Zizo/img/Star-Wars-Millennium-Falcon-Windshield-Sun-Shade_1024x1024.jpg" alt="6 of the Best Star Wars Memorabilia gifts thats sure to get some laughs this Winter">
            </a>
            </div>
            <div class="five columns omega article">
                <h2>
                    <a href="https://www.zizowireless.com/blogs/news/6-of-the-best-star-wars-memorabilia-gifts-thats-sure-to-get-some-laughs-this-winter">
                        <p class="blog">6 of the Best Star Wars Memorabilia gifts thats sure to get some laughs this Winter</p>
                    </a>
                </h2>
                <p class="blog_meta">
                    <span class="small" style="color: #828282;">December 16, 2016</span>
                </p>
                <p class="small">
                    <a href="https://www.zizowireless.com/blogs/news/6-of-the-best-star-wars-memorabilia-gifts-thats-sure-to-get-some-laughs-this-winter" title="6 of the Best Star Wars Memorabilia gifts thats sure to get some laughs this Winter">Read More <span class="icon-right-arrow"></span></a>
                </p>
            </div>
            <br class="clear">
            <div class="seven columns alpha article_image">
                <a href="https://www.zizowireless.com/blogs/news/10-gift-ideas-so-thoughtful-your-family-might-actually-think-you-planned-ahead-this-holiday-season" title="10 gift ideas so thoughtful your family might actually think you planned ahead this holiday season.">
              <img src="SSP Applications/Balaji Trading, Inc./DEV-Vinson-Zizo/img/main_1024x1024.jpg" alt="10 gift ideas so thoughtful your family might actually think you planned ahead this holiday season.">
            </a>
            </div>
            <div class="five columns omega article">
                <h2>
                    <a href="https://www.zizowireless.com/blogs/news/10-gift-ideas-so-thoughtful-your-family-might-actually-think-you-planned-ahead-this-holiday-season">
                        <p class="blog">10 gift ideas so thoughtful your family might actually think you planned ahead this holiday season.</p>
                    </a>
                </h2>
                <p class="blog_meta">
                    <span class="small" style="color: #828282;">November 30, 2016</span>
                </p>
                <div class="excerpt">
                    <p class="small">You can't have a thoughtful gift without doing a bit of homework.</p>
                    <p class="small">Luckily we've done it for you.</p>
                    <p class="small">So we’ve broken down the gifts to compliment the type of character they would fit.</p>
                    <p class="small">Whether they be a friend, father, mother or significant other. There’s a perfect gift in this list for everyone.</p>
                </div>
                <p class="small">
                    <a href="https://www.zizowireless.com/blogs/news/10-gift-ideas-so-thoughtful-your-family-might-actually-think-you-planned-ahead-this-holiday-season" title="10 gift ideas so thoughtful your family might actually think you planned ahead this holiday season.">Read More <span class="icon-right-arrow"></span></a>
                </p>
            </div>
            <br class="clear">
            <div class="seven columns alpha article_image">
                <a href="https://www.zizowireless.com/blogs/news/how-to-get-the-most-life-out-of-your-phone-s-battery" title="How to get the most life out of your phone’s battery">
              <img src="SSP Applications/Balaji Trading, Inc./DEV-Vinson-Zizo/img/Dead-battery-charge_5f734d34-fd4b-471c-9977-fded571f527c_1024x1024.jpg" alt="How to get the most life out of your phone’s battery">
            </a>
            </div>
            <div class="five columns omega article">
                <h2>
                    <a href="https://www.zizowireless.com/blogs/news/how-to-get-the-most-life-out-of-your-phone-s-battery">
                        <p class="blog">How to get the most life out of your phone’s battery</p>
                    </a>
                </h2>
                <p class="blog_meta">
                    <span class="small" style="color: #828282;">September 30, 2016</span>
                </p>
                <div class="excerpt">
                    <p class="small"><span style="font-weight: 400;">Letting your phone get down to 20% or less, is just as stressful as getting a full charge.</span></p>
                    <p class="small"><span style="font-weight: 400;">It’s even worse to let it go down to 0% and then fully charging it again.</span></p>
                    <p class="small"><span style="font-weight: 400;">The spike in voltage from 0-100 is only good every once in awhile. Experts recommend maybe once a month is good for a battery to reset it.</span></p>
                </div>
                <p class="small">
                    <a href="https://www.zizowireless.com/blogs/news/how-to-get-the-most-life-out-of-your-phone-s-battery" title="How to get the most life out of your phone’s battery">Read More <span class="icon-right-arrow"></span></a>
                </p>
            </div>
            <br class="clear">
            <div class="seven columns alpha article_image">
                <a href="https://www.zizowireless.com/blogs/news/if-you-havent-exchanged-your-note-7-go-now-while-they-have-them-in-stock" title="If you haven't exchanged your Note 7, go now while they have them in stock">
              <img src="SSP Applications/Balaji Trading, Inc./DEV-Vinson-Zizo/img/pgvon1tuiyj1t5nzgmu1_1024x1024.jpg" alt="If you haven't exchanged your Note 7, go now while they have them in stock">
            </a>
            </div>
            <div class="five columns omega article">
                <h2>
                    <a href="https://www.zizowireless.com/blogs/news/if-you-havent-exchanged-your-note-7-go-now-while-they-have-them-in-stock">
                        <p class="blog">If you haven't exchanged your Note 7, go now while they have them in stock</p>
                    </a>
                </h2>
                <p class="blog_meta">
                    <span class="small" style="color: #828282;">September 21, 2016</span>
                </p>
                <div class="excerpt">
                    <p class="small"><span>In case you haven’t heard already there has been a huge recall for the Note 7 issued by Samsung.</span></p>
                    <p class="small"><span>They are offering an exchange program, but while you waited for a replacement you were lent a loaner phone instead of getting a replacement.</span></p>
                    <p class="small"><span>If you took the risk, and held onto your Note 7, we like your style.</span></p>
                    <p class="small"><span>Here are the ways you go about exchanging that faulty Note 7. If you haven’t done so already, or if you have a loaner, it’s time to head down to your local phone service provider and trade it out.</span></p>
                </div>
                <p class="small">
                    <a href="https://www.zizowireless.com/blogs/news/if-you-havent-exchanged-your-note-7-go-now-while-they-have-them-in-stock" title="If you haven't exchanged your Note 7, go now while they have them in stock">Read More <span class="icon-right-arrow"></span></a>
                </p>
            </div>
            <br class="clear">
            <div class="seven columns alpha article_image">
                <a href="https://www.zizowireless.com/blogs/news/the-2-smartest-ways-to-buy-the-iphone-7-tomorrow-and-how-not-to" title="The 2 smartest ways to buy the iPhone 7 tomorrow and how not to">
              <img src="SSP Applications/Balaji Trading, Inc./DEV-Vinson-Zizo/img/iphone_7_1024x1024.jpg" alt="The 2 smartest ways to buy the iPhone 7 tomorrow and how not to">
            </a>
            </div>
            <div class="five columns omega article">
                <h2>
                    <a href="https://www.zizowireless.com/blogs/news/the-2-smartest-ways-to-buy-the-iphone-7-tomorrow-and-how-not-to">
                        <p class="blog">The 2 smartest ways to buy the iPhone 7 tomorrow and how not to</p>
                    </a>
                </h2>
                <p class="blog_meta">
                    <span class="small" style="color: #828282;">September 15, 2016</span>
                </p>
                <p class="small">
                    <a href="https://www.zizowireless.com/blogs/news/the-2-smartest-ways-to-buy-the-iphone-7-tomorrow-and-how-not-to" title="The 2 smartest ways to buy the iPhone 7 tomorrow and how not to">Read More <span class="icon-right-arrow"></span></a>
                </p>
            </div>
            <br class="clear">
            <div class="seven columns alpha article_image">
                <a href="https://www.zizowireless.com/blogs/news/apple-warns-there-s-a-catch-to-that-black-you-ll-need-an-iphone-7-case-unless-you-want-it-scratched" title="Apple warns there’s a catch to that black, you’ll need an iPhone 7 case, unless you want it scratched.">
              <img src="SSP Applications/Balaji Trading, Inc./DEV-Vinson-Zizo/img/iphone_7_jet_black_scratch_1024x1024.jpg" alt="Apple warns there’s a catch to that black, you’ll need an iPhone 7 case, unless you want it scratched.">
            </a>
            </div>
            <div class="five columns omega article">
                <h2>
                    <a href="https://www.zizowireless.com/blogs/news/apple-warns-there-s-a-catch-to-that-black-you-ll-need-an-iphone-7-case-unless-you-want-it-scratched">
                        <p class="blog">Apple warns there’s a catch to that black, you’ll need an iPhone 7 case, unless you want it scratched.</p>
                    </a>
                </h2>
                <p class="blog_meta">
                    <span class="small" style="color: #828282;">September 09, 2016</span>
                </p>
                <div class="excerpt">
                    <p class="small"><span>Unfortunately there is some bad news about that black</span></p>
                    <p class="small"><span>The glossy jet black finish for the iPhone 7 and iPhone 7 plus are highly susceptible to micro abrasions.</span></p>
                    <p class="small"><span>That means light scratches, like scratches from setting it on a table a few times.</span></p>
                </div>
                <p>
                    <a href="https://www.zizowireless.com/blogs/news/apple-warns-there-s-a-catch-to-that-black-you-ll-need-an-iphone-7-case-unless-you-want-it-scratched" title="Apple warns there’s a catch to that black, you’ll need an iPhone 7 case, unless you want it scratched.">Read More <span class="icon-right-arrow"></span></a>
                </p>
            </div>
            <br class="clear">
            <div class="seven columns alpha article_image">
                <a href="https://www.zizowireless.com/blogs/news/9-ways-to-make-life-easier-with-your-android-using-apps-and-accessories" title="9 ways to make life easier with your Android, using apps and accessories">
              <img src="SSP Applications/Balaji Trading, Inc./DEV-Vinson-Zizo/img/android_falling_apps_1024x1024.jpg" alt="9 ways to make life easier with your Android, using apps and accessories">
            </a>
            </div>
            <div class="five columns omega article">
                <h2>
                    <a href="https://www.zizowireless.com/blogs/news/9-ways-to-make-life-easier-with-your-android-using-apps-and-accessories">
                        <p class="blog">9 ways to make life easier with your Android, using apps and accessories</p>
                    </a>
                </h2>
                <p class="blog_meta">
                    <span class="small" style="color: #828282;">September 02, 2016</span>
                </p>
                <div class="excerpt">
                    <div><span><p class="small">I’ve done the work, gone out, scoured the internets to test and try out these products to see what they can do to make our lives easier.</p></span></div>
                    <div><span> </span></div>
                    <div><span><p class="small">Because that’s what technology is for, making it so we can live on easy street.</p></span></div>
                </div>
                <p class="small">
                    <a href="https://www.zizowireless.com/blogs/news/9-ways-to-make-life-easier-with-your-android-using-apps-and-accessories" title="9 ways to make life easier with your Android, using apps and accessories">Read More <span class="icon-right-arrow"></span></a>
                </p>
            </div>
            <br class="clear">
            <div class="seven columns alpha article_image">
                <a href="https://www.zizowireless.com/blogs/news/people-spend-an-average-of-4-7-hours-a-day-on-their-phone-and-here-s-how-you-can-look-at-all-that-same-stuff-without-spending-as-much-tyme-as-they-do" title="People spend 4.7 hours a day on their phone. Here’s how you can see all that same stuff without spending as much Tyme as they do">
              <img src="SSP Applications/Balaji Trading, Inc./DEV-Vinson-Zizo/img/tyme-hero-image-1000px_1024x1024.jpg" alt="People spend 4.7 hours a day on their phone. Here’s how you can see all that same stuff without spending as much Tyme as they do">
            </a>
            </div>
            <div class="five columns omega article">
                <h2>
                    <a href="https://www.zizowireless.com/blogs/news/people-spend-an-average-of-4-7-hours-a-day-on-their-phone-and-here-s-how-you-can-look-at-all-that-same-stuff-without-spending-as-much-tyme-as-they-do">
                        <p class="blog">People spend 4.7 hours a day on their phone. Here’s how you can see all that same stuff without spending as much Tyme as they do</p>
                    </a>
                </h2>
                <p class="blog_meta">
                    <span class="small" style="color: #828282;">August 29, 2016</span>
                </p>
                <div class="excerpt"> <span><p class="small">It uses an app to control the customization of the window. So you can e</p></span><span><p class="small">asily program into the companion app who your favorite contacts are so you don’t even have to open up your phone to make a call, take a picture, check your messages, or turn on your music.</p></span></div>
                <p class="small">
                    <a href="https://www.zizowireless.com/blogs/news/people-spend-an-average-of-4-7-hours-a-day-on-their-phone-and-here-s-how-you-can-look-at-all-that-same-stuff-without-spending-as-much-tyme-as-they-do" title="People spend 4.7 hours a day on their phone. Here’s how you can see all that same stuff without spending as much Tyme as they do">Read More <span class="icon-right-arrow"></span></a>
                </p>
            </div>
            <br class="clear">
            <div class="seven columns alpha article_image">
                <a href="https://www.zizowireless.com/blogs/news/most-people-will-have-cracked-their-note-7-by-week-10-here-s-the-top-5-cases-to-save-you-another-800" title="Most people will have cracked their Note 7 by week 10. Here’s the top 5 cases to save you another $800">
              <img src="SSP Applications/Balaji Trading, Inc./DEV-Vinson-Zizo/img/samsung_galaxy_not7_water_submerge_1024x1024.jpg" alt="Most people will have cracked their Note 7 by week 10. Here’s the top 5 cases to save you another $800">
            </a>
            </div>
            <div class="five columns omega article">
                <h2>
                    <a href="https://www.zizowireless.com/blogs/news/most-people-will-have-cracked-their-note-7-by-week-10-here-s-the-top-5-cases-to-save-you-another-800">
                        <p class="blog">Most people will have cracked their Note 7 by week 10. Here’s the top 5 cases to save you another $800</p>
                    </a>
                </h2>
                <p class="blog_meta">
                    <span class="small" style="color: #828282;">August 15, 2016</span>
                </p>
                <div class="excerpt"> <span><p class="small">But waterproofing doesn’t protect against a smack with the cement floor. Let’s face it, that happens all time, at least to me when I’m getting out of my car (43% of people break their phone this way).</p></span></div>
                <p class="small">
                    <a href="https://www.zizowireless.com/blogs/news/most-people-will-have-cracked-their-note-7-by-week-10-here-s-the-top-5-cases-to-save-you-another-800" title="Most people will have cracked their Note 7 by week 10. Here’s the top 5 cases to save you another $800">Read More <span class="icon-right-arrow"></span></a>
                </p>
            </div>
            <br class="clear">
        </div>
        <div class="sidebar four columns">
            <div class="sidebar_content">
                <h4>Recent Articles</h4>
                <ul class="blog_list recent_articles">
                    <li>
                        <a class="recentlink" href="https://www.zizowireless.com/blogs/news/how-often-should-you-replace-your-screen-protector" title="How Often Should You Replace Your Screen protector?">
                            <p class="small recent">How Often Should You Replace Your Screen protector?</p>
                        </a>
                        <div class="meta">
                            <span class="label"><p class="small" style="color: #828282;">April 26, 2017</p></span>
                        </div>
                    </li>

                    <li>
                        <a class="recentlink" href="https://www.zizowireless.com/blogs/news/the-7-ways-to-keep-your-iphone-s-battery-green-all-day" title="7 Ways to Avoid the Dreaded Red iPhone Battery">
                            <p class="small recent">7 Ways to Avoid the Dreaded Red iPhone Battery</p>
                        </a>

                        <div class="meta">
                            <span class="label"><p class="small" style="color: #828282;">February 23, 2017</p></span>
                        </div>

                    </li>

                    <li>
                        <a class="recentlink" href="https://www.zizowireless.com/blogs/news/7-best-things-to-do-when-youve-broken-your-phone" title="7 Best Things to do When You've Broken Your Phone">
                            <p class="small recent">7 Best Things to do When You've Broken Your Phone</p>
                        </a>

                        <div class="meta">
                            <span class="label"><p class="small" style="color: #828282;">February 02, 2017</p></span>
                        </div>

                    </li>

                    <li>
                        <a class="recentlink" href="https://www.zizowireless.com/blogs/news/6-of-the-best-star-wars-memorabilia-gifts-thats-sure-to-get-some-laughs-this-winter" title="6 of the Best Star Wars Memorabilia gifts thats sure to get some laughs this Winter">
                            <p class="small recent">6 of the Best Star Wars Memorabilia gifts thats sure to get some laughs this Winter</p>
                        </a>

                        <div class="meta">
                            <span class="label"><p class="small" style="color: #828282;">December 16, 2016</p></span>
                        </div>

                    </li>

                    <li>
                        <a class="recentlink" href="https://www.zizowireless.com/blogs/news/10-gift-ideas-so-thoughtful-your-family-might-actually-think-you-planned-ahead-this-holiday-season" title="10 gift ideas so thoughtful your family might actually think you planned ahead this holiday season.">
                            <p class="small recent">10 gift ideas so thoughtful your family might actually think you planned ahead this holiday season.</p>
                        </a>

                        <div class="meta">
                            <span class="label"><p class="small" style="color: #828282;">November 30, 2016</p></span>
                        </div>

                    </li>

                    <li>
                        <a class="recentlink" href="https://www.zizowireless.com/blogs/news/how-to-get-the-most-life-out-of-your-phone-s-battery" title="How to get the most life out of your phone’s battery">
                            <p class="small recent">How to get the most life out of your phone’s battery</p>
                        </a>

                        <div class="meta">
                            <span class="label"><p class="small" style="color: #828282;">September 30, 2016</p></span>
                        </div>

                    </li>

                    <li>
                        <a class="recentlink" href="https://www.zizowireless.com/blogs/news/if-you-havent-exchanged-your-note-7-go-now-while-they-have-them-in-stock" title="If you haven't exchanged your Note 7, go now while they have them in stock">
                            <p class="small recent">If you haven't exchanged your Note 7, go now while they have them in stock</p>
                        </a>

                        <div class="meta">
                            <span class="label"><p class="small" style="color: #828282;">September 21, 2016</p></span>
                        </div>

                    </li>

                    <li>
                        <a class="recentlink" href="https://www.zizowireless.com/blogs/news/the-2-smartest-ways-to-buy-the-iphone-7-tomorrow-and-how-not-to" title="The 2 smartest ways to buy the iPhone 7 tomorrow and how not to">
                            <p class="small recent">The 2 smartest ways to buy the iPhone 7 tomorrow and how not to</p>
                        </a>

                        <div class="meta">
                            <span class="label"><p class="small"style="color: #828282;">September 15, 2016</p></span>
                        </div>

                    </li>

                    <li>
                        <a class="recentlink" href="https://www.zizowireless.com/blogs/news/apple-warns-there-s-a-catch-to-that-black-you-ll-need-an-iphone-7-case-unless-you-want-it-scratched" title="Apple warns there’s a catch to that black, you’ll need an iPhone 7 case, unless you want it scratched.">
                            <p class="small recent">Apple warns there’s a catch to that black, you’ll need an iPhone 7 case, unless you want it scratched.</p>
                        </a>

                        <div class="meta">
                            <span class="label"><p class="small"style="color: #828282;">September 09, 2016</p></span>
                        </div>

                    </li>

                    <li>
                        <a class="recentlink" href="https://www.zizowireless.com/blogs/news/9-ways-to-make-life-easier-with-your-android-using-apps-and-accessories" title="9 ways to make life easier with your Android, using apps and accessories">
                            <p class="small recent">9 ways to make life easier with your Android, using apps and accessories</p>
                        </a>

                        <div class="meta">
                            <span class="label"><p class="small"style="color: #828282;">September 02, 2016</p></span>
                        </div>

                    </li>

                </ul>
                <hr>
            </div>
        </div>
        <br class="clear">
        <div class="sixteen columns">
        </div>
    </div>

</body>

</html>

Leave a comment

Your email address will not be published. Required fields are marked *