Updated LoadRicoClient for asp and php, so all asp and php examples are working again...
[infodrom/rico3] / bin / Rico.xml
index 3fd57b5..2163a66 100644 (file)
@@ -6,24 +6,42 @@ Rico
 </name>\r
 </assembly>\r
 <members>\r
-<member name="M:Rico.TableCollection.IndexOf(System.String)">\r
+<member name="P:Rico.TreeResponse.ErrorMsg">\r
        <summary>\r
- Returns the index of the table with TblAlias or -1 if not found\r
+ May contain the text of an error message that occurred outside this control prior to rendering\r
  </summary>\r
-       <param name="TblAlias"></param>\r
-</member><member name="P:Rico.My.Resources.Resources.ResourceManager">\r
+       <value></value>\r
+       <returns></returns>\r
+       <remarks></remarks>\r
+</member><member name="P:Rico.TreeResponse.dbConnection">\r
        <summary>\r
-  Returns the cached ResourceManager instance used by this class.\r
-</summary>\r
-</member><member name="P:Rico.My.Resources.Resources.Culture">\r
+ Database connection object. Required only if sqlText is used.\r
+ </summary>\r
+       <value></value>\r
+       <remarks></remarks>\r
+</member><member name="P:Rico.TreeResponse.SqlText">\r
        <summary>\r
-  Overrides the current thread's CurrentUICulture property for all\r
-  resource lookups using this strongly typed resource class.\r
-</summary>\r
-</member><member name="T:Rico.My.Resources.Resources">\r
+ Optional sql query to execute, must return 5 columns matching WriteTreeRow parameters \r
+ </summary>\r
+       <value></value>\r
+       <returns></returns>\r
+       <remarks></remarks>\r
+</member><member name="M:Rico.TreeResponse.WriteTreeRow(System.Object,System.Object,System.Object,System.Object,System.Object)">\r
        <summary>\r
-  A strongly-typed resource class, for looking up localized strings, etc.\r
-</summary>\r
+ Adds an entry that will be returned with the results. Often used to add the root node.\r
+ </summary>\r
+       <param name="parentID">id of parent, "" if this is the root</param>\r
+       <param name="ID">id that uniquely identifies this node in the tree</param>\r
+       <param name="description">description displayed to the user</param>\r
+       <param name="containerORleaf">"L" or 0 = leaf, "C" or non-zero = container</param>\r
+       <param name="selectable">0=not selectable, 1=selectable</param>\r
+       <remarks></remarks>\r
+</member><member name="T:Rico.TreeResponse">\r
+       <summary>\r
+ Use this class on a page that responds to AJAX requests from a Rico Tree Control\r
+ This class automatically disables caching of the response and sets the response type to text/xml\r
+ </summary>\r
+       <remarks></remarks>\r
 </member><member name="T:Rico.sqlParse.sqlColumn">\r
        <summary>\r
  Represents a column in the select statement\r
@@ -124,6 +142,173 @@ Rico
  Holds a SQL select statement. Methods to load/parse a select statement from a string and to reassemble it in various ways.\r
  Does not handle union queries.\r
  </summary>\r
