Click here to Skip to main content
16,021,112 members

Comments by ramukhsakarp (Top 3 by date)

ramukhsakarp 14-Jan-13 23:13pm View    
var newcontent = document.createElement('li');
$.each(data, function (i, item) {
newcontent.appendChild(document.createTextNode(item.ShopName));
newcontent.appendChild(document.createElement('br'));
newcontent.appendChild(document.createTextNode(item.ShopAddress+" "));
newcontent.appendChild(document.createElement('br'));
newcontent.appendChild(document.createElement('br'));
newcontent.appendChild(document.createTextNode(item.ShopCategory));
newcontent.appendChild(document.createElement('br'));
newcontent.appendChild(document.createTextNode(" Rating: 3 Stars"));
newcontent.appendChild(document.createElement('br'));
newcontent.appendChild(document.createElement('br'));
});
then to display the result, create/use any div in your main page, like document.getElementById("anyDiv").appendChild(newcontent);

hope this works!!!
ramukhsakarp 6-Jan-13 23:34pm View    
try this link:
Note: drag the color and drop in cart.
http://jsfiddle.net/rCVC3/1/

You can't drag a control directly instead you can use a "handle" to drag any html controls.

Reply if You find this link useful.
ramukhsakarp 3-Jan-13 3:51am View    
1) After deployment, you will have a File with .msi extension like .txt[TEXT FILE] (which is present in the deployed directory),
2) Copy the .msi and place in D:\ or C:\
3) then run command prompt and do the steps said by Kiran Susarla

E.g msiexec.exe /i " {path of the .msi file } /l*v "{file path to the log file}"
i.e msiexec.exe /i "D:\MyApplication.msi" /l*v "outputlog.txt" (if .msi is in D:\ directory)
or
i.e msiexec.exe /i "C:\MyApplication.msi" /l*v "outputlog.txt" (if .msi is in C:\ directory)