Click here to Skip to main content
16,016,345 members

Comments by AnUpAm 786 (Top 5 by date)

AnUpAm 786 8-Jan-15 0:26am View    
margin-left works very well but i do not understand how i can change this margin-left's value... suppose i want margin-left:-65px; is it possible without changing in asSwitch.js file?
AnUpAm 786 7-Jan-15 4:51am View    
Deleted
margin-left works very well but if i do not understand how i can change this margin-left's value... suppose i want margin-left:-65px; is it possible without changing in asSwitch.js file?
AnUpAm 786 14-Oct-14 2:34am View    
sorry Rohan ..... i did not show whole code but .... i am trying with ..

$("#grid").jqGrid({
datatype: function () {
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "DesktopModules/S_Anupam/anupamWebService.asmx/GridList",
data: "{}",
dataType: "json",
success: function (data) {
var thegrid = $("#grid");
for (var i = 0; i < data.d.length; i++)
{
thegrid.addRowData(data.d[i].Id, { "Id": data.d[i].Id, "Name": data.d[i].Name, "EmailId": data.d[i].EmailId, "Location": data.d[i].Location });

}
},
error: function (result) {
alert("Error");
}
});
},
colNames: ['Id', 'Name', 'EmailId', 'Location'],
colModel: [
{ name: 'Id', stype: 'text', index: 'Id', width: 250 },
{ name: 'Name', stype: 'text', index: 'Name', width: 150 },
{ name: 'EmailId', stype: 'text', index: 'EmailId', width: 180 },
{ name: 'Location', stype: 'text', index: 'Location', width: 100 }
],
rowNum: "10",
mytype: 'GET',
loadonce: true,
rowList: [10, 20, 30],
viewrecords: true,
});
AnUpAm 786 14-Oct-14 1:12am View    
Deleted
thanks for your url ..
AnUpAm 786 14-Oct-14 1:11am View    
Deleted
sorry Rohan ..... i did not show whole code but .... i am trying with ..

$("#grid").jqGrid({
datatype: function () {
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "DesktopModules/Shopism_Anupam/anupamWebService.asmx/GridList",
data: "{}",
dataType: "json",
success: function (data) {
var thegrid = $("#grid");
for (var i = 0; i < data.d.length; i++)
{
thegrid.addRowData(data.d[i].Id, { "Id": data.d[i].Id, "Name": data.d[i].Name, "EmailId": data.d[i].EmailId, "Location": data.d[i].Location });

}
},
error: function (result) {
alert("Error");
}
});
},
colNames: ['Id', 'Name', 'EmailId', 'Location'],
colModel: [
{ name: 'Id', stype: 'text', index: 'Id', width: 250 },
{ name: 'Name', stype: 'text', index: 'Name', width: 150 },
{ name: 'EmailId', stype: 'text', index: 'EmailId', width: 180 },
{ name: 'Location', stype: 'text', index: 'Location', width: 100 }
],
rowNum: "10",
mytype: 'GET',
loadonce: true,
rowList: [10, 20, 30],
viewrecords: true,
});