Click here to Skip to main content
15,881,172 members
Articles / Web Development / ASP.NET

SDXGrid V1.0.1.5 (VS 2005)

Rate me:
Please Sign up or sign in to vote.
4.71/5 (41 votes)
14 Jun 20074 min read 88.7K   3.2K   82  
SDXGrid, is a comprehensive data grid component for Microsoft .NET 2.0 web application developers, easing the exhausting process of implementing the necessary code for sorting, navigation, grouping, searching, and real time data editing in a simple data representation object.
// COLUMNS
function SDX_Columns(_RootObject)
{
 this.RootObject = _RootObject ;
 this.Columns=new Array();
 this.Column=Column;
 this.InsertColumn=InsertColumn;
 this.GetHTMLOutPut = GetHTMLOutPut ;
 this.GetHTMLOutPuts = GetHTMLOutPuts;
 this.GetColumnsDisplayInTable = GetColumnsDisplayInTable ;
 this.GetVisibleColumns = GetVisibleColumns ;
 this.Initialize=Initialize;
 this.VisibleColumns=null;
 this.GetColumnsXML = GetColumnsXML
 // Column
 function Column(_RootObject, _Columns, _ID, _Field, _Key, _Header, _Visible, _Class)
 {
  this.RootObject = _RootObject ;
  this.Columns = _Columns ;
  this.ID = _ID ;
  this.Key = _Key ;
  this.Field = _Field ;
  this.Header = _Header ;
  this.Visible = _Visible ;
  this.DataType = "" ;
  this.ColumnName = "" ;
  this.AllowDBNull = true ; // NOT IMPLEMENTED
  this.AutoIncrement = false ; // NOT IMPLEMENTED
  this.AutoIncrementStep = 1 ; // NOT IMPLEMENTED
  this.DefaultValue = _Field.DefaultValue ;
  this.ReadOnly = false ; // NOT IMPLEMENTED
  this.Unique = false ; // NOT IMPLEMENTED
  this.LastAutoIncrementID = 0 ;
  this.Class = _Class;
  this.GetHTMLOutPut = GetHTMLOutPut ;
  this.GetHTMLOutPutX = GetHTMLOutPutX ;
  function GetEvalObjectString()
  {
   return this.ParentObject.GetEvalObjectString() + "_Columns" + ID ;
  }
  function GetHTMLOutPut(_Table)
  {
   var sortImageHTML = "" ;
   if( (_Table.Navigator.SortRotation == 1) && (_Table.Navigator.SortColumnIndex == this.ID) )
   {
    sortImageHTML = "<img height=15 width=15 src=\"" + this.RootObject.ResourcePath + "images\\sp_btnDownArrow.gif\">"
   }
   else if( (_Table.Navigator.SortRotation == 0) && (_Table.Navigator.SortColumnIndex == this.ID) )
   {
    sortImageHTML = "<img height=15 width=15 src=\"" + this.RootObject.ResourcePath + "images\\sp_btnUpArrow.gif\">"
   }
   var html = "" ;
   var dragHTML = "<table><tr><td width=100% class=SDX_Column_Header>" + this.Header + "</td></tr></table>" ;
   html += "<td style='cursor:default' " + this.RootObject.Styles.GetStyleHTML(this.RootObject.Styles.HeaderStyle) +
           (this.RootObject.AllowGroupBy==true?" onmousedown=\"" + this.RootObject.Name + ".Events.dragStart(event, 'userimg','" + dragHTML + "'," + _Table.GetEvalObjectString() + ".RootObject.Columns.Columns[" + this.ID + "])\"":"") +
           (this.RootObject.AllowSorting==true?" onclick=\"" + _Table.GetEvalObjectString() + ".Navigator.Sort(" + this.ID + ")\"":"") +
           "><table><tr><td width=100% " + this.RootObject.Styles.GetStyleHTML(this.RootObject.Styles.HeaderStyle) + ">" + this.Header + "</td><td width=10>" + sortImageHTML + "</td></tr></table></td>";
   return html;
  }
  function GetHTMLOutPutX(isFirstColumn)
  {
   var sortImageHTML = "" ;
   var html = "" ;
   var dragHTML = "<table><tr><td width=100% class=SDX_Column_Header>" + this.Header + "</td></tr></table>" ;
   var colspan = "1" ;
   if(isFirstColumn)
   {
    colspan = this.RootObject.GroupBy.Columns.length
   }
   html += "<td " + this.RootObject.Styles.GetStyleHTML(this.RootObject.Styles.HeaderStyle) + " colspan=" + colspan + " style='cursor:hand' onmousedown=\"" + this.RootObject.Name + ".Events.dragStart(event, 'userimg','" + dragHTML + "'," + this.RootObject.GetEvalObjectString() + ".Columns.Columns[" + this.ID + "])\"  ><table width=100%><tr><td width=100% " + this.RootObject.Styles.GetStyleHTML(this.RootObject.Styles.HeaderStyle) + " >" + this.Header + "</td><td width=10>" + sortImageHTML + "</td></tr></table></td>";
   return html;
  }

 }
 function GetColumnsXML()
 {
   var xml = "" ;
   for(var nX in this.Columns)
   {
       xml += "<Column>" +
                   "<Name>" + this.Columns[nX].ColumnName + "</Name>" +
                   "<DataType>" + this.Columns[nX].DataType + "</DataType>" +
                   "<AllowDBNull>" + this.Columns[nX].AllowDBNull + "</AllowDBNull>" +
                   "<AutoIncrement>" + this.Columns[nX].AutoIncrement + "</AutoIncrement>" +
                   "<AutoIncrementStep>" + this.Columns[nX].AutoIncrementStep + "</AutoIncrementStep>" +
                   "<DefaultValue>" + this.Columns[nX].DefaultValue + "</DefaultValue>" +
                   "<ReadOnly>" + this.Columns[nX].ReadOnly + "</ReadOnly>" +
                   "<Unique>" + this.Columns[nX].Unique + "</Unique>" +
                 "</Column>"; 
   }
   return xml;
 }
 function InsertColumn( _Field, _Key, _Header, _Visible, _Class)
 {
  this.Columns[this.Columns.length] = new Column(this.RootObject, this, this.Columns.length, _Field, _Key, _Header, _Visible, _Class)
  return this.Columns[this.Columns.length-1] ;
 }
 function GetColumnsDisplayInTable()
 {
  var columnsDisplayInTable = new Array() ;
  for(var nX in this.Columns)
  {
   if(this.Columns[nX].Visible==true && this.RootObject.GroupBy.IsGroupByColumn(nX)==false)
   {
    columnsDisplayInTable[columnsDisplayInTable.length] = this.Columns[nX] ;
   }
  }
  return columnsDisplayInTable ;
 }
 function GetVisibleColumns()
 {
  var columnsDisplayInTable = new Array() ;
  for(var nX in this.Columns)
  {
   if(this.Columns[nX].Visible==true)
   {
    columnsDisplayInTable[columnsDisplayInTable.length] = this.Columns[nX] ;
   }
  }
  return columnsDisplayInTable ;
 }
 function Initialize()
 {
 }
 function GetHTMLOutPut(_Table)
 {
  var html = "<td " + this.RootObject.Styles.GetStyleHTML(this.RootObject.Styles.HeaderStyle) + ">&nbsp;</td>" ;
  columns = this.GetColumnsDisplayInTable() ;
  for(var nX in columns)
  {
    html += columns[nX].GetHTMLOutPut(_Table) ;
  }
  return html ;
 }
 function GetHTMLOutPuts()
 {
  var html = "<td class=\"sdxRow2\" align=\"center\">&nbsp;</td>" ;
  columns = this.GetVisibleColumns() ;
  var isFirstColumn = true;
  for(var nX in columns)
  {
    html += columns[nX].GetHTMLOutPutX(isFirstColumn) ;
    isFirstColumn = false ;
  }
  return html ;
 }
}       
 

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions