347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
|
if (table=="SessionsHistory"){
while (this.SessionTree.Rows.Count() > this.form.HistoryDepth){
currRow = this.SessionTree.Rows.Get(0);
this.SessionTree.Rows.Delete(currRow);
}
}
if (!sessionRow.Rows.Count()){
sessionsHistory.Rows.Delete(sessionRow);
}
//this.form.SessionsHistory = ValueToStringInternal(this.SessionTree);
},
saveSettings:function(){
this.form.SessionsHistory = ValueToStringInternal(this.SessionTree);
|
|
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
|
if (table=="SessionsHistory"){
while (this.SessionTree.Rows.Count() > this.form.HistoryDepth){
currRow = this.SessionTree.Rows.Get(0);
this.SessionTree.Rows.Delete(currRow);
}
}
if (!sessionRow.Rows.Count()){
//sessionsHistory.Rows.Delete(sessionRow);
}
//this.form.SessionsHistory = ValueToStringInternal(this.SessionTree);
},
saveSettings:function(){
this.form.SessionsHistory = ValueToStringInternal(this.SessionTree);
|