IG Tool Tips
==JavaScript Initialization Code of Attribute Property of GI =====
function(config) {
config.defaultGridViewOptions =
{
rowHeader: "sequence", //Sequence Number
// reorderColumns: true,
noStretch: true,
persistSelection: true,
//resizeColumns: false , //Not allowed Column resize
// multiple: false, // Redio Box instead of Check Box
// selectAll: false, // Not allowed Select All at Header level
noHeaderActivate: true ,
tooltip: { content: function(callback, model, recordMeta, colMeta, columnDef )
{
var text = null;
if ( columnDef && recordMeta)
{
if ( columnDef.property === "DESCRLNG" )
{text = model.getValue( recordMeta.record, "DESCRLNG" );}
}
return text;
}
}
};
}
Comments
Post a Comment