+</member><member name="P:Rico.SimpleCol.Width">\r
+       <summary>\r
+ Initial width of the column in pixels. Default is to use SimpleGrid.defaultWidth.\r
+ </summary>\r
+</member><member name="F:Rico.Column.canSort">\r
+       <summary>\r
+ Is the user allowed to sort the column? Default is true.\r
+ </summary>\r
+       <remarks></remarks>\r
+</member><member name="F:Rico.Column.canDrag">\r
+       <summary>\r
+ Is the user allowed to drag a column value? Default is false.\r
+ </summary>\r
+       <remarks></remarks>\r
+</member><member name="F:Rico.Column.canFilter">\r
+       <summary>\r
+ Is the user allowed to filter the column? Default is true.\r
+ </summary>\r
+       <remarks></remarks>\r
+</member><member name="F:Rico.Column.control">\r
+       <summary>\r
+ Javascript code to create a control object, which changes the way the column data is rendered.\r
+ The disadvantage of using this approach is that the altered rendering does not get reflected in exports.\r
+ A set of controls is defined in ricoLiveGridControls.js or the developer can create their own.\r
+ </summary>\r
+       <remarks></remarks>\r
+</member><member name="F:Rico.Column.filterUI">\r
+       <summary>\r
+ If the AutoFilter option is enabled for the grid, then filterUI will control how each column is filtered. If filterUI is:\r
+ <list type="bullet">\r
+                       <item><description>null or omitted, then no filter is displayed for the column.</description></item>\r
+                       <item><description>'t' - will generate a text box filter and the records being displayed are filtered as the user types. May be followed by a number to indicate the size of the text box (default size is 10). </description></item>\r
+                       <item><description>'s' - will generate a select list filter with all possible column values contained in the list. Populated using a 'select distinct' query if the grid's source is a SQL query.</description></item>\r
+                       <item><description>'m' - will generate multi-select checklist filter, with a checkbox text to each item.</description></item>\r
+               </list>\r
+       </summary>\r
+       <remarks></remarks>\r
+</member><member name="F:Rico.Column.filterColId">\r
+       <summary>\r
+ This setting allows the filterUI to filter a different column than where it is displayed.\r
+ This is particularly useful for dates, where you can show a year selection on an OrderDate date column for example,\r
+ but actually have it filter a hidden column OrderYear=year(OrderDate).\r
+ </summary>\r
+       <remarks></remarks>\r
+</member><member name="F:Rico.Column.ConfirmDeleteColumn">\r
+       <summary>\r
+ The text content of this column will be included in delete confirmation messages.\r
+ </summary>\r
+       <remarks></remarks>\r
+</member><member name="F:Rico.Column.multiplier">\r
+       <summary>\r
+ If column is a number, this value can be used to multiply the database value by a factor before displaying it in the grid.\r
+ Default is 1. Automatically set to 100 if DataType is percent.\r
+ </summary>\r
+       <remarks></remarks>\r
+</member><member name="F:Rico.Column.decPlaces">\r
+       <summary>\r
+ If column is a number, this is the number of digits displayed to the right of the decimal point. Default is 0.\r
+ If DataType is dollar or euro, then decPlaces is automatically set to 2.\r
+ </summary>\r
+       <remarks></remarks>\r
+</member><member name="F:Rico.Column.thouSep">\r
+       <summary>\r
+ If column is a number, display the value with a thousands separator? Default is true.\r
+ </summary>\r
+       <remarks></remarks>\r
+</member><member name="F:Rico.Column.negSign">\r
+       <summary>\r
+ Specifies how negative numbers should be displayed. Possible values:\r
+ <list>\r
+                       <item><description>L=leading minus (default)</description></item>\r
+                       <item><description>T=trailing minus</description></item>\r
+                       <item><description>P=parentheses</description></item>\r
+               </list>\r
+       </summary>\r
+</member><member name="F:Rico.Column.prefix">\r
+       <summary>\r
+ If column is a number, this string is prepended to the number before display.\r
+ Useful for currency symbols.\r
+ </summary>\r
+</member><member name="F:Rico.Column.suffix">\r
+       <summary>\r
+ If column is a number, this string is appended to the number before display.\r
+ Useful for percentages and temperature values. Automatically set to % if DataType is percent.\r
+ </summary>\r
+</member><member name="F:Rico.Column.HdgStyleID">\r
+       <summary>\r
+ Used to give the column heading a specific style.\r
+ In most cases this is not necessary, as the heading will be styled according to the theme.\r
+ </summary>\r
+</member><member name="F:Rico.Column.isNullable">\r
+       <summary>\r
+ Database property - set automatically by LiveGrid.GetColumnInfoFromDb()\r
+ </summary>\r
+</member><member name="F:Rico.Column.Writeable">\r
+       <summary>\r
+ Database property - set automatically by LiveGrid.GetColumnInfoFromDb()\r
+ </summary>\r
+</member><member name="F:Rico.Column.isKey">\r
+       <summary>\r
+ Database property - set automatically by LiveGrid.GetColumnInfoFromDb()\r
+ </summary>\r
+</member><member name="F:Rico.Column.Length">\r
+       <summary>\r
+ Database property - set automatically by LiveGrid.GetColumnInfoFromDb()\r
+ </summary>\r
+</member><member name="F:Rico.Column.TypeName">\r
+       <summary>\r
+ Database property - set automatically by LiveGrid.GetColumnInfoFromDb()\r
+ </summary>\r
+</member><member name="F:Rico.Column.ColGroupIdx">\r
+       <summary>\r
+ For internal use\r
+ </summary>\r
+</member><member name="P:Rico.Column.Heading">\r
+       <summary>\r
+ Text displayed in the column heading.\r
+ </summary>\r
+</member><member name="P:Rico.Column.Width">\r
+       <summary>\r
+ Initial width of the column in pixels. Default is to use LiveGrid.defaultWidth.\r
+ </summary>\r
+</member><member name="M:Rico.Column.NumberFormat">\r
+       <summary>\r
+ Returns an Excel-type number format string based on decPlaces, thouSep, prefix.\r
+ </summary>\r
+       <returns></returns>\r
+       <remarks></remarks>\r
+</member><member name="P:Rico.Column.DataType">\r
+       <summary>\r
+ Type of data stored in the column.\r
+ </summary>\r
+       <value></value>\r
+       <returns></returns>\r
+       <remarks></remarks>\r
+</member><member name="T:Rico.Column">\r
+       <summary>\r
+ Base class for a LiveGrid column\r
+ </summary>\r
+</member><member name="F:Rico.EditCol.FormView">\r
+       <summary>\r
+               <list type="table">\r
+                       <item><term>True</term><description>Item is shown on the entry form (default)</description></item>\r
+                       <item><term>False</term><description>Item is not shown on the form</description></item>\r
+               </list>\r
+       </summary>\r
+</member><member name="P:Rico.EditCol.EntryType">\r
+       <summary>\r
+ Code indicating the ui to be used for data entry\r
+ <list type="table">\r
+                       <item><term>TA</term><description>Text Area</description></item>\r
+                       <item><term>R</term><description>Radio button list</description></item>\r
+                       <item><term>RL</term><description>Radio buttons via lookup (field is a foreign key)</description></item>\r
+                       <item><term>S</term><description>Select list</description></item>\r
+                       <item><term>SL</term><description>Select list via lookup (field is a foreign key)</description></item>\r
+                       <item><term>CL</term><description>Custom widget via lookup (field is a foreign key)</description></item>\r
+                       <item><term>N</term><description>Select list of distinct column values, use allowed to add new values</description></item>\r
+                       <item><term>B</term><description>Text, non-blank</description></item>\r
+                       <item><term>T</term><description>Text</description></item>\r
+                       <item><term>I</term><description>Integer</description></item>\r
+                       <item><term>F</term><description>Floating point number</description></item>\r
+                       <item><term>tinyMCE</term><description>Rich text via tinyMCE</description></item>\r
+                       <item><term>D</term><description>Date</description></item>\r
+                       <item><term>TS</term><description>Time stamp</description></item>\r
+                       <item><term>H</term><description>Hidden</description></item>\r
+               </list>\r
+       </summary>\r
 </member><member name="F:Rico.LiveGridBase.largeBufferSize">\r
        <summary>\r
  controls size of client buffer and AJAX fetch size\r
