Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
I was trying to update a part of element in edge.xml file, for that I tried the converting edge.xml file to infotable and then written the modification code, now in order to write the file back to repository I need my infotable to convert back to XML format. How can I make it possible.
There are JSON to XML converters, that probably would be the easiest route.
Thanks for the suggestion, but my result is coming in the form of Infotable,
Hi Lipsa Das,
You can change Infotable to JSON simply by:
var params = {
table: undefined /* INFOTABLE */
};
// result: JSON
var result = Resources["InfoTableFunctions"].ToJSON(params);
Thanks but can you also give me the example of JSON to XML conversion because I want my result to come as an XML Format