var SaveStateService=function() {
SaveStateService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
SaveStateService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return SaveStateService._staticInstance.get_path();},
SaveTabIndex:function(tabIndex,succeededCallback, failedCallback, userContext) {
/// <param name="tabIndex" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'SaveTabIndex',false,{tabIndex:tabIndex},succeededCallback,failedCallback,userContext); },
SaveIndexFilterCollapsed:function(collapsed,succeededCallback, failedCallback, userContext) {
/// <param name="collapsed" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'SaveIndexFilterCollapsed',false,{collapsed:collapsed},succeededCallback,failedCallback,userContext); },
SaveIndexFilterState:function(option,selected,succeededCallback, failedCallback, userContext) {
/// <param name="option" type="String">System.String</param>
/// <param name="selected" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'SaveIndexFilterState',false,{option:option,selected:selected},succeededCallback,failedCallback,userContext); }}
SaveStateService.registerClass('SaveStateService',Sys.Net.WebServiceProxy);
SaveStateService._staticInstance = new SaveStateService();
SaveStateService.set_path = function(value) {
SaveStateService._staticInstance.set_path(value); }
SaveStateService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return SaveStateService._staticInstance.get_path();}
SaveStateService.set_timeout = function(value) {
SaveStateService._staticInstance.set_timeout(value); }
SaveStateService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return SaveStateService._staticInstance.get_timeout(); }
SaveStateService.set_defaultUserContext = function(value) { 
SaveStateService._staticInstance.set_defaultUserContext(value); }
SaveStateService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return SaveStateService._staticInstance.get_defaultUserContext(); }
SaveStateService.set_defaultSucceededCallback = function(value) { 
 SaveStateService._staticInstance.set_defaultSucceededCallback(value); }
SaveStateService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return SaveStateService._staticInstance.get_defaultSucceededCallback(); }
SaveStateService.set_defaultFailedCallback = function(value) { 
SaveStateService._staticInstance.set_defaultFailedCallback(value); }
SaveStateService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return SaveStateService._staticInstance.get_defaultFailedCallback(); }
SaveStateService.set_path("/WebServices/SaveStateService.asmx");
SaveStateService.SaveTabIndex= function(tabIndex,onSuccess,onFailed,userContext) {
/// <param name="tabIndex" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
SaveStateService._staticInstance.SaveTabIndex(tabIndex,onSuccess,onFailed,userContext); }
SaveStateService.SaveIndexFilterCollapsed= function(collapsed,onSuccess,onFailed,userContext) {
/// <param name="collapsed" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
SaveStateService._staticInstance.SaveIndexFilterCollapsed(collapsed,onSuccess,onFailed,userContext); }
SaveStateService.SaveIndexFilterState= function(option,selected,onSuccess,onFailed,userContext) {
/// <param name="option" type="String">System.String</param>
/// <param name="selected" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
SaveStateService._staticInstance.SaveIndexFilterState(option,selected,onSuccess,onFailed,userContext); }