@@ -214,42 +399,11 @@ Rico
        <summary>\r
  Class to define a LiveGrid\r
  </summary>\r
-</member><member name="P:Rico.TreeResponse.ErrorMsg">\r
-       <summary>\r
- May contain the text of an error message that occurred outside this control prior to rendering\r
- </summary>\r
-       <value></value>\r
-       <returns></returns>\r
-       <remarks></remarks>\r
-</member><member name="P:Rico.TreeResponse.dbConnection">\r
-       <summary>\r
- Database connection object. Required only if sqlText is used.\r
- </summary>\r
-       <value></value>\r
-       <remarks></remarks>\r
-</member><member name="P:Rico.TreeResponse.SqlText">\r
-       <summary>\r
- Optional sql query to execute, must return 5 columns matching WriteTreeRow parameters \r
- </summary>\r
-       <value></value>\r
-       <returns></returns>\r
-       <remarks></remarks>\r
-</member><member name="M:Rico.TreeResponse.WriteTreeRow(System.Object,System.Object,System.Object,System.Object,System.Object)">\r
-       <summary>\r
- Adds an entry that will be returned with the results. Often used to add the root node.\r
- </summary>\r
-       <param name="parentID">id of parent, "" if this is the root</param>\r
-       <param name="ID">id that uniquely identifies this node in the tree</param>\r
-       <param name="description">description displayed to the user</param>\r
-       <param name="containerORleaf">"L" or 0 = leaf, "C" or non-zero = container</param>\r
-       <param name="selectable">0=not selectable, 1=selectable</param>\r
-       <remarks></remarks>\r
-</member><member name="T:Rico.TreeResponse">\r
+</member><member name="M:Rico.TableCollection.IndexOf(System.String)">\r
        <summary>\r
