fs-danaus
2023-03-30 665b0603d09890014f982fdfbd6ec47938f504b0
1
2
3
4
5
6
7
8
9
10
// -----------------------------------------------------------------------------------------------------------
TGP.CanEditStyle = function(row,col){ 
if(!this.DynamicStyle) return false;
if(this.Edit) return this.Edit.Html;
var C = this.Cols[col?col:this.FCol]; if(C&&(C.NoStyle>1||this.DynamicStyle==1&&C.MainSec!=1)) return false;
if(!row) row = this.FRow; if(!row||row.Page) return false;
if((row.NoStyle==null?row.Def.NoStyle:row.NoStyle)>1||this.DynamicStyle==1&&row.Fixed) return false;
return true;
}
// -----------------------------------------------------------------------------------------------------------