You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.3 KiB
JavaScript
35 lines
1.3 KiB
JavaScript
//CdnPath=http://ajax.aspnetcdn.com/ajax/4.5.1/1/DetailsView.js
|
|
function DetailsView() {
|
|
this.pageIndex = null;
|
|
this.dataKeys = null;
|
|
this.createPropertyString = DetailsView_createPropertyString;
|
|
this.setStateField = DetailsView_setStateValue;
|
|
this.getHiddenFieldContents = DetailsView_getHiddenFieldContents;
|
|
this.stateField = null;
|
|
this.panelElement = null;
|
|
this.callback = null;
|
|
}
|
|
function DetailsView_createPropertyString() {
|
|
return createPropertyStringFromValues_DetailsView(this.pageIndex, this.dataKeys);
|
|
}
|
|
function DetailsView_setStateValue() {
|
|
this.stateField.value = this.createPropertyString();
|
|
}
|
|
function DetailsView_OnCallback (result, context) {
|
|
var value = new String(result);
|
|
var valsArray = value.split("|");
|
|
var innerHtml = valsArray[2];
|
|
for (var i = 3; i < valsArray.length; i++) {
|
|
innerHtml += "|" + valsArray[i];
|
|
}
|
|
context.panelElement.innerHTML = innerHtml;
|
|
context.stateField.value = createPropertyStringFromValues_DetailsView(valsArray[0], valsArray[1]);
|
|
}
|
|
function DetailsView_getHiddenFieldContents(arg) {
|
|
return arg + "|" + this.stateField.value;
|
|
}
|
|
function createPropertyStringFromValues_DetailsView(pageIndex, dataKeys) {
|
|
var value = new Array(pageIndex, dataKeys);
|
|
return value.join("|");
|
|
}
|