- Use this class on a page that responds to AJAX requests from a Rico Tree Control\r
- This class automatically disables caching of the response and sets the response type to text/xml\r
+ Returns the index of the table with TblAlias or -1 if not found\r
  </summary>\r
-       <remarks></remarks>\r
+       <param name="TblAlias"></param>\r
 </member><member name="P:Rico.GridBase.gridVar">\r
        <summary>\r
  Name of grid Javascript object\r
@@ -331,121 +485,11 @@ Rico
        <summary>\r
  This class defines properties and functions used in SimpleGrid, LiveGrid and LiveGridEdit classes.\r
  </summary>\r
-</member><member name="F:Rico.LoadClient.ImgHeading">\r
+</member><member name="P:Rico.StyleBase.bold">\r
        <summary>\r
- Background image for grid headings and window titles.\r
- Should be left unset, as it is used only for the grayedout theme (in which case it is set automatically).\r
+ True if the text should be displayed using a bold font\r
  </summary>\r
-</member><member name="F:Rico.LoadClient.BaseLib">\r
-       <summary>\r
- The base Javascript library to load from http://ajax.googleapis.com/ajax/libs/, possible values include:\r
- <list type="bullet">\r
-                       <item><description>prototype/1.6/prototype.js</description></item>\r
-                       <item><description>prototype/1.7/prototype.js</description></item>\r
-                       <item><description>jquery/1.3/jquery.min.js</description></item>\r
-                       <item><description>jquery/1.4/jquery.min.js</description></item>\r
-                       <item><description>jquery/1.5/jquery.min.js</description></item>\r
-                       <item><description>jquery/1.6/jquery.min.js</description></item>\r
-                       <item><description>mootools/1.2/mootools-yui-compressed.js</description></item>\r
-                       <item><description>mootools/1.3/mootools-yui-compressed.js</description></item>\r
-                       <item><description>dojo/1.5/dojo/dojo.xd.js</description></item>\r
-                       <item><description>dojo/1.6/dojo/dojo.xd.js</description></item>\r
-                       <item><description>ext-core/3.0/ext-core.js</description></item>\r
-                       <item><description>ext-core/3.1/ext-core.js</description></item>\r
-               </list>\r
-               <para>Default value is "proto_min", which loads prototype 1.7 from the server control.</para>\r
-       </summary>\r
-</member><member name="F:Rico.LoadClient.Logging">\r
-       <summary>\r
- Enable Javascript console logging? Useful for debugging. Default is false.\r
- </summary>\r
-</member><member name="F:Rico.LoadClient.HTML5">\r
-       <summary>\r
- Enable HTML5 web form elements in browsers that support them. \r
- Default is false because the quality of the HTML5 web form elements is uneven across browsers.\r
- </summary>\r
-</member><member name="F:Rico.LoadClient.Language">\r
-       <summary>\r
- Best left unset, in which case language will be set automatically based on request's HTTP_ACCEPT_LANGUAGE\r
- However, if you want to present the same locale settings to all users, then you can set this value to force the desired locale.\r
- </summary>\r
-</member><member name="F:Rico.LoadClient.LoadBaseLib">\r
-       <summary>\r
- Load base Javascript library (prototype, jQuery, etc)?\r
- Default is true.\r
- Set to false if library is being loaded another way. In this case, a BaseLib value is still required to indicate\r
- which library Rico should connect to.\r
- </summary>\r
-</member><member name="F:Rico.LoadClient.Striping">\r
-       <summary>\r
- Apply row striping to LiveGrids? Default is true. Applies only when themes are used.\r
- </summary>\r
-</member><member name="F:Rico.LoadClient.SupportedLangs">\r
-       <summary>\r
- Comma separated list of 2 letter locales that Rico supports.\r
- Do not set unless you have developed your own locale file.\r
- </summary>\r
-</member><member name="F:Rico.LoadClient.jQueryThemePath">\r
-       <summary>\r
- URL to load jQuery themes from.\r
- Default is http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/\r
- Override this value if you have a jQuery theme on your own server.\r
- </summary>\r
-</member><member name="P:Rico.LoadClient.LoadedLanguage">\r
-       <summary>\r
- Returns the 2 character string representing the Rico locale file that was actually used on the client.\r
- If there is no match between the requested languages and the available locale files, then english is used.\r
- Only available during the render phase.\r
- </summary>\r
-</member><member name="P:Rico.LoadClient.checkQueryString">\r
-       <summary>\r
- Load settings from QueryString?  true for demo, false for anything else. Default is false.\r
- </summary>\r
-</member><member name="P:Rico.LoadClient.checkWebConfig">\r
-       <summary>\r
- Load settings from web.config file? Default is false.\r
- If true, then the appSettings section of web.config will be checked for the following keys (which affect the similarly named properties):\r
- <list type="bullet">\r
-                       <item><description>rico_BaseLib</description></item>\r
-                       <item><description>rico_Language</description></item>\r
-                       <item><description>rico_jTheme</description></item>\r
-                       <item><description>rico_rTheme</description></item>\r
-                       <item><description>rico_Logging</description></item>\r
-                       <item><description>rico_HTML5</description></item>\r
-                       <item><description>rico_LoadBaseLib</description></item>\r
-                       <item><description>rico_Striping</description></item>\r
-               </list>\r
-               <para>Boolean values in web.config should be the strings "true" or "1" for true, and "false" or "0" for false.</para>\r
-       </summary>\r
-</member><member name="M:Rico.LoadClient.InitLiveGrids(System.Web.UI.HtmlTextWriter)">\r
-       <summary>\r
- Initialize all grids on the page\r
- Initialize grids with fixed # of rows first,\r
- then initialize grids with variable # of rows\r
- </summary>\r
-</member><member name="P:Rico.LoadClient.jTheme">\r
-       <summary>\r
- Set theme to one of the jQuery Themeroller themes. Default is no theme.\r
- Valid values are:\r
-   black-tie, blitzer, cupertino, dark-hive, dot-luv, eggplant, excite-bike, flick, \r
-   hot-sneaks, humanity, le-frog, mint-choc, overcast, pepper-grinder, redmond, smoothness, \r
-   south-street, start, sunny, swanky-purse, trontastic, ui-darkness, ui-lightness, vader\r
- </summary>\r
-</member><member name="P:Rico.LoadClient.rTheme">\r
-       <summary>\r
- Set theme to one of the Rico themes. Default is no theme.\r
- Valid values are:\r
-   coffee-with-milk, grayedout, greenHdg, seaglass, warmfall\r
- </summary>\r
-</member><member name="T:Rico.LoadClient">\r
-       <summary>\r
- Loads the various Javascript, CSS, and image files required to make Rico function.\r
- </summary>\r
-</member><member name="P:Rico.StyleBase.bold">\r
-       <summary>\r
- True if the text should be displayed using a bold font\r
- </summary>\r
-</member><member name="P:Rico.StyleBase.italic">\r
+</member><member name="P:Rico.StyleBase.italic">\r
        <summary>\r
  True if the text should be displayed in italics\r
  </summary>\r
