|
|
@@ -603,6 +603,7 @@ MWF.xApplication.query.ViewDesigner.Property = MWF.FVProperty = new Class({
|
|
|
}
|
|
|
}.bind(this));
|
|
|
select.addEvent("change", function(e){
|
|
|
+ debugger;
|
|
|
var v = select.options[select.selectedIndex].value;
|
|
|
if (v!="none"){
|
|
|
var flag = false;
|
|
|
@@ -629,6 +630,7 @@ MWF.xApplication.query.ViewDesigner.Property = MWF.FVProperty = new Class({
|
|
|
var group = this.view.data.data.group;
|
|
|
if (group.column==this.data.column) radios[0].set("checked", true);
|
|
|
radios.addEvent("click", function(e){
|
|
|
+ debugger;
|
|
|
if (this.checked){
|
|
|
if (this.value=="true") {
|
|
|
_self.view.data.data.group.column = _self.data.column;
|
|
|
@@ -641,6 +643,9 @@ MWF.xApplication.query.ViewDesigner.Property = MWF.FVProperty = new Class({
|
|
|
});
|
|
|
}
|
|
|
});
|
|
|
+ ( _self.view.data.data.selectList ).each(function(s) {
|
|
|
+ if( s.column !== _self.data.column )s.groupEntry = false;
|
|
|
+ });
|
|
|
this.set("checked", true);
|
|
|
}else{
|
|
|
if (group.column ==_self.data.column) _self.view.data.data.group = {};
|