codesite...@google.com
unread,Mar 10, 2009, 10:25:03 AM3/10/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to extsharp...@googlegroups.com
Author: WCWedin
Date: Tue Mar 10 07:24:00 2009
New Revision: 85
Added:
trunk/ExtJS2Parser/ExtJS2Parser/MoreCode/form/CheckboxGroupConfig.txt
trunk/ExtJS2Parser/ExtJS2Parser/MoreCode/form/RadioGroupConfig.txt
Modified:
trunk/ExtJS2Parser/ExtJS2Parser/ExtJS2Parser.csproj
trunk/ExtJS2Parser/ExtJS2Parser/MoreCode/data/JsonStoreConfig.txt
Log:
Fixing my fix for JsonStoreConfig and adding "items" to RadioGroupConfig
and CheckboxGroupConfig.
Modified: trunk/ExtJS2Parser/ExtJS2Parser/ExtJS2Parser.csproj
==============================================================================
--- trunk/ExtJS2Parser/ExtJS2Parser/ExtJS2Parser.csproj (original)
+++ trunk/ExtJS2Parser/ExtJS2Parser/ExtJS2Parser.csproj Tue Mar 10 07:24:00
2009
@@ -68,8 +68,10 @@
<Content Include="MoreCode\CompositeElement.txt" />
<Content Include="MoreCode\Container.txt" />
<Content Include="MoreCode\data\JsonStoreConfig.txt" />
+ <Content Include="MoreCode\form\CheckboxGroupConfig.txt" />
<Content Include="MoreCode\form\FormPanelConfig.txt" />
<Content Include="MoreCode\form\FormPanel.txt" />
+ <Content Include="MoreCode\form\RadioGroupConfig.txt" />
<Content Include="MoreCode\grid\EditorGridPanel.txt" />
<Content Include="MoreCode\grid\EditorGridPanelConfig.txt" />
<Content Include="MoreCode\grid\GridPanelConfig.txt" />
Modified: trunk/ExtJS2Parser/ExtJS2Parser/MoreCode/data/JsonStoreConfig.txt
==============================================================================
--- trunk/ExtJS2Parser/ExtJS2Parser/MoreCode/data/JsonStoreConfig.txt
(original)
+++ trunk/ExtJS2Parser/ExtJS2Parser/MoreCode/data/JsonStoreConfig.txt Tue
Mar 10 07:24:00 2009
@@ -2,4 +2,4 @@
* The methods below are added manually
*/
/// <summary> name of the property which contains the Array of row
objects.</summary>
- public JsonReaderConfig root(System.String value) { o["root"] =
value; return this; }
+ public JsonStoreConfig root(System.String value) { o["root"] =
value; return this; }
Added: trunk/ExtJS2Parser/ExtJS2Parser/MoreCode/form/CheckboxGroupConfig.txt
==============================================================================
--- (empty file)
+++ trunk/ExtJS2Parser/ExtJS2Parser/MoreCode/form/CheckboxGroupConfig.txt
Tue Mar 10 07:24:00 2009
@@ -0,0 +1,2 @@
+ /// <summary>An Array of Checkboxes or Checkbox config objects to
arrange in the group.</summary>
+ public CheckboxGroupConfig items(object value) { o["items"] =
value; return this; }
\ No newline at end of file
Added: trunk/ExtJS2Parser/ExtJS2Parser/MoreCode/form/RadioGroupConfig.txt
==============================================================================
--- (empty file)
+++ trunk/ExtJS2Parser/ExtJS2Parser/MoreCode/form/RadioGroupConfig.txt Tue
Mar 10 07:24:00 2009
@@ -0,0 +1,2 @@
+ /// <summary>An Array of RadioButtons or RadioButton config objects to
arrange in the group.</summary>
+ public RadioGroupConfig items(object value) { o["items"] = value; return
this; }