@@ -558,173 +602,129 @@ Rico
        <summary>\r
  Container for a collection of Style objects\r
  </summary>\r
-</member><member name="P:Rico.SimpleCol.Width">\r
-       <summary>\r
- Initial width of the column in pixels. Default is to use SimpleGrid.defaultWidth.\r
- </summary>\r
-</member><member name="F:Rico.Column.canSort">\r
-       <summary>\r
- Is the user allowed to sort the column? Default is true.\r
- </summary>\r
-       <remarks></remarks>\r
-</member><member name="F:Rico.Column.canDrag">\r
-       <summary>\r
- Is the user allowed to drag a column value? Default is false.\r
- </summary>\r
-       <remarks></remarks>\r
-</member><member name="F:Rico.Column.canFilter">\r
-       <summary>\r
- Is the user allowed to filter the column? Default is true.\r
- </summary>\r
-       <remarks></remarks>\r
-</member><member name="F:Rico.Column.control">\r
+</member><member name="F:Rico.LoadClient.ImgHeading">\r
        <summary>\r
- Javascript code to create a control object, which changes the way the column data is rendered.\r
- The disadvantage of using this approach is that the altered rendering does not get reflected in exports.\r
- A set of controls is defined in ricoLiveGridControls.js or the developer can create their own.\r
+ Background image for grid headings and window titles.\r
+ Should be left unset, as it is used only for the grayedout theme (in which case it is set automatically).\r
  </summary>\r
