<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Understanding JSON Syntax</title>
	<atom:link href="http://blog.sachinkraj.com/understanding-json-syntax/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sachinkraj.com/understanding-json-syntax/</link>
	<description>Web Development Tutorials, How-To&#039;s and Design Tips</description>
	<lastBuildDate>Tue, 07 Feb 2012 12:12:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Sharath Chowdary</title>
		<link>http://blog.sachinkraj.com/understanding-json-syntax/#comment-6539</link>
		<dc:creator>Sharath Chowdary</dc:creator>
		<pubDate>Tue, 06 Dec 2011 14:41:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sachinkraj.com/?p=873#comment-6539</guid>
		<description>Even &quot;disabled&quot; did not work Sachin!</description>
		<content:encoded><![CDATA[<p>Even &#8220;disabled&#8221; did not work Sachin!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SachinKRaj</title>
		<link>http://blog.sachinkraj.com/understanding-json-syntax/#comment-6538</link>
		<dc:creator>SachinKRaj</dc:creator>
		<pubDate>Tue, 06 Dec 2011 14:38:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sachinkraj.com/?p=873#comment-6538</guid>
		<description>try this property &quot;disabled&quot;: &quot;disabled&quot; in place of hidden or invisible.</description>
		<content:encoded><![CDATA[<p>try this property &#8220;disabled&#8221;: &#8220;disabled&#8221; in place of hidden or invisible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sharath Chowdary</title>
		<link>http://blog.sachinkraj.com/understanding-json-syntax/#comment-6536</link>
		<dc:creator>Sharath Chowdary</dc:creator>
		<pubDate>Tue, 06 Dec 2011 06:44:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sachinkraj.com/?p=873#comment-6536</guid>
		<description>Sure</description>
		<content:encoded><![CDATA[<p>Sure</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SachinKRaj</title>
		<link>http://blog.sachinkraj.com/understanding-json-syntax/#comment-6535</link>
		<dc:creator>SachinKRaj</dc:creator>
		<pubDate>Tue, 06 Dec 2011 05:28:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sachinkraj.com/?p=873#comment-6535</guid>
		<description>Sharath Chowdary: I just saw your comment, will get it sorted asap and will reply to you here.</description>
		<content:encoded><![CDATA[<p>Sharath Chowdary: I just saw your comment, will get it sorted asap and will reply to you here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sharath Chowdary</title>
		<link>http://blog.sachinkraj.com/understanding-json-syntax/#comment-6310</link>
		<dc:creator>Sharath Chowdary</dc:creator>
		<pubDate>Wed, 30 Nov 2011 11:12:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sachinkraj.com/?p=873#comment-6310</guid>
		<description>Hi Sachin,

The below is the code:

{
    &quot;Customer Details&quot;: {
        &quot; Order ID&quot;: {
            &quot;type&quot;: &quot;STRING&quot;,
            &quot;allowNull&quot;: true,
			&quot;noCopy&quot;: true
        },
	&quot;Customer Name&quot;: {
            &quot;type&quot;: &quot;STRING&quot;,
            &quot;allowNull&quot;: true,
			&quot;noCopy&quot;: true
        },
	&quot;Customer ID&quot;: {
            &quot;type&quot;: &quot;STRING&quot;,
		&quot;allowNull&quot;: true,
		&quot;noCopy&quot;: true
	}
    },
    &quot;Contact&quot;: {
        &quot; Name of the Customer&quot;: {
            &quot;type&quot;: &quot;STRING&quot;,
            &quot;allowNull&quot;: true,
			&quot;noCopy&quot;: true
        },
        &quot;Phone/Mobile&quot;: {
            &quot;type&quot;: &quot;STRING&quot;,
            &quot;allowNull&quot;: true,
            &quot;noCopy&quot;: true
        },
        &quot;Email&quot;: {
            &quot;type&quot;: &quot;STRING&quot;,
            &quot;allowNull&quot;: true,
			&quot;noCopy&quot;: true
        },
	 &quot;BitRateUpStream&quot;: {
            &quot;type&quot;: &quot;STRING&quot;,
            &quot;allowNull&quot;: true,
			&quot;noCopy&quot;: true
        },
	 &quot;BitRateDownStream&quot;: {
            &quot;type&quot;: &quot;STRING&quot;,
            &quot;allowNull&quot;: true,
			&quot;noCopy&quot;: true
        },
	 &quot;Online Storage Space&quot;: {
            &quot;type&quot;: &quot;STRING&quot;,
            &quot;allowNull&quot;: true,
			&quot;noCopy&quot;: true
        },
        &quot;Number of Email Accounts&quot;: {
            &quot;type&quot;: &quot;STRING&quot;,
            &quot;allowNull&quot;: true,
			&quot;noCopy&quot;: true
       }
    },
    &quot;Asset&quot;: {
	 &quot;Status&quot;: {
 		&quot;type&quot;: &quot;STRING&quot;,
			&quot;picklist&quot;:[&quot;Available&quot;, &quot;Allocated&quot;]
        },
	&quot;WiMAX Accessory Type&quot;: {
            &quot;type&quot;: &quot;STRING&quot;,
		&quot;picklist&quot;:[&quot;Card&quot;, &quot;Modem&quot;]
        },
        &quot;Card/Modem No.&quot;: {
            &quot;type&quot;: &quot;INT&quot;,
            &quot;allowNull&quot;: true,
			&quot;noCopy&quot;: true
        }
    },
    &quot;Region Type&quot;: {
        &quot;Type&quot;: {
            &quot;type&quot;: &quot;STRING&quot;,
			&quot;picklist&quot;:[&quot;Fire Zone&quot;, &quot;Safety Zone&quot;, &quot;Room&quot;]
        }
    }
}


We want to make a field as read-only. We are unable to achieve it through &quot;hidden&quot; or &quot;invisible&quot;. Kindly guide us. Let us know in case you need further inputs. Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hi Sachin,</p>
<p>The below is the code:</p>
<p>{<br />
    &#8220;Customer Details&#8221;: {<br />
        &#8221; Order ID&#8221;: {<br />
            &#8220;type&#8221;: &#8220;STRING&#8221;,<br />
            &#8220;allowNull&#8221;: true,<br />
			&#8220;noCopy&#8221;: true<br />
        },<br />
	&#8220;Customer Name&#8221;: {<br />
            &#8220;type&#8221;: &#8220;STRING&#8221;,<br />
            &#8220;allowNull&#8221;: true,<br />
			&#8220;noCopy&#8221;: true<br />
        },<br />
	&#8220;Customer ID&#8221;: {<br />
            &#8220;type&#8221;: &#8220;STRING&#8221;,<br />
		&#8220;allowNull&#8221;: true,<br />
		&#8220;noCopy&#8221;: true<br />
	}<br />
    },<br />
    &#8220;Contact&#8221;: {<br />
        &#8221; Name of the Customer&#8221;: {<br />
            &#8220;type&#8221;: &#8220;STRING&#8221;,<br />
            &#8220;allowNull&#8221;: true,<br />
			&#8220;noCopy&#8221;: true<br />
        },<br />
        &#8220;Phone/Mobile&#8221;: {<br />
            &#8220;type&#8221;: &#8220;STRING&#8221;,<br />
            &#8220;allowNull&#8221;: true,<br />
            &#8220;noCopy&#8221;: true<br />
        },<br />
        &#8220;Email&#8221;: {<br />
            &#8220;type&#8221;: &#8220;STRING&#8221;,<br />
            &#8220;allowNull&#8221;: true,<br />
			&#8220;noCopy&#8221;: true<br />
        },<br />
	 &#8220;BitRateUpStream&#8221;: {<br />
            &#8220;type&#8221;: &#8220;STRING&#8221;,<br />
            &#8220;allowNull&#8221;: true,<br />
			&#8220;noCopy&#8221;: true<br />
        },<br />
	 &#8220;BitRateDownStream&#8221;: {<br />
            &#8220;type&#8221;: &#8220;STRING&#8221;,<br />
            &#8220;allowNull&#8221;: true,<br />
			&#8220;noCopy&#8221;: true<br />
        },<br />
	 &#8220;Online Storage Space&#8221;: {<br />
            &#8220;type&#8221;: &#8220;STRING&#8221;,<br />
            &#8220;allowNull&#8221;: true,<br />
			&#8220;noCopy&#8221;: true<br />
        },<br />
        &#8220;Number of Email Accounts&#8221;: {<br />
            &#8220;type&#8221;: &#8220;STRING&#8221;,<br />
            &#8220;allowNull&#8221;: true,<br />
			&#8220;noCopy&#8221;: true<br />
       }<br />
    },<br />
    &#8220;Asset&#8221;: {<br />
	 &#8220;Status&#8221;: {<br />
 		&#8220;type&#8221;: &#8220;STRING&#8221;,<br />
			&#8220;picklist&#8221;:["Available", "Allocated"]<br />
        },<br />
	&#8220;WiMAX Accessory Type&#8221;: {<br />
            &#8220;type&#8221;: &#8220;STRING&#8221;,<br />
		&#8220;picklist&#8221;:["Card", "Modem"]<br />
        },<br />
        &#8220;Card/Modem No.&#8221;: {<br />
            &#8220;type&#8221;: &#8220;INT&#8221;,<br />
            &#8220;allowNull&#8221;: true,<br />
			&#8220;noCopy&#8221;: true<br />
        }<br />
    },<br />
    &#8220;Region Type&#8221;: {<br />
        &#8220;Type&#8221;: {<br />
            &#8220;type&#8221;: &#8220;STRING&#8221;,<br />
			&#8220;picklist&#8221;:["Fire Zone", "Safety Zone", "Room"]<br />
        }<br />
    }<br />
}</p>
<p>We want to make a field as read-only. We are unable to achieve it through &#8220;hidden&#8221; or &#8220;invisible&#8221;. Kindly guide us. Let us know in case you need further inputs. Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SachinKRaj</title>
		<link>http://blog.sachinkraj.com/understanding-json-syntax/#comment-6309</link>
		<dc:creator>SachinKRaj</dc:creator>
		<pubDate>Wed, 30 Nov 2011 10:50:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sachinkraj.com/?p=873#comment-6309</guid>
		<description>Yeah sure will be able to help you. Could you please provide me the code?</description>
		<content:encoded><![CDATA[<p>Yeah sure will be able to help you. Could you please provide me the code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Muru</title>
		<link>http://blog.sachinkraj.com/understanding-json-syntax/#comment-6308</link>
		<dc:creator>Muru</dc:creator>
		<pubDate>Wed, 30 Nov 2011 10:20:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sachinkraj.com/?p=873#comment-6308</guid>
		<description>Hi,

How can i implement disable textfield using json?
Kindly help me for fixing the issue.

Many thanks,
Muru</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>How can i implement disable textfield using json?<br />
Kindly help me for fixing the issue.</p>
<p>Many thanks,<br />
Muru</p>
]]></content:encoded>
	</item>
</channel>
</rss>

