Skip to content Skip to sidebar Skip to footer

Transform Javascript Code To Json And Vice Versa

I'm working on a small project in which I will work with dgrid dojo, the dgrid must be customized according to the profile of the person if he's administrator or simple user. The

Solution 1:

Since functions aren't a valid part of JSON, you'd need to do some amount of processing to go between JSON and dgrid column plugins. For example, in the case of editor, you could just test each object for presence of the editor property, and if found, apply the editor function around it when you actually create the column structure from your JSON.

Solution 2:

I'm not sure regarding Dojo. But if you want to convert a JS Object to JSON then simply:

var jsonString = JSON.stringify(objectGoesHere);

Post a Comment for "Transform Javascript Code To Json And Vice Versa"