-       <remarks></remarks>\r
-</member><member name="F:Rico.Column.filterUI">\r
+</member><member name="F:Rico.LoadClient.BaseLib">\r
        <summary>\r
If the AutoFilter option is enabled for the grid, then filterUI will control how each column is filtered. If filterUI is:\r
The base Javascript library to load from http://ajax.googleapis.com/ajax/libs/, possible values include:\r
  <list type="bullet">\r
-                       <item><description>null or omitted, then no filter is displayed for the column.</description></item>\r
-                       <item><description>'t' - will generate a text box filter and the records being displayed are filtered as the user types. May be followed by a number to indicate the size of the text box (default size is 10). </description></item>\r
-                       <item><description>'s' - will generate a select list filter with all possible column values contained in the list. Populated using a 'select distinct' query if the grid's source is a SQL query.</description></item>\r
-                       <item><description>'m' - will generate multi-select checklist filter, with a checkbox text to each item.</description></item>\r
+                       <item><description>prototype/1.6/prototype.js</description></item>\r
+                       <item><description>prototype/1.7/prototype.js</description></item>\r
+                       <item><description>jquery/1.3/jquery.min.js</description></item>\r
+                       <item><description>jquery/1.4/jquery.min.js</description></item>\r
+                       <item><description>jquery/1.5/jquery.min.js</description></item>\r
+                       <item><description>jquery/1.6/jquery.min.js</description></item>\r
+                       <item><description>mootools/1.2/mootools-yui-compressed.js</description></item>\r
+                       <item><description>mootools/1.3/mootools-yui-compressed.js</description></item>\r
+                       <item><description>dojo/1.5/dojo/dojo.xd.js</description></item>\r
+                       <item><description>dojo/1.6/dojo/dojo.xd.js</description></item>\r
+                       <item><description>ext-core/3.0/ext-core.js</description></item>\r
+                       <item><description>ext-core/3.1/ext-core.js</description></item>\r
                </list>\r
+               <para>Default value is "proto_min", which loads prototype 1.7 from the server control.</para>\r
        </summary>\r
-       <remarks></remarks>\r
-</member><member name="F:Rico.Column.filterColId">\r
-       <summary>\r
- This setting allows the filterUI to filter a different column than where it is displayed.\r
- This is particularly useful for dates, where you can show a year selection on an OrderDate date column for example,\r
- but actually have it filter a hidden column OrderYear=year(OrderDate).\r
- </summary>\r
-       <remarks></remarks>\r
-</member><member name="F:Rico.Column.ConfirmDeleteColumn">\r
-       <summary>\r
- The text content of this column will be included in delete confirmation messages.\r
- </summary>\r
-       <remarks></remarks>\r
-</member><member name="F:Rico.Column.multiplier">\r
-       <summary>\r
- If column is a number, this value can be used to multiply the database value by a factor before displaying it in the grid.\r
- Default is 1. Automatically set to 100 if DataType is percent.\r
- </summary>\r
-       <remarks></remarks>\r
-</member><member name="F:Rico.Column.decPlaces">\r
-       <summary>\r
- If column is a number, this is the number of digits displayed to the right of the decimal point. Default is 0.\r
- If DataType is dollar or euro, then decPlaces is automatically set to 2.\r
- </summary>\r
-       <remarks></remarks>\r
-</member><member name="F:Rico.Column.thouSep">\r
+</member><member name="F:Rico.LoadClient.Logging">\r
        <summary>\r
If column is a number, display the value with a thousands separator? Default is true.\r
Enable Javascript console logging? Useful for debugging. Default is false.\r
  </summary>\r
-       <remarks></remarks>\r
-</member><member name="F:Rico.Column.negSign">\r
-       <summary>\r
- Specifies how negative numbers should be displayed. Possible values:\r
- <list>\r
-                       <item><description>L=leading minus (default)</description></item>\r
-                       <item><description>T=trailing minus</description></item>\r
-                       <item><description>P=parentheses</description></item>\r
-               </list>\r
-       </summary>\r
-</member><member name="F:Rico.Column.prefix">\r
+</member><member name="F:Rico.LoadClient.HTML5">\r
        <summary>\r
