"Fields" property is missing inside JsonReader

  1. #1

    "Fields" property is missing inside JsonReader

    Hi,,

    I'm using Ext.Net 2.x. When i'm using JsonReader there is no "Fields" property inside.. Is there any bugs with ext.net or something is missing in my web.config ?? Thanks.

    Click image for larger version. 

Name:	JsonReader.png 
Views:	101 
Size:	6.7 KB 
ID:	5524


    My Web.config

    <?xml version="1.0"?>
    <configuration>
      <configSections>
        <section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/>
        <section name="extnet" type="Ext.Net.GlobalConfig" requirePermission="false"/>
      </configSections>
      <!--<extnet licenseKey="NTcwMjk3NjQsMiw5OTk5LTEyLTMx" theme="Default" scriptMode="Release" initScriptMode="Linked"/>-->
      <extnet idMode="Explicit" initScriptMode="Linked" scriptMode="Debug" theme="Default"/>
      <appSettings>
        <add key="ShowHiddenExamples" value="False"/>
        <add key="LocalLogging" value="False"/>
        <add key="GoogleAnalytics" value="True"/>
        <add key="Proxino" value="False"/>
        <add key="CryptoKey" value="TestKey"/>
      </appSettings>
      <!--
            Possible Exception thrown if using local SQLEXPRESS connection strings on a production install of IIS. 
            
            Exception Message:
            
            Failed to generate a user instance of SQL Server due to failure in retrieving the user's local application data path. 
            Please make sure the user has a local user profile on the computer. The connection will be closed.
            
            More Info:
            http://support.microsoft.com/kb/2002980  
            
            Solution:
            
            Add databases to SQL Server and update connection strings.
        -->
      <connectionStrings>
        <add name="ConnectionStringDb" connectionString="Server=GENUINE\MSSQLSERVER2008;Database=BaseDb;Trusted_Connection=True;"/>
        <add name="NorthwindConnectionString" connectionString="Data Source=lilac.arvixe.com;Initial Catalog=Northwind;User ID=extnet_demo;Password=extnet_demo;" providerName="System.Data.SqlClient"/>
        <add name="SimpleTasksConnectionString" connectionString="Data Source=lilac.arvixe.com;Initial Catalog=SimpleTasks;User ID=extnet_demo;Password=extnet_demo;" providerName="System.Data.SqlClient"/>
      </connectionStrings>
    
      <!--NLog Settings-->
      <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" autoReload="true"
            throwExceptions="true" internalLogFile="C:\NLog\nlog.txt" internalLogLevel="Debug">
        <targets>
          <target name="database" xsi:type="Database"
                  connectionString="Server=GENUINE\MSSQLSERVER2008;Database=BaseDb;Trusted_Connection=True;"
                  commandText="Insert into t_logs(LogDesc, LogDate, ClassLog, LevelLog)
                  values(@LogDesc,@LogDate,@ClassLog,@LevelLog)">
            <parameter name="@LogDesc" layout="${message}" />
            <parameter name="@LogDate" layout="${date}" />
            <parameter name="@ClassLog" layout="${logger}" />
            <parameter name="@LevelLog" layout="${level}" />
          </target>
        </targets>
        <rules>
          <logger name="*" minlevel="Debug" writeTo="database" maxlevel="Error" />
        </rules>
      </nlog>
    
      <!--<location path="~/resources/css/examples.css">
        <system.web>
          <authorization>
            <allow users="*"/>
          </authorization>
        </system.web>
      </location>-->
      <!--<location path="extjs">
        <system.web>
          <authorization>
            <allow users="*" />
          </authorization>
        </system.web>
      </location>
      <location path="extnet">
        <system.web>
          <authorization>
            <allow users="*" />
          </authorization>
        </system.web>
      </location>
      <location path="icons">
        <system.web>
          <authorization>
            <allow users="*" />
          </authorization>
        </system.web>
      </location>
      <location path="ux">
        <system.web>
          <authorization>
            <allow users="*" />
          </authorization>
        </system.web>
      </location>-->
    
      <system.web>
        <httpRuntime requestValidationMode="2.0"/>
        <!-- DO NOT change this trust level. Application MUST run in "Medium" trust. -->
        <!-- Full trust is required for the FeedViewer example because of outbound HTTP requests to fetch RSS feeds -->
        <trust level="Full"/>
        <webServices>
          <protocols>
            <add name="HttpGet"/>
            <add name="HttpPost"/>
          </protocols>
        </webServices>
        <customErrors mode="Off">
          <error statusCode="404" redirect="~/404.aspx"/>
        </customErrors>
        <compilation targetFramework="4.0" debug="true">
          <assemblies>
            <add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
            <add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
            <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
            <add assembly="System.Web.WebPages, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
          </assemblies>
        </compilation>
    
        <!--<authorization>
          <deny users="?" />
          <allow users="*"/>
        </authorization>
    
        <sessionState mode="InProc" timeout="1" cookieless="false" regenerateExpiredSessionId="true"/>
    
        <authentication mode="Forms">
          <forms loginUrl="~/Pages/UserAuthenticationManager/UserLogin/Default.aspx" />
        </authentication>-->
    
    
        <!--<authentication mode="Forms">
          <forms name="SinarmasAuthentication"
                 loginUrl="~/Pages/UserAuthenticationManager/UserLogin/Default.aspx"/>-->
        <!--<forms name=".ASPXAUTH"
                 loginUrl="~/Pages/UserAuthenticationManager/UserLogin/Default.aspx" 
                 timeout="30"
                 protection="All"
                 cookieless="AutoDetect"/>-->
        <!--</authentication>
        <authorization>
          <deny users="?"/>-->
        <!--<allow users="*"/>-->
        <!--</authorization>-->
        <!--<authentication mode="Windows"/>-->
    
    
    
    
        <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID">
          <controls>
            <add tagPrefix="src" src="~/HighLighter/HighLighterButton.ascx" tagName="SourceButton"/>
          </controls>
        </pages>
        <httpHandlers>
          <add path="*/ext.axd" verb="*" type="Ext.Net.ResourceHandler" validate="false"/>
        </httpHandlers>
        <httpModules>
          <add name="AnalyticsModule" type="Ext.Net.Examples.AnalyticsModule, Ext.Net.Examples"/>
          <add name="DirectRequestModule" type="Ext.Net.DirectRequestModule, Ext.Net"/>
        </httpModules>
      </system.web>
      <!-- 
            The system.webServer section is required for running ASP.NET AJAX under Internet
            Information Services 7.0.  It is not necessary for previous version of IIS.
        -->
      <system.webServer>
        <validation validateIntegratedModeConfiguration="false"/>
        <modules runAllManagedModulesForAllRequests="true">
          <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
          <add name="AnalyticsModule" preCondition="managedHandler" type="Ext.Net.Examples.AnalyticsModule, Ext.Net.Examples"/>
          <add name="DirectRequestModule" preCondition="managedHandler" type="Ext.Net.DirectRequestModule, Ext.Net"/>
        </modules>
        <handlers>
          <remove name="WebServiceHandlerFactory-Integrated"/>
          <remove name="ScriptHandlerFactory"/>
          <remove name="ScriptHandlerFactoryAppServices"/>
          <remove name="ScriptResource"/>
          <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
          <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
          <add name="ScriptResource" verb="GET,HEAD" path="ScriptResource.axd" preCondition="integratedMode" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
        </handlers>
        <directoryBrowse enabled="false"/>
        <defaultDocument>
          <files>
            <clear/>
            <add value="Default.htm"/>
            <add value="Default.asp"/>
            <add value="index.htm"/>
            <add value="index.html"/>
            <add value="iisstart.htm"/>
            <add value="default.aspx"/>
          </files>
        </defaultDocument>
        <staticContent>
          <mimeMap fileExtension=".woff" mimeType="application/x-woff"/>
          <mimeMap fileExtension=".json" mimeType="application/json"/>
        </staticContent>
      </system.webServer>
      <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
          <dependentAssembly>
            <assemblyIdentity name="System.Web.Helpers"
                 publicKeyToken="31bf3856ad364e35" />
            <bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0"/>
          </dependentAssembly>
          <!--<dependentAssembly>
            <assemblyIdentity name="System.Web.WebPages"
                 publicKeyToken="31bf3856ad364e35" />
            <bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0"/>
          </dependentAssembly>-->
          <dependentAssembly>
            <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed"/>
            <bindingRedirect oldVersion="1.0.0.0-4.0.0.0" newVersion="4.5.5"/>
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="Ext.Net.Utilities" publicKeyToken="2c34ac34702a3c23" culture="neutral"/>
            <bindingRedirect oldVersion="0.0.0.0-2.0.1.26920" newVersion="2.0.1.26920"/>
          </dependentAssembly>
        </assemblyBinding>
      </runtime>
    </configuration>
    Last edited by teamsar; Feb 01, 2013 at 5:16 AM.

Similar Threads

  1. [CLOSED] Problem to use property "Maximized" from "Window"
    By avante in forum 2.x Legacy Premium Help
    Replies: 3
    Last Post: Jan 22, 2013, 12:47 AM
  2. Replies: 1
    Last Post: Oct 05, 2012, 11:56 AM
  3. [CLOSED] Copy text from "readonly" date and combo box fields
    By betamax in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Sep 24, 2012, 2:56 PM
  4. Replies: 1
    Last Post: Jun 26, 2012, 11:29 AM
  5. Razor FormPanel "FormID" missing
    By basder in forum 2.x Help
    Replies: 6
    Last Post: Mar 20, 2012, 2:46 PM

Posting Permissions