Date sorting is possible in version 1.0.2 ?
Columns containing date field in any format is not sorted at all.
My grid contains three field of which last is a date of format "dd mm yyyy". I have populated grid from database data i.e. javascript array.exerpts of code is as follows.
var obj = new Active.Controls.Grid;
var date1 = new Active.Formats.Date;
var string = new Active.Formats.String;
date1.setDataFormat("auto");
date1.setTextFormat("dd mmm yyyy");
var formats=[String,String,date1];
obj.setRowCount(<%=rowCount%>);
obj.setColumnCount(<%=colCount%>);
obj.setCellData(myData); //myData is javascript array
obj.setCellFormat([string,string,date1]);//error gives here
/*
Object does not support this method or property.
*/
obj.setColumnText(function(i){return myColumns[i]});//myColumn is javascript array for column header
document.write(obj);
I have searched the forum a lots but no there is no solution to this problem.Even in some downloaded example(which comes with downloaded bundle) all the values of date field are same date so that don't have to sort. I really wonder the grid can sort the date field or not.
Please help....
My grid contains three field of which last is a date of format "dd mm yyyy". I have populated grid from database data i.e. javascript array.exerpts of code is as follows.
var obj = new Active.Controls.Grid;
var date1 = new Active.Formats.Date;
var string = new Active.Formats.String;
date1.setDataFormat("auto");
date1.setTextFormat("dd mmm yyyy");
var formats=[String,String,date1];
obj.setRowCount(<%=rowCount%>);
obj.setColumnCount(<%=colCount%>);
obj.setCellData(myData); //myData is javascript array
obj.setCellFormat([string,string,date1]);//error gives here
/*
Object does not support this method or property.
*/
obj.setColumnText(function(i){return myColumns[i]});//myColumn is javascript array for column header
document.write(obj);
I have searched the forum a lots but no there is no solution to this problem.Even in some downloaded example(which comes with downloaded bundle) all the values of date field are same date so that don't have to sort. I really wonder the grid can sort the date field or not.
Please help....
Mrinmoy
July 14,