- If column is a number, this string is prepended to the number before display.\r
Useful for currency symbols.\r
+ Enable HTML5 web form elements in browsers that support them. \r
Default is false because the quality of the HTML5 web form elements is uneven across browsers.\r
  </summary>\r
-</member><member name="F:Rico.Column.suffix">\r
+</member><member name="F:Rico.LoadClient.Language">\r
        <summary>\r
- If column is a number, this string is appended to the number before display.\r
Useful for percentages and temperature values. Automatically set to % if DataType is percent.\r
+ Best left unset, in which case language will be set automatically based on request's HTTP_ACCEPT_LANGUAGE\r
However, if you want to present the same locale settings to all users, then you can set this value to force the desired locale.\r
  </summary>\r
-</member><member name="F:Rico.Column.HdgStyleID">\r
+</member><member name="F:Rico.LoadClient.LoadBaseLib">\r
        <summary>\r
- Used to give the column heading a specific style.\r
- In most cases this is not necessary, as the heading will be styled according to the theme.\r
+ Load base Javascript library (prototype, jQuery, etc)?\r
+ Default is true.\r
+ Set to false if library is being loaded another way. In this case, a BaseLib value is still required to indicate\r
+ which library Rico should connect to.\r
  </summary>\r
-</member><member name="F:Rico.Column.isNullable">\r
+</member><member name="F:Rico.LoadClient.Striping">\r
        <summary>\r
- Database property - set automatically by LiveGrid.GetColumnInfoFromDb()\r
+ Apply row striping to LiveGrids? Default is true. Applies only when themes are used.\r
  </summary>\r
-</member><member name="F:Rico.Column.Writeable">\r
+</member><member name="F:Rico.LoadClient.SupportedLangs">\r
        <summary>\r
- Database property - set automatically by LiveGrid.GetColumnInfoFromDb()\r
+ Comma separated list of 2 letter locales that Rico supports.\r
+ Do not set unless you have developed your own locale file.\r
  </summary>\r
-</member><member name="F:Rico.Column.isKey">\r
+</member><member name="F:Rico.LoadClient.jQueryThemePath">\r
        <summary>\r
- Database property - set automatically by LiveGrid.GetColumnInfoFromDb()\r
+ URL to load jQuery themes from.\r
+ Default is http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/\r
+ Override this value if you have a jQuery theme on your own server.\r
  </summary>\r
-</member><member name="F:Rico.Column.Length">\r
+</member><member name="P:Rico.LoadClient.LoadedLanguage">\r
        <summary>\r
- Database property - set automatically by LiveGrid.GetColumnInfoFromDb()\r
+ Returns the 2 character string representing the Rico locale file that was actually used on the client.\r
+ If there is no match between the requested languages and the available locale files, then english is used.\r
+ Only available during the render phase.\r
  </summary>\r
-</member><member name="F:Rico.Column.TypeName">\r
+</member><member name="P:Rico.LoadClient.checkQueryString">\r
        <summary>\r
- Database property - set automatically by LiveGrid.GetColumnInfoFromDb()\r
+ Load settings from QueryString?  true for demo, false for anything else. Default is false.\r
  </summary>\r
-</member><member name="F:Rico.Column.ColGroupIdx">\r
+</member><member name="P:Rico.LoadClient.checkWebConfig">\r
        <summary>\r
- For internal use\r
- </summary>\r
-</member><member name="P:Rico.Column.Heading">\r
+ Load settings from web.config file? Default is false.\r
+ If true, then the appSettings section of web.config will be checked for the following keys (which affect the similarly named properties):\r
+ <list type="bullet">\r
+                       <item><description>rico_BaseLib</description></item>\r
+                       <item><description>rico_Language</description></item>\r
+                       <item><description>rico_jTheme</description></item>\r
+                       <item><description>rico_rTheme</description></item>\r
+                       <item><description>rico_Logging</description></item>\r
+                       <item><description>rico_HTML5</description></item>\r
+                       <item><description>rico_LoadBaseLib</description></item>\r
+                       <item><description>rico_Striping</description></item>\r
+               </list>\r
+               <para>Boolean values in web.config should be the strings "true" or "1" for true, and "false" or "0" for false.</para>\r
+       </summary>\r
+</member><member name="M:Rico.LoadClient.InitLiveGrids(System.Web.UI.HtmlTextWriter)">\r
        <summary>\r
