/// <summary>
 /// 
 /// </summary>
 /// <param name="mode">Tells us if we're in edit or display mode</param>
 /// <param name="type">The type of special control we're adding</param>
 /// <param name="colname">The display name of the column</param>
 /// <param name="id">The ID of the control we're adding</param>
 /// <param name="ddlds">A list of the values we want to bind to the created control</param>
 /// <param name="isReadOnly">True if this column is read only, false otherwise</param>
 /// <param name="isNumeric">True if this column is numeric, false otherwise</param>
 public HPMGridViewTemplate(ListItemType mode, HPMGridViewTemplateType type, string colname, string id, Dictionary<UInt32, string> ddlds, bool isReadOnly, bool isNumeric)
 {
     m_Mode = mode;
     m_ColumnName = colname;
     m_ID = id;
     m_Type = type;
     m_Ddlds = ddlds;
     m_IsReadOnly = isReadOnly;
     m_IsNumeric = isNumeric;
 }
 /// <summary>
 ///
 /// </summary>
 /// <param name="mode">Tells us if we're in edit or display mode</param>
 /// <param name="type">The type of special control we're adding</param>
 /// <param name="colname">The display name of the column</param>
 /// <param name="id">The ID of the control we're adding</param>
 /// <param name="ddlds">A list of the values we want to bind to the created control</param>
 /// <param name="isReadOnly">True if this column is read only, false otherwise</param>
 /// <param name="isNumeric">True if this column is numeric, false otherwise</param>
 public HPMGridViewTemplate(ListItemType mode, HPMGridViewTemplateType type, string colname, string id, Dictionary <UInt32, string> ddlds, bool isReadOnly, bool isNumeric)
 {
     m_Mode       = mode;
     m_ColumnName = colname;
     m_ID         = id;
     m_Type       = type;
     m_Ddlds      = ddlds;
     m_IsReadOnly = isReadOnly;
     m_IsNumeric  = isNumeric;
 }