- Text displayed in the column heading.\r
+ Initialize all grids on the page\r
+ Initialize grids with fixed # of rows first,\r
+ then initialize grids with variable # of rows\r
  </summary>\r
-</member><member name="P:Rico.Column.Width">\r
+</member><member name="P:Rico.LoadClient.jTheme">\r
        <summary>\r
- Initial width of the column in pixels. Default is to use LiveGrid.defaultWidth.\r
+ Set theme to one of the jQuery Themeroller themes. Default is no theme.\r
+ Valid values are:\r
+   black-tie, blitzer, cupertino, dark-hive, dot-luv, eggplant, excite-bike, flick, \r
+   hot-sneaks, humanity, le-frog, mint-choc, overcast, pepper-grinder, redmond, smoothness, \r
+   south-street, start, sunny, swanky-purse, trontastic, ui-darkness, ui-lightness, vader\r
  </summary>\r
-</member><member name="M:Rico.Column.NumberFormat">\r
+</member><member name="P:Rico.LoadClient.rTheme">\r
        <summary>\r
- Returns an Excel-type number format string based on decPlaces, thouSep, prefix.\r
+ Set theme to one of the Rico themes. Default is no theme.\r
+ Valid values are:\r
+   coffee-with-milk, grayedout, greenHdg, seaglass, warmfall\r
  </summary>\r
-       <returns></returns>\r
-       <remarks></remarks>\r
-</member><member name="P:Rico.Column.DataType">\r
+</member><member name="T:Rico.LoadClient">\r
        <summary>\r
Type of data stored in the column.\r
Loads the various Javascript, CSS, and image files required to make Rico function.\r
  </summary>\r
-       <value></value>\r
-       <returns></returns>\r
-       <remarks></remarks>\r
-</member><member name="T:Rico.Column">\r
+</member><member name="P:Rico.My.Resources.Resources.ResourceManager">\r
        <summary>\r
- Base class for a LiveGrid column\r
- </summary>\r
-</member><member name="F:Rico.EditCol.FormView">\r
+  Returns the cached ResourceManager instance used by this class.\r
+</summary>\r
+</member><member name="P:Rico.My.Resources.Resources.Culture">\r
        <summary>\r
-               <list type="table">\r
-                       <item><term>True</term><description>Item is shown on the entry form (default)</description></item>\r
-                       <item><term>False</term><description>Item is not shown on the form</description></item>\r
-               </list>\r
-       </summary>\r
-</member><member name="P:Rico.EditCol.EntryType">\r
+  Overrides the current thread's CurrentUICulture property for all\r
+  resource lookups using this strongly typed resource class.\r
+</summary>\r
+</member><member name="T:Rico.My.Resources.Resources">\r
        <summary>\r
- Code indicating the ui to be used for data entry\r
- <list type="table">\r
-                       <item><term>TA</term><description>Text Area</description></item>\r
-                       <item><term>R</term><description>Radio button list</description></item>\r
-                       <item><term>RL</term><description>Radio buttons via lookup (field is a foreign key)</description></item>\r
-                       <item><term>S</term><description>Select list</description></item>\r
-                       <item><term>SL</term><description>Select list via lookup (field is a foreign key)</description></item>\r
-                       <item><term>CL</term><description>Custom widget via lookup (field is a foreign key)</description></item>\r
-                       <item><term>N</term><description>Select list of distinct column values, use allowed to add new values</description></item>\r
-                       <item><term>B</term><description>Text, non-blank</description></item>\r
-                       <item><term>T</term><description>Text</description></item>\r
-                       <item><term>I</term><description>Integer</description></item>\r
-                       <item><term>F</term><description>Floating point number</description></item>\r
-                       <item><term>tinyMCE</term><description>Rich text via tinyMCE</description></item>\r
-                       <item><term>D</term><description>Date</description></item>\r
-                       <item><term>TS</term><description>Time stamp</description></item>\r
-                       <item><term>H</term><description>Hidden</description></item>\r
-               </list>\r
-       </summary>\r
+  A strongly-typed resource class, for looking up localized strings, etc.\r
+</summary>\r
 </member><member name="T:Rico.SimpleGrid">\r
        <summary>\r
  Class to define a SimpleGrid\r