Seems like I get a Javascript error when accessing the Website externally...

Page 3 of 5 FirstFirst 12345 LastLast
  1. #21

    Catching the exact error message ??

    Instead of having the window popup saying, "Request Failure" saying "BADRESPONSE: Syntax error"

    Can I have catch the correct error message and display it ??

    I'm really running out of time and I need to deliver this product to the user, but I cannot... its becoming very frustrating.

    Currently we are in the process of Purchasing Premium Support... but its going through the necessary steps for the approval.

    Quote Originally Posted by geoffrey.mcgill View Post
    Hi,

    I was not able to find the JavaScript o.conn.send anywhere in Ext.NET or ExtJS. If this line of code is throwing a JavaScript error, then you are going to have to step through your code and determine exactly what is causing the error.
  2. #22
    Generally, BADRESPONSE means that script is generated on the server side is incorrect (or response is empty). Response cannot be parsed
    We requested content of invalid response several times but you did not provide it still (only after response investigating we can answer whats wrong), just see response tab for invalid request in Firebug
  3. #23
    A couple posts back I posted the following comment...

    I'd start by creating a simple test, and slowly build it up until you find (or narrow down) the problem.
    Please follow this advice. Start with a very very simple page. A Page/View with basically nothing on it, maybe just a Button. Then slowly, piece-by-piece, build up that sample until it recreates the problem. With every change, test that change and ensure it's working properly. Eventually you should get to issue that is causing the problem. These are basic debugging techniques.

    As well, you might have multiple issues, each leading you in a different direction.

    Start small, and work your way up. Once you have a simplified sample which demonstrates how to reproduce the problem, post that code here in the forums.

    You can also use tools such as Firefox + Firebug (or Fiddler2) to inspect the request-response calls in the browser. Any JavaScript errors will be caught by Firebug and can be further inspected.
    Last edited by geoffrey.mcgill; Apr 10, 2012 at 3:05 PM.
    Geoffrey McGill
    Founder
  4. #24
    This is the response I get back when I click on the option and the window pops up.

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    	<link rel="stylesheet" type="text/css" href="/WebResource.axd?d=eRRgeO-E4LJ9nHcRDt4y1tIzCWJ8kMny8lLwxJSOrLWpIbdWzGPEYegdy8ouLUToaSFq7gombLKPgmeluCV8Brzy_R2yxNA9KzgRgZKjdNlHaI7wphtu6WJs0ZaDbuU0ODdkAn-uLyEOehVFXU5vN1Uk7C41&amp;t=634661564280000000" />
    
    	<link rel="stylesheet" type="text/css" href="/WebResource.axd?d=mnG-pzDHQPk-m_YueLofRCNN9ZKsh6rSesUR4fXJPb4rKjw6nOHiaJVS7bFdNtMLT6xhR7fwpO6lM_otKtBPArVFkpFBDTw_ePhXEZxi8M2RVv0QziL9AfeSOEtCB9xGk7fk5VsBYvfxCpYsfVgSMp-sdwxzxAm7TXS53-Gje2nBB8sD0&amp;t=634661564280000000" />
    <title>
    	Dashboard
    </title>
        <style type="text/css">
            .icon-exclamation
            {
                padding-left: 25px !important;
                background: url(/icons/exclamation-png/ext.axd) no-repeat 3px 3px !important;
            }
            .icon-accept
            {
                padding-left: 25px !important;
                background: url(/icons/accept-png/ext.axd) no-repeat 3px 3px !important;
            }
            .list
            {
                list-style-image: none;
                list-style-position: outside;
                list-style-type: square;
                padding-left: 16px;
            }
            .list li
            {
                font-size: 11px;
                padding: 3px;
            }
        </style>
    
        <script type="text/javascript">
    
            var radioSelect = function() {
                if (rdPeriod.getValue()) {
                    SelectBox2.setFieldLabel("<b>Calendar Period</b>");
                    SelectBox2.emptyText = "Select a Period";
                    SelectBox2.clearValue();
                    chkWeek.setValue(false);
                    Dashboard.LoadCalendarStore("Period");
                }
                else {
                    SelectBox2.setFieldLabel("<b>Calendar Week</b>");
                    SelectBox2.emptyText = "Select a Week";
                    SelectBox2.clearValue();
                    chkWeek.setValue(true);
                    Dashboard.LoadCalendarStore("Week");
                }
                selectHomePageValue();
            }
    
            var selectHomePageValue = function() {
                if (FormPanel1.isValid())
                { btnNext.setDisabled(false); }
                else
                { btnNext.setDisabled(true); }
                SelectBox1.clearInvalid();
                SelectBox2.clearInvalid();
                SelectBox3.clearInvalid();
                var year = SelectBox1.getValue().trim();
                var period = SelectBox2.getValue();
                var bakery = SelectBox3.getValue().trim();
                
                if(year != "" && period != "" && bakery != "")
                    Dashboard.LoadPeriodStore(year, period, bakery);
            }
    
            var exportToExcel = function() {
                ExcelData.setValue(Ext.encode(PeriodStore.getRecordsValues({ selectedOnly: false })));
                PeriodStore.submitData(true);
            };
    
            var btnClear = function() {
                Ext.Msg.confirm("Confirm", "Are you sure you want to clear ALL values?", function(result) {
                    if (result == "yes") {
                        clearAllInputs();
                    }
                });
            }
            var clearAllInputs = function() {
                if (chkWeek.checked) {
                    //Weekly
                    WeeklyNumberOfOSHARecordableCases.setValue(0);
                    WeeklyNetUnitsWrapped.setValue(0);
                    WeeklyTheoreticalRunHoursAtWrapper.setValue(0);
                    WeeklyTotalIngredientsUsedWeight.setValue(0);
                    WeeklyActualChangeoverHoursAtWrapper.setValue(0);
                    WeeklyInventoryVariance.setValue(0);
                    WeeklyProductUnaccounted.setValue(0);
    
                    // Remove All from lines...
                    // WeeklyAccordionPanel1.removeAll()
                }
                else {
                    //Period top
                    PeriodDoughType.setValue(0);
                    PeriodFGItems.setValue(0);
                    PeriodLines.setValue(0);
                    PeriodPlanTypes.setValue(0);
                    PeriodRunHrs.setValue(0);
                    PeriodTransportTrips.setValue(0);
                    PeriodUnAccountedProducts.setValue(0);
                    //Middle1
                    PeriodDirectCYHeadCount.setValue(0);
                    PeriodDirectPYHeadCount.setValue(0);
                    PeriodIndirectCYHeadCount.setValue(0);
                    PeriodIndirectPYHeadCount.setValue(0);
                    PeriodDistributionSalaryFrings.setValue(0);
                    //Middle2
                    PeriodCYAccAdjDirectLabor.setValue(0);
                    PeriodCYAccAdjOverHead.setValue(0);
                    PeriodCYOtherCostDirectLabor.setValue(0);
                    PeriodCYotherCostOverHead.setValue(0);
                    PeriodProductivityProjectDirectLabor.setValue(0);
                    PeriodProductivityProjectOverhead.setValue(0);
                    PeriodProductivityProjectRawMeterial.setValue(0);
                    PeriodPYAccAdjDirectLabor.setValue(0);
                    PeriodPYAccAdjOverHead.setValue(0);
                    PeriodPYOtherCostDirectLabor.setValue(0);
                    PeriodPYOtherCostOverHead.setValue(0);
                    //Middle3
                    PeriodInflationNegativeReformulation.setValue(0);
                    PeriodInflationReformulation.setValue(0);
                }
            }
            
        </script>
    
    
    	<script type="text/javascript" src="/WebResource.axd?d=CvRkoPCtT6bar5S2I9bVBRRFp9Qh9D-LOcfXQ6PR_kn2__Vml-I-0qvkssQBieZmQ27-D4kuwsGOKYYgM2Ag9NzF1us5WtQXWE8Q2djYWv72tOH5DD9oG5IVRhHFeWObYjq2NmsIJrWmYkgwa_YhiAPNU_Q1&amp;t=634661564280000000"></script>
    	<script type="text/javascript" src="/WebResource.axd?d=MMXEWbuUMtK98U3T-PRzXJuYJ8B-vIa8CjiegH354NLpazGon3lLV_PpS6HrKBn7uKu_nEfvjw6xftkO2WECHy_FCxyS5Ok62cHs5myYr22Ls6WQnDCpWiRUaEMR2bgXu6kxzQ2&amp;t=634661564280000000"></script>
    	<script type="text/javascript" src="/WebResource.axd?d=sR0RIPcoVlc8iq5KlAf9SiFCtvQDQNyuEgGFVpThpMKnj31agPt7sfa4m_DSHtPxWU7adRG27fK8a38T_Iuc1hbXbGqgbiQcqLZBYf9zFIDY0-7IfMr7qT5CRXCU7qieN60DIJvb5MnbmEHFn8puLzDHlEk1&amp;t=634661564280000000"></script>
    	<script type="text/javascript" src="/WebResource.axd?d=6wZ1Lb97G073oNX844Lmzh375qiTeR3u1DhbMG01wuf4zRXKmBqjYy2p0RWMQAAzbJh9kffJOaQ-NYu_saa-wW8UlxKCKi_G7oP1MDQw1-Jv5xsxS-bMAtx_KVPztW8UIPHh0uuE8rKPnQ7z-z0ZEMkCQ9o1&amp;t=634661564280000000"></script>
    	<script type="text/javascript" src="/WebResource.axd?d=GFGusawdwm6_31SvM2NN1kBXp3D46tmzBLJ40tI4sLdtNUlpawK5zSKvBctfElnzYMNAJg29DsR-uapUzni-O7HccB-ATvoW57bTrj5-G4Gk_7iJlXHP7fFdoSDlpVCAYJiaj-KKvrUAhPAB6fzl6uW9kjw1&amp;t=634661564280000000"></script>
    	<script type="text/javascript">
    	//<![CDATA[
    		Ext.net.ResourceMgr.init({id:"ctl01",BLANK_IMAGE_URL:"/WebResource.axd?d=QYHIDG713REyKpxgZcgH4y50Drf8XrsX5JvtnDZr7ZjjUIul0voKzhlWwvmgXJs8JnBXbR1gh6zDm_sVohVQ7vCtfeYnABQJHg2-Q6CNk8oX03sdChe3tDeBss7Y5AJJRCc93_sMEFLe3Rzsg4_gpPw7bk41&amp;t=634661564280000000",aspForm:"ctl02",theme:"blue",icons:[{name:"TimeAdd",url:"/WebResource.axd?d=jnow9lQc3xgrTNxU9l3JF82kcppCqYvF1Q92SB8Bde7GzbkjVlNfG-SgMrLKmE-p-iwhTlosiy1bdCjmr_ttUVZkyTyMFS4CLE4En_ri3VALW06uekUT-HfuJ4lyxDrjTNYufg2&amp;t=634661564280000000"},{name:"Erase",url:"/WebResource.axd?d=ARWWiWBRROHWGCZkJtq0PtwxQYKz4yU7Fi4Hzc1otpRJtYNsVvc4qPcGIM4ksLTn1H4bEU0mvcjHbqEGco-uYk72ej79U2uPfjqWX5VBzP29Nd38Dmz7tGwQfD_MViLy4ysopw2&amp;t=634661564280000000"},{name:"Disk",url:"/WebResource.axd?d=DlKHrliBY1GJlHoJmkN-0Pgr1y6n1cCvwB9eZGL1iuf45yaRdrBl5vWdgi7vsycYN_92-XnLCMS4Mw7RxJKnqfhnhup1OdvZoElEkV6ADT9_jNqjSW1m-RcKxFhyB-IrvuApFA2&amp;t=634661564280000000"},{name:"PreviousGreen",url:"/WebResource.axd?d=OfrOhrS0-M_tPda41NeDcYXLHhAo8oM9fgQNm_a-djDcrZedt0tkZ9j1ClOE37wJXtRQX6A88jy2apgduED_9mnbf1cdeBtW8RFIxsfmaM4P_Y96p4xK-s04JQ0cU1Wjv1G5YQ2&amp;t=634661564280000000"},{name:"NextGreen",url:"/WebResource.axd?d=Ng0A8_sYgecJ2u8eBSplo5LRASsGqY5N9cz550zh3sLTYI-6NPALv6ePIGYHhxZLmRgJEdzU-PX-wo_Iee0z-kpFMDZFpucXeNzD2Z3DJjp3UMLWSd5jBsJBK0fNMDn8IDAqHw2&amp;t=634661564280000000"}]});Ext.onReady(function(){Ext.QuickTips.init();Ext.ns("Dashboard");Ext.apply(Dashboard, { LoadPeriodStore:function(year,period,bakery,config){Ext.net.DirectMethod.request("LoadPeriodStore",Ext.applyIf(config || {}, {params:{year:year,period:period,bakery:bakery},timeout:90000}));},LoadCalendarStore:function(weekOrPeriod,config){Ext.net.DirectMethod.request("LoadCalendarStore",Ext.applyIf(config || {}, {params:{weekOrPeriod:weekOrPeriod},timeout:90000}));} });new Ext.form.Hidden({id:"ExcelData",renderTo:"ExcelData_Container",rawValue:""});new Ext.form.DisplayField({id:"dspBakery",isFormField:true,fieldLabel:"<h3 class=display>Bakery Location",hidden:true,renderTo:"dspBakery_Container",style:"margin-right:0px; text-align: left;",value:"(Bakery)"});this.PeriodStore=new Ext.ux.data.PagingStore({proxyId:"PeriodStore",autoLoad:true,reader:new Ext.data.JsonReader({fields:[{name:"BakeryLocation"},{name:"Year",type:"int"},{name:"Period",type:"int"},{name:"DoughType",type:"float"},{name:"FGItems",type:"float"},{name:"CYAccAdjDirectLabor",type:"float"},{name:"CYAccAdjOverHead",type:"float"},{name:"CYOtherCostDirectLabor",type:"float"},{name:"CYotherCostOverHead",type:"float"},{name:"DirectCYHeadCount",type:"float"},{name:"DirectPYHeadCount",type:"float"},{name:"DistributionSalaryFrings",type:"float"},{name:"IndirectCYHeadCount",type:"float"},{name:"IndirectPYHeadCount",type:"float"},{name:"InflationNegativeReformulation",type:"float"},{name:"InflationReformulation",type:"float"},{name:"Lines",type:"float"},{name:"PlanTypes",type:"float"},{name:"ProductivityProjectDirectLabor",type:"float"},{name:"ProductivityProjectOverhead",type:"float"},{name:"ProductivityProjectRawMeterial",type:"float"},{name:"PYAccAdjDirectLabor",type:"float"},{name:"PYAccAdjOverHead",type:"float"},{name:"PYOtherCostDirectLabor",type:"float"},{name:"PYOtherCostOverHead",type:"float"},{name:"RunHrs",type:"float"},{name:"TransportTrips",type:"float"},{name:"UnAccountedProducts",type:"float"}]}),remoteSort:true,directEventConfig:{isUpload:true},proxy:new Ext.data.PagingMemoryProxy({})});new Ext.form.Checkbox({id:"chkWeek",hidden:true,renderTo:"chkWeek_Container",value:false,inputValue:"chkWeek"});new Ext.Panel({id:"WizardPanel",renderTo:"WizardPanel_Container",height:510,activeItem:0,items:[{id:"Panel1",contentEl:"Panel1_Content",border:false,buttonAlign:"center",header:false,listeners:{beforeshow:{fn:function(item){btnClear.hide(); btnSave.hide();}}}},{id:"Panel2",items:{id:"pnlPeriod",xtype:"panel",autoHeight:true,items:[{id:"FieldSetTop",xtype:"fieldset",style:"padding-left: 5px;",items:[{xtype:"container",labelSeparator:"",labelAlign:"top",style:"margin-bottom: -8px;",items:{id:"PeriodDoughType",xtype:"numberfield",cls:"numberTop",fieldLabel:"<h3># of Dough Types<br>(Wkly Avg)",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",style:"margin-bottom: -8px;",items:{id:"PeriodFGItems",xtype:"numberfield",cls:"numberTop",fieldLabel:"<h3># of FG Items<br>(Wkly Avg)",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",style:"margin-bottom: -8px;",items:{id:"PeriodLines",xtype:"numberfield",cls:"numberTop",fieldLabel:"<h3><br># of Lines",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",style:"margin-bottom: -8px;",items:{id:"PeriodPlanTypes",xtype:"numberfield",cls:"numberTop",fieldLabel:"<h3><br># of Plan Types",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",style:"margin-bottom: -8px;",items:{id:"PeriodRunHrs",xtype:"numberfield",cls:"numberTop",fieldLabel:"<h3>Theor. Run Hrs<br> at wrapper",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",style:"margin-bottom: -8px;",items:{id:"PeriodTransportTrips",xtype:"numberfield",cls:"numberTop",fieldLabel:"<h3>Transport<br>Trips",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",style:"margin-bottom: -8px;",items:{id:"PeriodUnAccountedProducts",xtype:"numberfield",cls:"numberTop",fieldLabel:"<h3>Product<br>Unaccounted For $",rawValue:"",decimalSeparator:"."},layout:"form"}],layoutConfig:{fitHeight:false},layout:"netcolumn",bodyStyle:"background-color:Transparent;",title:"Period Entry"},{id:"FieldSetMiddle1",xtype:"fieldset",style:"padding-left: 0px;",items:[{xtype:"container",labelSeparator:"",labelAlign:"right",style:"margin-bottom: -10px;",items:{id:"PeriodDirectCYHeadCount",xtype:"numberfield",cls:"numberMiddle1",fieldLabel:"<h3>Direct<br>CY<br>Headcount",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",style:"margin-bottom: -10px;",items:{id:"PeriodDirectPYHeadCount",xtype:"numberfield",cls:"numberMiddle1",fieldLabel:"<h3>Direct<br>PY<br>Headcount",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",style:"margin-bottom: -10px;",items:{id:"PeriodIndirectCYHeadCount",xtype:"numberfield",cls:"numberMiddle1",fieldLabel:"<h3>Indirect<br>CY<br>Headcount",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",style:"margin-bottom: -10px;",items:{id:"PeriodIndirectPYHeadCount",xtype:"numberfield",cls:"numberMiddle1",fieldLabel:"<h3>Indirect<br>PY Labor<br>Headcount",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",style:"margin-bottom: -10px;",items:{id:"PeriodDistributionSalaryFrings",xtype:"numberfield",cls:"numberMiddle1",fieldLabel:"<h3>Disribution<br>Salary &<br>Fringe $",rawValue:"",decimalSeparator:"."},layout:"form"}],layoutConfig:{fitHeight:false},layout:"netcolumn",bodyStyle:"background-color:Transparent;"},{id:"FieldSetMiddle2",xtype:"fieldset",style:"padding-left: 0px;",items:[{id:"Middle2Row1",style:"padding-bottom: 7px; margin-left:5px;",items:[{xtype:"label",html:"<u>CY Accounting Adj.",style:"font-weight: bold; font-size: 14px; text-align: center;",width:95},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodCYAccAdjDirectLabor",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Direct<br>Labor",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodCYAccAdjOverHead",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Other<br>Overhead",rawValue:"",decimalSeparator:"."},layout:"form"},{id:"Label3",xtype:"label",html:"<u>CY Significant<br>Other Cost",style:"font-weight: bold; font-size: 14px; text-align: center; margin-left:25",width:95},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodCYOtherCostDirectLabor",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Direct<br>Labor",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodCYotherCostOverHead",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Other<br>Overhead",rawValue:"",decimalSeparator:"."},layout:"form"}],layoutConfig:{fitHeight:false},layout:"netcolumn",bodyStyle:"background-color:Transparent;",border:false},{id:"Middle2Row2",style:"padding-bottom: 8px; padding-top: 7px; margin-left:5px; border-top: 1px solid #97ABCF; border-bottom: 1px solid #97ABCF;",items:[{id:"Label1",xtype:"label",html:"<u>Productivity Projects",style:"font-weight: bold; font-size: 14px; text-align: center;",width:95},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodProductivityProjectDirectLabor",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Direct<br>Labor",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodProductivityProjectOverhead",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Other<br>Overhead",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodProductivityProjectRawMeterial",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Raw<br>Materials",rawValue:"",decimalSeparator:"."},layout:"form"}],layoutConfig:{fitHeight:false},layout:"netcolumn",bodyStyle:"background-color:Transparent;",border:false},{id:"Middle2Row3",style:"padding-top: 8px; margin-left:5px;",items:[{id:"Label2",xtype:"label",html:"<u>PY Accounting Adj.",style:"font-weight: bold; font-size: 14px; text-align: center;",width:95},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodPYAccAdjDirectLabor",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Direct<br>Labor",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodPYAccAdjOverHead",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Other<br>Overhead",rawValue:"",decimalSeparator:"."},layout:"form"},{id:"Label4",xtype:"label",html:"<u>PY Significant<br>Other Cost",style:"font-weight: bold; font-size: 14px; text-align: center; margin-left:25",width:95},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodPYOtherCostDirectLabor",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Direct<br>Labor",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodPYOtherCostOverHead",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Other<br>Overhead",rawValue:"",decimalSeparator:"."},layout:"form"}],layoutConfig:{fitHeight:false},layout:"netcolumn",bodyStyle:"background-color:Transparent;",border:false}],layout:"ux.row",bodyStyle:"background-color:Transparent;",title:"Efficiency"},{id:"FieldSetMiddle3",xtype:"fieldset",style:"padding-left: 0px;",items:[{xtype:"container",labelSeparator:"",labelAlign:"right",labelWidth:330,style:"margin-bottom: -3px;",items:{id:"PeriodInflationNegativeReformulation",xtype:"numberfield",cls:"numberMiddle3",fieldLabel:"<h3 class=right>Negative Reformulation (Raw Materials)",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",labelWidth:330,style:"margin-bottom: -3px;",items:{id:"PeriodInflationReformulation",xtype:"numberfield",cls:"numberMiddle3",fieldLabel:"<h3 class=right>Reformulation (Raw Materials)",rawValue:"",decimalSeparator:"."},layout:"form"}],layoutConfig:{fitHeight:false},layout:"netcolumn",bodyStyle:"background-color:Transparent;",title:"Inflation"}],layout:"ux.row",bodyStyle:"background-color:InactiveCaptionText;",padding:5},layout:"fit",border:false,header:false,listeners:{beforeshow:{fn:function(item){tbDisplay.show(); btnClear.show(); btnSave.show();}}}},{id:"Panel3",items:{id:"WeeklyPanelMain",xtype:"panel",autoHeight:true,items:[{id:"WeeklyFormPanel",autoHeight:true,items:{id:"WeeklyFieldSet",xtype:"fieldset",style:"margin-bottom:0px;",items:[{xtype:"container",labelSeparator:"",labelAlign:"top",items:{id:"WeeklyNumberOfOSHARecordableCases",xtype:"numberfield",cls:"numberTop1",fieldLabel:"<h4># OSHA Recordable<br />Cases</h4>",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",items:{id:"WeeklyNetUnitsWrapped",xtype:"numberfield",cls:"numberTop1",fieldLabel:"<h4>Net Units<br />Wrapped (Lbs)</h4>",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",items:{id:"WeeklyTheoreticalRunHoursAtWrapper",xtype:"numberfield",cls:"numberTop1",fieldLabel:"<h4>Theoretical Run<br />Hours at Wrapper</h4>",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",items:{id:"WeeklyTotalIngredientsUsedWeight",xtype:"numberfield",cls:"numberTop1",fieldLabel:"<h4>Total Ingredients<br />Used Weight (Lbs)</h4>",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",items:{id:"WeeklyActualChangeoverHoursAtWrapper",xtype:"numberfield",cls:"numberTop1",fieldLabel:"<h4>Actual Changeover<br />Hours at Wrapper</h4>",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",items:{id:"WeeklyInventoryVariance",xtype:"numberfield",cls:"numberTop1",fieldLabel:"<h4>Inventory Variance<br />(Lbs)</h4>",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",items:{id:"WeeklyProductUnaccounted",xtype:"numberfield",cls:"numberTop1",fieldLabel:"<h4>Product<br />Unaccounted For $</h4>",rawValue:"",decimalSeparator:"."},layout:"form"}],layoutConfig:{fitHeight:false},layout:"netcolumn",title:"Weekly Entry"},layout:"form",bodyStyle:"background-color:InactiveCaptionText;"},{id:"WeeklyFormPanelLines",autoHeight:true,layout:"form",animCollapse:false,baseCls:"x-form-group",bodyStyle:"background-color:InactiveCaptionText;",collapsible:true,hideCollapseTool:true,title:"Please enter data below by Production Lines:",titleCollapse:true}],layout:"form"},layout:"fit",border:false,header:false,listeners:{beforeshow:{fn:function(item){tbDisplay.show(); btnClear.show(); btnSave.show();}}}}],layout:"card",tbar:{id:"tbDisplay",xtype:"toolbar",hidden:true,items:[{xtype:"container",labelSeparator:"",items:{id:"pnlDisplay",style:"margin-left:0px;",items:[{xtype:"container",labelWidth:150,columnWidth:0.4,items:{id:"dspYear",xtype:"displayfield",isFormField:true,fieldLabel:"<h3 class=display>Calendar Year",style:"margin-right:0px; text-align: left;",value:"YYYY"},layout:"form"},{xtype:"container",labelWidth:150,columnWidth:0.33,items:{id:"dspPeriodWeek",xtype:"displayfield",isFormField:true,fieldLabel:"<h3 class=display>Calendar Week/Period",style:"margin-right:0px; text-align: left;",value:"N"},layout:"form"},{xtype:"container",labelWidth:150,columnWidth:0.27,items:{id:"dspBakeryDisplay",xtype:"displayfield",isFormField:true,fieldLabel:"<h3 class=display>Bakery Location",style:"margin-right:0px; text-align: left;",value:"(Bakery)"},layout:"form"}],layoutConfig:{fitHeight:false},layout:"netcolumn",bodyStyle:"background-color:Transparent;",border:false,listeners:{beforerender:{fn:function(item){pnlDisplay.setWidth(WizardPanel.getWidth()); tbDisplay.setWidth(WizardPanel.getWidth());}}}},layout:"form"},{xtype:"nettbspacer"}]},buttons:[{id:"btnClear",hidden:true,style:"margin-left:0;",width:125,iconCls:"icon-erase",text:"Clear/Reset",listeners:{click:{fn:btnClear}}},{id:"btnSave",hidden:true,style:"margin-left:275; margin-right:250;",width:125,iconCls:"icon-disk",text:"Save",directEvents:{click:{fn:function(item,e){var params=arguments;Ext.net.DirectEvent.confirmRequest({extraParams:{"year":SelectBox1.getValue(),"week-period":SelectBox2.getValue(),"bakery":SelectBox3.getValue()},control:this});},delay:20}}},{id:"btnPrev",disabled:true,iconCls:"icon-previousgreen",text:"Prev",directEvents:{click:{fn:function(item,e){var params=arguments;Ext.net.DirectEvent.confirmRequest({extraParams:{"index":WizardPanel.items.indexOf(WizardPanel.layout.activeItem)},control:this});},delay:20}}},{id:"btnNext",disabled:true,iconCls:"icon-nextgreen",text:"Next",directEvents:{click:{fn:function(item,e){var params=arguments;Ext.net.DirectEvent.confirmRequest({extraParams:{"index":WizardPanel.items.indexOf(WizardPanel.layout.activeItem),"chkWeek":chkWeek.getValue(),"year":SelectBox1.getValue(),"week-period":SelectBox2.getValue(),"bakery":SelectBox3.getValue(),"bakeryDisplay":SelectBox3.lastSelectionText},control:this});},delay:20}}}],padding:"15px 15px 0px 15px",title:"Sara Lee Data Entry (all fields required)"});new Ext.form.FieldSet({id:"FieldSet1",renderTo:"FieldSet1_Container",style:"margin-top: 75px",height:275,width:400,items:[{id:"Container1",xtype:"container",labelAlign:"top",items:{id:"RadioGroup1",xtype:"radiogroup",anchor:"40%",itemCls:" x-form-cb-label-nowrap",items:[{id:"rdWeek",groupName:"Time",xtype:"radio",name:"RadioGroup1_Group",value:false,rawValue:"rdPeriod",boxLabel:"<b><font size=3>Week</b>",inputValue:"rdWeek",listeners:{check:{fn:radioSelect}}},{id:"rdPeriod",groupName:"Time",xtype:"radio",name:"RadioGroup1_Group",value:true,rawValue:"rdPeriod",boxLabel:"<b><font size=3>Period</b>",inputValue:"rdPeriod"}]},layout:"form"},{id:"FormPanel1",xtype:"form",labelWidth:110,style:"padding: 30;",height:175,width:350,items:[{id:"SelectBox1",xtype:"selectbox",fieldLabel:"<b>Calendar Year</b>",rawValue:"",allowBlank:false,emptyText:"Select a Calendar Year",displayField:"display",hiddenName:"SelectBox1_Value",triggerAction:"all",valueField:"value",store:this.Store1=new Ext.ux.data.PagingStore({proxyId:"Store1",autoLoad:true,reader:new Ext.data.ArrayReader({fields:[{name:"display"},{name:"value"}]}),directEventConfig:{},proxy:new Ext.data.PagingMemoryProxy({})}),submitValue:true,listeners:{select:{fn:selectHomePageValue}}},{id:"SelectBox2",xtype:"selectbox",fieldLabel:"<b>Calendar Week</b>",value:"",rawValue:"",allowBlank:false,emptyText:"Select a Week",displayField:"display",hiddenName:"SelectBox2_Value",maxHeight:170,triggerAction:"all",valueField:"value",store:this.WeekandPeriod=new Ext.ux.data.PagingStore({proxyId:"WeekandPeriod",autoLoad:true,reader:new Ext.data.ArrayReader({fields:[{name:"display"},{name:"value"}]}),directEventConfig:{},proxy:new Ext.data.PagingMemoryProxy([[1,1],[2,2],[3,3],[4,4],[5,5],[6,6],[7,7],[8,8],[9,9],[10,10],[11,11],[12,12]], false)}),submitValue:true,listeners:{select:{fn:selectHomePageValue}}},{id:"SelectBox3",xtype:"selectbox",fieldLabel:"<b>Bakery Location</b>",rawValue:"",allowBlank:false,emptyText:"Select a Bakery Location",displayField:"Name",hiddenName:"SelectBox3_Value",maxHeight:160,triggerAction:"all",valueField:"BakeryId",store:this.StoreLocation=new Ext.ux.data.PagingStore({proxyId:"StoreLocation",autoLoad:true,reader:new Ext.data.JsonReader({fields:[{name:"BakeryId",type:"string"},{name:"Name",type:"string"}]}),directEventConfig:{},proxy:new Ext.data.PagingMemoryProxy({})}),submitValue:true,listeners:{select:{fn:selectHomePageValue}}}],iconCls:"icon-timeadd",padding:5,title:"User Entry",tools:[{id:"excelicon",handler:exportToExcel,qtip:"Export data to Excel for selected values below"}],renderFormElement:false,url:"/Pages/Dashboard.aspx?_dc=1334079857438"}],bodyStyle:"background-color:F1F1F1;",title:"<i><h2>Weekly / Period Entry</h2></i>"});});
    	//]]>
    	</script>
    </head>
    <body>
        
        <form name="ctl02" method="post" action="Dashboard.aspx?_dc=1334079857438" id="ctl02">
    <div>
    <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
    <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
    <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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Ah8AZWRkAgYPZBYCZg8UKwQBDwUEYmFzZQ8WAh8AZWRkGAEFHl9fQ29udHJvbHNSZXF1aXJlUG9zdEJhY2tLZXlfXxZEBQVjdGwwMQUJRXhjZWxEYXRhBQlkc3BCYWtlcnkFB2Noa1dlZWsFC1dpemFyZFBhbmVsBQpwbmxEaXNwbGF5BQdkc3BZZWFyBQ1kc3BQZXJpb2RXZWVrBRBkc3BCYWtlcnlEaXNwbGF5BQZQYW5lbDEFDkhvbWUkRmllbGRTZXQxBRBIb21lJFJhZGlvR3JvdXAxBQtIb21lJHJkV2VlawUNSG9tZSRyZFBlcmlvZAUPSG9tZSRGb3JtUGFuZWwxBQ9Ib21lJFNlbGVjdEJveDEFD0hvbWUkU2VsZWN0Qm94MgUPSG9tZSRTZWxlY3RCb3gzBQZQYW5lbDIFEFBlcmlvZCRwbmxQZXJpb2QFElBlcmlvZCRGaWVsZFNldFRvcAUWUGVyaW9kJFBlcmlvZERvdWdoVHlwZQUUUGVyaW9kJFBlcmlvZEZHSXRlbXMFElBlcmlvZCRQZXJpb2RMaW5lcwUWUGVyaW9kJFBlcmlvZFBsYW5UeXBlcwUTUGVyaW9kJFBlcmlvZFJ1bkhycwUbUGVyaW9kJFBlcmlvZFRyYW5zcG9ydFRyaXBzBSBQZXJpb2QkUGVyaW9kVW5BY2NvdW50ZWRQcm9kdWN0cwUWUGVyaW9kJEZpZWxkU2V0TWlkZGxlMQUeUGVyaW9kJFBlcmlvZERpcmVjdENZSGVhZENvdW50BR5QZXJpb2QkUGVyaW9kRGlyZWN0UFlIZWFkQ291bnQFIFBlcmlvZCRQZXJpb2RJbmRpcmVjdENZSGVhZENvdW50BSBQZXJpb2QkUGVyaW9kSW5kaXJlY3RQWUhlYWRDb3VudAUlUGVyaW9kJFBlcmlvZERpc3RyaWJ1dGlvblNhbGFyeUZyaW5ncwUWUGVyaW9kJEZpZWxkU2V0TWlkZGxlMgUSUGVyaW9kJE1pZGRsZTJSb3cxBSBQZXJpb2QkUGVyaW9kQ1lBY2NBZGpEaXJlY3RMYWJvcgUdUGVyaW9kJFBlcmlvZENZQWNjQWRqT3ZlckhlYWQFI1BlcmlvZCRQZXJpb2RDWU90aGVyQ29zdERpcmVjdExhYm9yBSBQZXJpb2QkUGVyaW9kQ1lvdGhlckNvc3RPdmVySGVhZAUSUGVyaW9kJE1pZGRsZTJSb3cyBStQZXJpb2QkUGVyaW9kUHJvZHVjdGl2aXR5UHJvamVjdERpcmVjdExhYm9yBShQZXJpb2QkUGVyaW9kUHJvZHVjdGl2aXR5UHJvamVjdE92ZXJoZWFkBStQZXJpb2QkUGVyaW9kUHJvZHVjdGl2aXR5UHJvamVjdFJhd01ldGVyaWFsBRJQZXJpb2QkTWlkZGxlMlJvdzMFIFBlcmlvZCRQZXJpb2RQWUFjY0FkakRpcmVjdExhYm9yBR1QZXJpb2QkUGVyaW9kUFlBY2NBZGpPdmVySGVhZAUjUGVyaW9kJFBlcmlvZFBZT3RoZXJDb3N0RGlyZWN0TGFib3IFIFBlcmlvZCRQZXJpb2RQWU90aGVyQ29zdE92ZXJIZWFkBRZQZXJpb2QkRmllbGRTZXRNaWRkbGUzBStQZXJpb2QkUGVyaW9kSW5mbGF0aW9uTmVnYXRpdmVSZWZvcm11bGF0aW9uBSNQZXJpb2QkUGVyaW9kSW5mbGF0aW9uUmVmb3JtdWxhdGlvbgUGUGFuZWwzBRZXZWVrbHkkV2Vla2x5UGFuZWxNYWluBRZXZWVrbHkkV2Vla2x5Rm9ybVBhbmVsBRVXZWVrbHkkV2Vla2x5RmllbGRTZXQFKFdlZWtseSRXZWVrbHlOdW1iZXJPZk9TSEFSZWNvcmRhYmxlQ2FzZXMFHFdlZWtseSRXZWVrbHlOZXRVbml0c1dyYXBwZWQFKVdlZWtseSRXZWVrbHlUaGVvcmV0aWNhbFJ1bkhvdXJzQXRXcmFwcGVyBSdXZWVrbHkkV2Vla2x5VG90YWxJbmdyZWRpZW50c1VzZWRXZWlnaHQFK1dlZWtseSRXZWVrbHlBY3R1YWxDaGFuZ2VvdmVySG91cnNBdFdyYXBwZXIFHldlZWtseSRXZWVrbHlJbnZlbnRvcnlWYXJpYW5jZQUfV2Vla2x5JFdlZWtseVByb2R1Y3RVbmFjY291bnRlZAUbV2Vla2x5JFdlZWtseUZvcm1QYW5lbExpbmVzBQhidG5DbGVhcgUHYnRuU2F2ZQUHYnRuUHJldgUHYnRuTmV4dKE4AJNsyz6e7BrjHRiPzcm/erdV" />
    </div>
    
    <script type="text/javascript">
    //<![CDATA[
    var theForm = document.forms['ctl02'];
    if (!theForm) {
        theForm = document.ctl02;
    }
    function __doPostBack(eventTarget, eventArgument) {
        if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
            theForm.__EVENTTARGET.value = eventTarget;
            theForm.__EVENTARGUMENT.value = eventArgument;
            theForm.submit();
        }
    }
    //]]>
    </script>
    
    
    <div>
    
    	<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEWAgLYwsIHAqLAiY0LjjFAigXOOD8KvI9B/5A2uXoxOkQ=" />
    </div>
        <div id="ExcelData_Container" style="display:inline;">
    
    </div>
        <div id="dspBakery_Container" style="display:inline;">
    
    </div>
        
    
    
        <div id="chkWeek_Container" style="display:inline;">
    
    </div>
        <div id="WizardPanel_Container">
    	
    	
    	
    	
    	
    	
    
    
    
    	
    
    
    
    	
    
    
    
    
    
    
    
    
    
    	<div id="Panel1_Content" class="x-hidden">
                        
    <style type="text/css">
        .x-tool-excelicon
        {
            background-image: url(../Resources/images/Excel.PNG);
        }
        .x-tool-excelicon-over
        {
            background-image: url(../Resources/images/Excel.PNG);
        }
    </style>
    <center>
        <div id="FieldSet1_Container">
    	
    	
    	
    
    
    
    
    
    
    	
    	
    
    
    
    	
    
    
    
    	
    
    
    
    
    </div>
    </center>
    
                    </div>
    
    	
                        
    <style type="text/css">
        .numberTop
        {
            text-align: center;
            font-weight: bold;
            width: 95px;
            margin-left: 10px !important;
            margin-right: 10px !important;
            margin-top: 0px !important;
            vertical-align: middle;
        }
        .numberMiddle1
        {
            text-align: center;
            font-weight: bold;
            width: 60px;
            margin-left: 0px !important;
            margin-right: 0px !important;
            margin-top: 15px !important;
            vertical-align: middle;
        }
        .numberMiddle2
        {
            text-align: center;
            font-weight: bold;
            width: 60px;
            margin-left: 0px !important;
            margin-right: 0px !important;
            margin-top: 5px !important;
            vertical-align: middle;
        }
        .numberMiddle3
        {
            text-align: center;
            font-weight: bold;
            width: 60px;
            margin-left: 0px !important;
            margin-right: 0px !important;
            margin-top: 0px !important;
            vertical-align: middle;
        }
        h3
        {
            font-family: Georgia, "Times New Roman" , Times, serif;
            font-size: 11px;
            font-weight: bold;
            color: #000000;
            margin-top: 0px !important;
            margin-bottom: 0px !important;
            text-align: center;
        }
        h3.right
        {
            font-family: Georgia, "Times New Roman" , Times, serif;
            font-size: 11px;
            font-weight: bold;
            color: #000000;
            margin-top: 0px !important;
            margin-bottom: 0px !important;
            text-align: right;
        }
        h3.display
        {
            font-family: Georgia, "Times New Roman" , Times, serif;
            font-size: 12px;
            font-weight: bold;
            color: #000000;
            margin-top: 0px !important;
            margin-bottom: 0px !important;
            text-align: right;
        }
    </style>
    
    
    	
    	
    	
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    
    	
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    
    	
    	
    
    
    	
    
    
    
    	
    
    
    
    
    
    	
    
    
    
    	
    
    
    
    
    	
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    
    	
    
    
    	
    
    
    
    	
    
    
    
    
    
    	
    
    
    
    	
    
    
    
    
    
    	
    	
    
    
    
    	
    
    
    
    
    
    
    
                    
    
    	
                        
    <style type="text/css">
        .numberTop1
        {
            text-align: center;
            font-weight: bold;
            width: 98px;
            margin-left: 10px !important;
            margin-right: 10px !important;
            vertical-align: middle;
        }
        .number
        {
            text-align: center;
            width: 30px;
            margin-left: 10px !important;
            margin-right: 10px !important;
            vertical-align: middle;
        }
        h2
        {
            font-family: Georgia, "Times New Roman" , Times, serif;
            font-size: 9px;
            font-weight: bold;
            color: #000000;
            margin-top: 0px !important;
            margin-bottom: 0px !important;
            text-align: center;
        }
        h4
        {
            font-family: Georgia, "Times New Roman" , Times, serif;
            font-size: 10px;
            font-weight: bold;
            color: #000000;
            margin-top: 0px !important;
            text-align: center;
        }
    </style>
    
    	
    	
    	
    	
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    
    
    
    
    
    
    
                    
    
    
    
    
    
    
    
    
    
    </div>
        </form>
    </body>
    </html>
    Quote Originally Posted by Vladimir View Post
    Generally, BADRESPONSE means that script is generated on the server side is incorrect (or response is empty). Response cannot be parsed
    We requested content of invalid response several times but you did not provide it still (only after response investigating we can answer whats wrong), just see response tab for invalid request in Firebug
  5. #25
    Ok, I'll try by creating a simple page and working my way up.

    My previous post was with in regards to the curent situation.

    Quote Originally Posted by geoffrey.mcgill View Post
    A couple posts back I posted the following comment...



    Please follow this advice. Start with a very very simple page. A Page/View with basically nothing on it, maybe just a Button. Then slowly, piece-by-piece, build up that sample until it recreates the problem. With every change, test that change and ensure it's working properly. Eventually you should get to issue that is causing the problem. These are basic debugging techniques.

    As well, you might have multiple issues, each leading you in a different direction.

    Start small, and work your way up. Once you have a simplified sample which demonstrates how to reproduce the problem, post that code here in the forums.

    You can also use tools such as Firefox + Firebug (or Fiddler2) to inspect the request-response calls in the browser. Any JavaScript errors will be caught by Firebug and can be further inspected.
  6. #26
    It means that DirectRequestModule is not executed
    Possible reasons:
    - you use Server.Transfer (or something else which prevents http modules)
    - something on your server clears request headers, in this case is not able to determine that the request is ajax request
  7. #27
    You are correct, it Always fails when I get to a 'DirectMethod'

    I don't have a Server.Transfer

    But it seems to fail here when it goes to the DirectMethod
            [DirectMethod(Namespace = "Dashboard", Timeout = 90000)]
            public void LoadPeriodStore(int? year, int? period, String bakery)
            {
                PeriodStore.DataSource = tPeriod.FilterAllPeriodsByBakeryPeriodYear(bakery, period.GetValueOrDefault(),
                                                                                    year.GetValueOrDefault());
                PeriodStore.DataBind();
            }
    Its actually on the same 2003 Web Server, the ONLY difference is where we are trying to access it externally through a Portal.

    Can you let me know what I need to tell the guys in IT to enable to let "Request Headers" come through the Portal to our 2003 Web Server where the application sits ?

    Quote Originally Posted by Vladimir View Post
    It means that DirectRequestModule is not executed
    Possible reasons:
    - you use Server.Transfer (or something else which prevents http modules)
    - something on your server clears request headers, in this case is not able to determine that the request is ajax request
  8. #28
    Can you let me know what I need to tell the guys in IT to enable to let "Request Headers" come through the Portal to our 2003 Web Server where the application sits ?
    Unfortunately i don't know your infrastructure but obviously the portal doesn't translate original request headers
  9. #29
    Quote Originally Posted by RonaldR View Post
    You are correct, it Always fails when I get to a 'DirectMethod'

    I don't have a Server.Transfer

    But it seems to fail here when it goes to the DirectMethod
            [DirectMethod(Namespace = "Dashboard", Timeout = 90000)]
            public void LoadPeriodStore(int? year, int? period, String bakery)
            {
                PeriodStore.DataSource = tPeriod.FilterAllPeriodsByBakeryPeriodYear(bakery, period.GetValueOrDefault(),
                                                                                    year.GetValueOrDefault());
                PeriodStore.DataBind();
            }
    We really wish you could create a full (but VERY simplified) sample demonstrating all the parts of this problem (.aspx and .cs).

    What happens if you comment out both lines within the LoadPeriodStore DirectMethod?

    Its actually on the same 2003 Web Server, the ONLY difference is where we are trying to access it externally through a Portal.
    I'm not sure what this means?

    Can you let me know what I need to tell the guys in IT to enable to let "Request Headers" come through the Portal to our 2003 Web Server where the application sits ?
    I'm not really sure this is the problem, but it would be best to ask your IT guys. This is outside the scope of Ext.NET support.
    Geoffrey McGill
    Founder
  10. #30

    A VERY Simplified Example of the issue...

    Guys,
    I created a very simple version as you requested and same error occurs.

    Home.ascx
                <ext:Container ID="Container1" runat="server" LabelAlign="Top" Layout="Form">
                    <Items>
                        <ext:RadioGroup ID="RadioGroup1" runat="server" AnchorHorizontal="40%">
                            <Items>
                                <ext:Radio ID="rdWeek" runat="server" BoxLabel="<b><font size=3>Week</b>" Checked="true"
                                    GroupName="Time">
                                    <DirectEvents>
                                        <Check OnEvent="LoadCalendarStore" />
                                    </DirectEvents>
                                </ext:Radio>
                                <ext:Radio ID="rdPeriod" runat="server" BoxLabel="<b><font size=3>Period</b>" Checked="false"
                                    GroupName="Time">
                                </ext:Radio>
                            </Items>
                        </ext:RadioGroup>
                    </Items>
                </ext:Container>
    Home.ascx.cs
            public void LoadCalendarStore(object sender, DirectEventArgs e)
            {
                X.Msg.Alert("Testing", "I'm here").Show();
            }
    Request-Response calls in the browser from Firebug when Error occurs
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://silverspoon.bbuconnect.com/TR/xhtml1/DTD/,DanaInfo=www.w3.org,CT=dtd+xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="ctl00">
    	<link rel="stylesheet" type="text/css" href="/WebResource.axd?d=eRRgeO-E4LJ9nHcRDt4y1tIzCWJ8kMny8lLwxJSOrLWpIbdWzGPEYegdy8ouLUToaSFq7gombLKPgmeluCV8Brzy_R2yxNA9KzgRgZKjdNlHaI7wphtu6WJs0ZaDbuU0ODdkAn-uLyEOehVFXU5vN1Uk7C41&amp;t=634661564280000000"></link>
    
    	<link rel="stylesheet" type="text/css" href="/WebResource.axd?d=mnG-pzDHQPk-m_YueLofRCNN9ZKsh6rSesUR4fXJPb4rKjw6nOHiaJVS7bFdNtMLT6xhR7fwpO6lM_otKtBPArVFkpFBDTw_ePhXEZxi8M2RVv0QziL9AfeSOEtCB9xGk7fk5VsBYvfxCpYsfVgSMp-sdwxzxAm7TXS53-Gje2nBB8sD0&amp;t=634661564280000000"></link>
    <title>
    	Dashboard
    </title>
        <style type="text/css">
            .icon-exclamation
            {
                padding-left: 25px !important;
                background: url(/icons/exclamation-png/ext.axd) no-repeat 3px 3px !important;
            }
            .icon-accept
            {
                padding-left: 25px !important;
                background: url(/icons/accept-png/ext.axd) no-repeat 3px 3px !important;
            }
            .list
            {
                list-style-image: none;
                list-style-position: outside;
                list-style-type: square;
                padding-left: 16px;
            }
            .list li
            {
                font-size: 11px;
                padding: 3px;
            }
        </style>
    
        <script type="text/javascript">
    
            var radioSelect = function() {
                if (rdPeriod.getValue()) {
                    SelectBox2.setFieldLabel("<b>Calendar Period</b>");
                    SelectBox2.emptyText = "Select a Period";
                    SelectBox2.clearValue();
                    chkWeek.setValue(false);
                    //Dashboard.LoadCalendarStore("Period");
                }
                else {
                    SelectBox2.setFieldLabel("<b>Calendar Week</b>");
                    SelectBox2.emptyText = "Select a Week";
                    SelectBox2.clearValue();
                    chkWeek.setValue(true);
                    //Dashboard.LoadCalendarStore("Week");
                }
                selectHomePageValue();
            }
    
            var selectHomePageValue = function() {
                if (FormPanel1.isValid())
                { btnNext.setDisabled(false); }
                else
                { btnNext.setDisabled(true); }
                SelectBox1.clearInvalid();
                SelectBox2.clearInvalid();
                SelectBox3.clearInvalid();
                var year = SelectBox1.getValue().trim();
                var period = SelectBox2.getValue();
                var bakery = SelectBox3.getValue().trim();
                
                if(year != "" && period != "" && bakery != "")
                    Dashboard.LoadPeriodStore(year, period, bakery);
            }
    
            var exportToExcel = function() {
                ExcelData.setValue(Ext.encode(PeriodStore.getRecordsValues({ selectedOnly: false })));
                PeriodStore.submitData(true);
            };
    
            var btnClear = function() {
                Ext.Msg.confirm("Confirm", "Are you sure you want to clear ALL values?", function(result) {
                    if (result == "yes") {
                        clearAllInputs();
                    }
                });
            }
            var clearAllInputs = function() {
                if (chkWeek.checked) {
                    //Weekly
                    WeeklyNumberOfOSHARecordableCases.setValue(0);
                    WeeklyNetUnitsWrapped.setValue(0);
                    WeeklyTheoreticalRunHoursAtWrapper.setValue(0);
                    WeeklyTotalIngredientsUsedWeight.setValue(0);
                    WeeklyActualChangeoverHoursAtWrapper.setValue(0);
                    WeeklyInventoryVariance.setValue(0);
                    WeeklyProductUnaccounted.setValue(0);
    
                    // Remove All from lines...
                    // WeeklyAccordionPanel1.removeAll()
                }
                else {
                    //Period top
                    PeriodDoughType.setValue(0);
                    PeriodFGItems.setValue(0);
                    PeriodLines.setValue(0);
                    PeriodPlanTypes.setValue(0);
                    PeriodRunHrs.setValue(0);
                    PeriodTransportTrips.setValue(0);
                    PeriodUnAccountedProducts.setValue(0);
                    //Middle1
                    PeriodDirectCYHeadCount.setValue(0);
                    PeriodDirectPYHeadCount.setValue(0);
                    PeriodIndirectCYHeadCount.setValue(0);
                    PeriodIndirectPYHeadCount.setValue(0);
                    PeriodDistributionSalaryFrings.setValue(0);
                    //Middle2
                    PeriodCYAccAdjDirectLabor.setValue(0);
                    PeriodCYAccAdjOverHead.setValue(0);
                    PeriodCYOtherCostDirectLabor.setValue(0);
                    PeriodCYotherCostOverHead.setValue(0);
                    PeriodProductivityProjectDirectLabor.setValue(0);
                    PeriodProductivityProjectOverhead.setValue(0);
                    PeriodProductivityProjectRawMeterial.setValue(0);
                    PeriodPYAccAdjDirectLabor.setValue(0);
                    PeriodPYAccAdjOverHead.setValue(0);
                    PeriodPYOtherCostDirectLabor.setValue(0);
                    PeriodPYOtherCostOverHead.setValue(0);
                    //Middle3
                    PeriodInflationNegativeReformulation.setValue(0);
                    PeriodInflationReformulation.setValue(0);
                }
            }
            
        </script>
    
    
    	<script type="text/javascript" src="/WebResource.axd?d=CvRkoPCtT6bar5S2I9bVBRRFp9Qh9D-LOcfXQ6PR_kn2__Vml-I-0qvkssQBieZmQ27-D4kuwsGOKYYgM2Ag9NzF1us5WtQXWE8Q2djYWv72tOH5DD9oG5IVRhHFeWObYjq2NmsIJrWmYkgwa_YhiAPNU_Q1&amp;t=634661564280000000"></script>
    	<script type="text/javascript" src="/WebResource.axd?d=MMXEWbuUMtK98U3T-PRzXJuYJ8B-vIa8CjiegH354NLpazGon3lLV_PpS6HrKBn7uKu_nEfvjw6xftkO2WECHy_FCxyS5Ok62cHs5myYr22Ls6WQnDCpWiRUaEMR2bgXu6kxzQ2&amp;t=634661564280000000"></script>
    	<script type="text/javascript" src="/WebResource.axd?d=sR0RIPcoVlc8iq5KlAf9SiFCtvQDQNyuEgGFVpThpMKnj31agPt7sfa4m_DSHtPxWU7adRG27fK8a38T_Iuc1hbXbGqgbiQcqLZBYf9zFIDY0-7IfMr7qT5CRXCU7qieN60DIJvb5MnbmEHFn8puLzDHlEk1&amp;t=634661564280000000"></script>
    	<script type="text/javascript" src="/WebResource.axd?d=6wZ1Lb97G073oNX844Lmzh375qiTeR3u1DhbMG01wuf4zRXKmBqjYy2p0RWMQAAzbJh9kffJOaQ-NYu_saa-wW8UlxKCKi_G7oP1MDQw1-Jv5xsxS-bMAtx_KVPztW8UIPHh0uuE8rKPnQ7z-z0ZEMkCQ9o1&amp;t=634661564280000000"></script>
    	<script type="text/javascript" src="/WebResource.axd?d=GFGusawdwm6_31SvM2NN1kBXp3D46tmzBLJ40tI4sLdtNUlpawK5zSKvBctfElnzYMNAJg29DsR-uapUzni-O7HccB-ATvoW57bTrj5-G4Gk_7iJlXHP7fFdoSDlpVCAYJiaj-KKvrUAhPAB6fzl6uW9kjw1&amp;t=634661564280000000"></script>
    	<script type="text/javascript">
    	//<![CDATA[
    		Ext.net.ResourceMgr.init({id:"ctl01",BLANK_IMAGE_URL:"/WebResource.axd?d=QYHIDG713REyKpxgZcgH4y50Drf8XrsX5JvtnDZr7ZjjUIul0voKzhlWwvmgXJs8JnBXbR1gh6zDm_sVohVQ7vCtfeYnABQJHg2-Q6CNk8oX03sdChe3tDeBss7Y5AJJRCc93_sMEFLe3Rzsg4_gpPw7bk41&amp;t=634661564280000000",aspForm:"ctl02",theme:"blue",icons:[{name:"TimeAdd",url:"/WebResource.axd?d=jnow9lQc3xgrTNxU9l3JF82kcppCqYvF1Q92SB8Bde7GzbkjVlNfG-SgMrLKmE-p-iwhTlosiy1bdCjmr_ttUVZkyTyMFS4CLE4En_ri3VALW06uekUT-HfuJ4lyxDrjTNYufg2&amp;t=634661564280000000"},{name:"Erase",url:"/WebResource.axd?d=ARWWiWBRROHWGCZkJtq0PtwxQYKz4yU7Fi4Hzc1otpRJtYNsVvc4qPcGIM4ksLTn1H4bEU0mvcjHbqEGco-uYk72ej79U2uPfjqWX5VBzP29Nd38Dmz7tGwQfD_MViLy4ysopw2&amp;t=634661564280000000"},{name:"Disk",url:"/WebResource.axd?d=DlKHrliBY1GJlHoJmkN-0Pgr1y6n1cCvwB9eZGL1iuf45yaRdrBl5vWdgi7vsycYN_92-XnLCMS4Mw7RxJKnqfhnhup1OdvZoElEkV6ADT9_jNqjSW1m-RcKxFhyB-IrvuApFA2&amp;t=634661564280000000"},{name:"PreviousGreen",url:"/WebResource.axd?d=OfrOhrS0-M_tPda41NeDcYXLHhAo8oM9fgQNm_a-djDcrZedt0tkZ9j1ClOE37wJXtRQX6A88jy2apgduED_9mnbf1cdeBtW8RFIxsfmaM4P_Y96p4xK-s04JQ0cU1Wjv1G5YQ2&amp;t=634661564280000000"},{name:"NextGreen",url:"/WebResource.axd?d=Ng0A8_sYgecJ2u8eBSplo5LRASsGqY5N9cz550zh3sLTYI-6NPALv6ePIGYHhxZLmRgJEdzU-PX-wo_Iee0z-kpFMDZFpucXeNzD2Z3DJjp3UMLWSd5jBsJBK0fNMDn8IDAqHw2&amp;t=634661564280000000"}]});Ext.onReady(function(){Ext.QuickTips.init();Ext.ns("Dashboard");Ext.apply(Dashboard, { LoadPeriodStore:function(year,period,bakery,config){Ext.net.DirectMethod.request("LoadPeriodStore",Ext.applyIf(config || {}, {params:{year:year,period:period,bakery:bakery},timeout:90000}));} });new Ext.form.Hidden({id:"ExcelData",renderTo:"ExcelData_Container",rawValue:""});new Ext.form.DisplayField({id:"dspBakery",isFormField:true,fieldLabel:"<h3 class=display>Bakery Location",hidden:true,renderTo:"dspBakery_Container",style:"margin-right:0px; text-align: left;",value:"(Bakery)"});this.PeriodStore=new Ext.ux.data.PagingStore({proxyId:"PeriodStore",autoLoad:true,reader:new Ext.data.JsonReader({fields:[{name:"BakeryLocation"},{name:"Year",type:"int"},{name:"Period",type:"int"},{name:"DoughType",type:"float"},{name:"FGItems",type:"float"},{name:"CYAccAdjDirectLabor",type:"float"},{name:"CYAccAdjOverHead",type:"float"},{name:"CYOtherCostDirectLabor",type:"float"},{name:"CYotherCostOverHead",type:"float"},{name:"DirectCYHeadCount",type:"float"},{name:"DirectPYHeadCount",type:"float"},{name:"DistributionSalaryFrings",type:"float"},{name:"IndirectCYHeadCount",type:"float"},{name:"IndirectPYHeadCount",type:"float"},{name:"InflationNegativeReformulation",type:"float"},{name:"InflationReformulation",type:"float"},{name:"Lines",type:"float"},{name:"PlanTypes",type:"float"},{name:"ProductivityProjectDirectLabor",type:"float"},{name:"ProductivityProjectOverhead",type:"float"},{name:"ProductivityProjectRawMeterial",type:"float"},{name:"PYAccAdjDirectLabor",type:"float"},{name:"PYAccAdjOverHead",type:"float"},{name:"PYOtherCostDirectLabor",type:"float"},{name:"PYOtherCostOverHead",type:"float"},{name:"RunHrs",type:"float"},{name:"TransportTrips",type:"float"},{name:"UnAccountedProducts",type:"float"}]}),remoteSort:true,directEventConfig:{isUpload:true},proxy:new Ext.data.PagingMemoryProxy({})});new Ext.form.Checkbox({id:"chkWeek",hidden:true,renderTo:"chkWeek_Container",value:true,rawValue:"chkWeek",inputValue:"chkWeek"});new Ext.Panel({id:"WizardPanel",renderTo:"WizardPanel_Container",height:510,activeItem:0,items:[{id:"Panel1",contentEl:"Panel1_Content",border:false,buttonAlign:"center",header:false,listeners:{beforeshow:{fn:function(item){btnClear.hide(); btnSave.hide();}}}},{id:"Panel2",items:{id:"pnlPeriod",xtype:"panel",autoHeight:true,items:[{id:"FieldSetTop",xtype:"fieldset",style:"padding-left: 5px;",items:[{xtype:"container",labelSeparator:"",labelAlign:"top",style:"margin-bottom: -8px;",items:{id:"PeriodDoughType",xtype:"numberfield",cls:"numberTop",fieldLabel:"<h3># of Dough Types<br>(Wkly Avg)",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",style:"margin-bottom: -8px;",items:{id:"PeriodFGItems",xtype:"numberfield",cls:"numberTop",fieldLabel:"<h3># of FG Items<br>(Wkly Avg)",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",style:"margin-bottom: -8px;",items:{id:"PeriodLines",xtype:"numberfield",cls:"numberTop",fieldLabel:"<h3><br># of Lines",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",style:"margin-bottom: -8px;",items:{id:"PeriodPlanTypes",xtype:"numberfield",cls:"numberTop",fieldLabel:"<h3><br># of Plan Types",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",style:"margin-bottom: -8px;",items:{id:"PeriodRunHrs",xtype:"numberfield",cls:"numberTop",fieldLabel:"<h3>Theor. Run Hrs<br> at wrapper",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",style:"margin-bottom: -8px;",items:{id:"PeriodTransportTrips",xtype:"numberfield",cls:"numberTop",fieldLabel:"<h3>Transport<br>Trips",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",style:"margin-bottom: -8px;",items:{id:"PeriodUnAccountedProducts",xtype:"numberfield",cls:"numberTop",fieldLabel:"<h3>Product<br>Unaccounted For $",rawValue:"",decimalSeparator:"."},layout:"form"}],layoutConfig:{fitHeight:false},layout:"netcolumn",bodyStyle:"background-color:Transparent;",title:"Period Entry"},{id:"FieldSetMiddle1",xtype:"fieldset",style:"padding-left: 0px;",items:[{xtype:"container",labelSeparator:"",labelAlign:"right",style:"margin-bottom: -10px;",items:{id:"PeriodDirectCYHeadCount",xtype:"numberfield",cls:"numberMiddle1",fieldLabel:"<h3>Direct<br>CY<br>Headcount",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",style:"margin-bottom: -10px;",items:{id:"PeriodDirectPYHeadCount",xtype:"numberfield",cls:"numberMiddle1",fieldLabel:"<h3>Direct<br>PY<br>Headcount",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",style:"margin-bottom: -10px;",items:{id:"PeriodIndirectCYHeadCount",xtype:"numberfield",cls:"numberMiddle1",fieldLabel:"<h3>Indirect<br>CY<br>Headcount",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",style:"margin-bottom: -10px;",items:{id:"PeriodIndirectPYHeadCount",xtype:"numberfield",cls:"numberMiddle1",fieldLabel:"<h3>Indirect<br>PY Labor<br>Headcount",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",style:"margin-bottom: -10px;",items:{id:"PeriodDistributionSalaryFrings",xtype:"numberfield",cls:"numberMiddle1",fieldLabel:"<h3>Disribution<br>Salary &<br>Fringe $",rawValue:"",decimalSeparator:"."},layout:"form"}],layoutConfig:{fitHeight:false},layout:"netcolumn",bodyStyle:"background-color:Transparent;"},{id:"FieldSetMiddle2",xtype:"fieldset",style:"padding-left: 0px;",items:[{id:"Middle2Row1",style:"padding-bottom: 7px; margin-left:5px;",items:[{xtype:"label",html:"<u>CY Accounting Adj.",style:"font-weight: bold; font-size: 14px; text-align: center;",width:95},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodCYAccAdjDirectLabor",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Direct<br>Labor",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodCYAccAdjOverHead",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Other<br>Overhead",rawValue:"",decimalSeparator:"."},layout:"form"},{id:"Label3",xtype:"label",html:"<u>CY Significant<br>Other Cost",style:"font-weight: bold; font-size: 14px; text-align: center; margin-left:25",width:95},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodCYOtherCostDirectLabor",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Direct<br>Labor",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodCYotherCostOverHead",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Other<br>Overhead",rawValue:"",decimalSeparator:"."},layout:"form"}],layoutConfig:{fitHeight:false},layout:"netcolumn",bodyStyle:"background-color:Transparent;",border:false},{id:"Middle2Row2",style:"padding-bottom: 8px; padding-top: 7px; margin-left:5px; border-top: 1px solid #97ABCF; border-bottom: 1px solid #97ABCF;",items:[{id:"Label1",xtype:"label",html:"<u>Productivity Projects",style:"font-weight: bold; font-size: 14px; text-align: center;",width:95},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodProductivityProjectDirectLabor",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Direct<br>Labor",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodProductivityProjectOverhead",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Other<br>Overhead",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodProductivityProjectRawMeterial",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Raw<br>Materials",rawValue:"",decimalSeparator:"."},layout:"form"}],layoutConfig:{fitHeight:false},layout:"netcolumn",bodyStyle:"background-color:Transparent;",border:false},{id:"Middle2Row3",style:"padding-top: 8px; margin-left:5px;",items:[{id:"Label2",xtype:"label",html:"<u>PY Accounting Adj.",style:"font-weight: bold; font-size: 14px; text-align: center;",width:95},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodPYAccAdjDirectLabor",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Direct<br>Labor",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodPYAccAdjOverHead",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Other<br>Overhead",rawValue:"",decimalSeparator:"."},layout:"form"},{id:"Label4",xtype:"label",html:"<u>PY Significant<br>Other Cost",style:"font-weight: bold; font-size: 14px; text-align: center; margin-left:25",width:95},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodPYOtherCostDirectLabor",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Direct<br>Labor",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",items:{id:"PeriodPYOtherCostOverHead",xtype:"numberfield",cls:"numberMiddle2",fieldLabel:"<h3>Other<br>Overhead",rawValue:"",decimalSeparator:"."},layout:"form"}],layoutConfig:{fitHeight:false},layout:"netcolumn",bodyStyle:"background-color:Transparent;",border:false}],layout:"ux.row",bodyStyle:"background-color:Transparent;",title:"Efficiency"},{id:"FieldSetMiddle3",xtype:"fieldset",style:"padding-left: 0px;",items:[{xtype:"container",labelSeparator:"",labelAlign:"right",labelWidth:330,style:"margin-bottom: -3px;",items:{id:"PeriodInflationNegativeReformulation",xtype:"numberfield",cls:"numberMiddle3",fieldLabel:"<h3 class=right>Negative Reformulation (Raw Materials)",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"right",labelWidth:330,style:"margin-bottom: -3px;",items:{id:"PeriodInflationReformulation",xtype:"numberfield",cls:"numberMiddle3",fieldLabel:"<h3 class=right>Reformulation (Raw Materials)",rawValue:"",decimalSeparator:"."},layout:"form"}],layoutConfig:{fitHeight:false},layout:"netcolumn",bodyStyle:"background-color:Transparent;",title:"Inflation"}],layout:"ux.row",bodyStyle:"background-color:InactiveCaptionText;",padding:5},layout:"fit",border:false,header:false,listeners:{beforeshow:{fn:function(item){tbDisplay.show(); btnClear.show(); btnSave.show();}}}},{id:"Panel3",items:{id:"WeeklyPanelMain",xtype:"panel",autoHeight:true,items:[{id:"WeeklyFormPanel",autoHeight:true,items:{id:"WeeklyFieldSet",xtype:"fieldset",style:"margin-bottom:0px;",items:[{xtype:"container",labelSeparator:"",labelAlign:"top",items:{id:"WeeklyNumberOfOSHARecordableCases",xtype:"numberfield",cls:"numberTop1",fieldLabel:"<h4># OSHA Recordable<br />Cases</h4>",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",items:{id:"WeeklyNetUnitsWrapped",xtype:"numberfield",cls:"numberTop1",fieldLabel:"<h4>Net Units<br />Wrapped (Lbs)</h4>",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",items:{id:"WeeklyTheoreticalRunHoursAtWrapper",xtype:"numberfield",cls:"numberTop1",fieldLabel:"<h4>Theoretical Run<br />Hours at Wrapper</h4>",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",items:{id:"WeeklyTotalIngredientsUsedWeight",xtype:"numberfield",cls:"numberTop1",fieldLabel:"<h4>Total Ingredients<br />Used Weight (Lbs)</h4>",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",items:{id:"WeeklyActualChangeoverHoursAtWrapper",xtype:"numberfield",cls:"numberTop1",fieldLabel:"<h4>Actual Changeover<br />Hours at Wrapper</h4>",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",items:{id:"WeeklyInventoryVariance",xtype:"numberfield",cls:"numberTop1",fieldLabel:"<h4>Inventory Variance<br />(Lbs)</h4>",rawValue:"",decimalSeparator:"."},layout:"form"},{xtype:"container",labelSeparator:"",labelAlign:"top",items:{id:"WeeklyProductUnaccounted",xtype:"numberfield",cls:"numberTop1",fieldLabel:"<h4>Product<br />Unaccounted For $</h4>",rawValue:"",decimalSeparator:"."},layout:"form"}],layoutConfig:{fitHeight:false},layout:"netcolumn",title:"Weekly Entry"},layout:"form",bodyStyle:"background-color:InactiveCaptionText;"},{id:"WeeklyFormPanelLines",autoHeight:true,layout:"form",animCollapse:false,baseCls:"x-form-group",bodyStyle:"background-color:InactiveCaptionText;",collapsible:true,hideCollapseTool:true,title:"Please enter data below by Production Lines:",titleCollapse:true}],layout:"form"},layout:"fit",border:false,header:false,listeners:{beforeshow:{fn:function(item){tbDisplay.show(); btnClear.show(); btnSave.show();}}}}],layout:"card",tbar:{id:"tbDisplay",xtype:"toolbar",hidden:true,items:[{xtype:"container",labelSeparator:"",items:{id:"pnlDisplay",style:"margin-left:0px;",items:[{xtype:"container",labelWidth:150,columnWidth:0.4,items:{id:"dspYear",xtype:"displayfield",isFormField:true,fieldLabel:"<h3 class=display>Calendar Year",style:"margin-right:0px; text-align: left;",value:"YYYY"},layout:"form"},{xtype:"container",labelWidth:150,columnWidth:0.33,items:{id:"dspPeriodWeek",xtype:"displayfield",isFormField:true,fieldLabel:"<h3 class=display>Calendar Week/Period",style:"margin-right:0px; text-align: left;",value:"N"},layout:"form"},{xtype:"container",labelWidth:150,columnWidth:0.27,items:{id:"dspBakeryDisplay",xtype:"displayfield",isFormField:true,fieldLabel:"<h3 class=display>Bakery Location",style:"margin-right:0px; text-align: left;",value:"(Bakery)"},layout:"form"}],layoutConfig:{fitHeight:false},layout:"netcolumn",bodyStyle:"background-color:Transparent;",border:false,listeners:{beforerender:{fn:function(item){pnlDisplay.setWidth(WizardPanel.getWidth()); tbDisplay.setWidth(WizardPanel.getWidth());}}}},layout:"form"},{xtype:"nettbspacer"}]},buttons:[{id:"btnClear",hidden:true,style:"margin-left:0;",width:125,iconCls:"icon-erase",text:"Clear/Reset",listeners:{click:{fn:btnClear}}},{id:"btnSave",hidden:true,style:"margin-left:275; margin-right:250;",width:125,iconCls:"icon-disk",text:"Save",directEvents:{click:{fn:function(item,e){var params=arguments;Ext.net.DirectEvent.confirmRequest({extraParams:{"year":SelectBox1.getValue(),"week-period":SelectBox2.getValue(),"bakery":SelectBox3.getValue()},control:this});},delay:20}}},{id:"btnPrev",disabled:true,iconCls:"icon-previousgreen",text:"Prev",directEvents:{click:{fn:function(item,e){var params=arguments;Ext.net.DirectEvent.confirmRequest({extraParams:{"index":WizardPanel.items.indexOf(WizardPanel.layout.activeItem)},control:this});},delay:20}}},{id:"btnNext",disabled:true,iconCls:"icon-nextgreen",text:"Next",directEvents:{click:{fn:function(item,e){var params=arguments;Ext.net.DirectEvent.confirmRequest({extraParams:{"index":WizardPanel.items.indexOf(WizardPanel.layout.activeItem),"chkWeek":chkWeek.getValue(),"year":SelectBox1.getValue(),"week-period":SelectBox2.getValue(),"bakery":SelectBox3.getValue(),"bakeryDisplay":SelectBox3.lastSelectionText},control:this});},delay:20}}}],padding:"15px 15px 0px 15px",title:"Sara Lee Data Entry (all fields required)"});new Ext.form.FieldSet({id:"FieldSet1",renderTo:"FieldSet1_Container",style:"margin-top: 75px",height:275,width:400,items:[{id:"Container1",xtype:"container",labelAlign:"top",items:{id:"RadioGroup1",xtype:"radiogroup",anchor:"40%",itemCls:" x-form-cb-label-nowrap",items:[{id:"rdWeek",groupName:"Time",xtype:"radio",name:"RadioGroup1_Group",value:false,rawValue:"rdPeriod",boxLabel:"<b><font size=3>Week</b>",inputValue:"rdWeek",directEvents:{check:{fn:function(item,checked){var params=arguments;Ext.net.DirectEvent.confirmRequest({control:this,action:'Check'});},delay:20}}},{id:"rdPeriod",groupName:"Time",xtype:"radio",name:"RadioGroup1_Group",value:true,rawValue:"rdPeriod",boxLabel:"<b><font size=3>Period</b>",inputValue:"rdPeriod"}]},layout:"form"},{id:"FormPanel1",xtype:"form",labelWidth:110,style:"padding: 30;",height:175,width:350,items:[{id:"SelectBox1",xtype:"selectbox",fieldLabel:"<b>Calendar Year</b>",rawValue:"",allowBlank:false,emptyText:"Select a Calendar Year",displayField:"display",hiddenName:"SelectBox1_Value",triggerAction:"all",valueField:"value",store:this.Store1=new Ext.ux.data.PagingStore({proxyId:"Store1",autoLoad:true,reader:new Ext.data.ArrayReader({fields:[{name:"display"},{name:"value"}]}),directEventConfig:{},proxy:new Ext.data.PagingMemoryProxy({})}),submitValue:true,listeners:{select:{fn:selectHomePageValue}}},{id:"SelectBox2",xtype:"selectbox",fieldLabel:"<b>Calendar Week</b>",rawValue:"",allowBlank:false,emptyText:"Select a Week",displayField:"display",hiddenName:"SelectBox2_Value",maxHeight:170,triggerAction:"all",valueField:"value",store:this.WeekandPeriod=new Ext.ux.data.PagingStore({proxyId:"WeekandPeriod",autoLoad:true,reader:new Ext.data.ArrayReader({fields:[{name:"display"},{name:"value"}]}),directEventConfig:{},proxy:new Ext.data.PagingMemoryProxy({})}),submitValue:true,listeners:{select:{fn:selectHomePageValue}}},{id:"SelectBox3",xtype:"selectbox",fieldLabel:"<b>Bakery Location</b>",rawValue:"",allowBlank:false,emptyText:"Select a Bakery Location",displayField:"Name",hiddenName:"SelectBox3_Value",maxHeight:160,triggerAction:"all",valueField:"BakeryId",store:this.StoreLocation=new Ext.ux.data.PagingStore({proxyId:"StoreLocation",autoLoad:true,reader:new Ext.data.JsonReader({fields:[{name:"BakeryId",type:"string"},{name:"Name",type:"string"}]}),directEventConfig:{},proxy:new Ext.data.PagingMemoryProxy({})}),submitValue:true,listeners:{select:{fn:selectHomePageValue}}}],iconCls:"icon-timeadd",padding:5,title:"User Entry",tools:[{id:"excelicon",handler:exportToExcel,qtip:"Export data to Excel for selected values below"}],renderFormElement:false,url:"/Pages/Dashboard.aspx?_dc=1334169174059"}],bodyStyle:"background-color:F1F1F1;",title:"<i><h2>Weekly / Period Entry</h2></i>"});Ext.Msg.show({title:"Testing",buttons:Ext.Msg.OK,msg:"I'm here"});});
    	//]]>
    	</script>
    </head>
    <body>
        
        <form name="ctl02" method="post" action="Dashboard.aspx?_dc=1334169174059" id="ctl02">
    <div>
    <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
    <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
    <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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S2V5X18WRAUFY3RsMDEFCUV4Y2VsRGF0YQUJZHNwQmFrZXJ5BQdjaGtXZWVrBQtXaXphcmRQYW5lbAUKcG5sRGlzcGxheQUHZHNwWWVhcgUNZHNwUGVyaW9kV2VlawUQZHNwQmFrZXJ5RGlzcGxheQUGUGFuZWwxBQ5Ib21lJEZpZWxkU2V0MQUQSG9tZSRSYWRpb0dyb3VwMQULSG9tZSRyZFdlZWsFDUhvbWUkcmRQZXJpb2QFD0hvbWUkRm9ybVBhbmVsMQUPSG9tZSRTZWxlY3RCb3gxBQ9Ib21lJFNlbGVjdEJveDIFD0hvbWUkU2VsZWN0Qm94MwUGUGFuZWwyBRBQZXJpb2QkcG5sUGVyaW9kBRJQZXJpb2QkRmllbGRTZXRUb3AFFlBlcmlvZCRQZXJpb2REb3VnaFR5cGUFFFBlcmlvZCRQZXJpb2RGR0l0ZW1zBRJQZXJpb2QkUGVyaW9kTGluZXMFFlBlcmlvZCRQZXJpb2RQbGFuVHlwZXMFE1BlcmlvZCRQZXJpb2RSdW5IcnMFG1BlcmlvZCRQZXJpb2RUcmFuc3BvcnRUcmlwcwUgUGVyaW9kJFBlcmlvZFVuQWNjb3VudGVkUHJvZHVjdHMFFlBlcmlvZCRGaWVsZFNldE1pZGRsZTEFHlBlcmlvZCRQZXJpb2REaXJlY3RDWUhlYWRDb3VudAUeUGVyaW9kJFBlcmlvZERpcmVjdFBZSGVhZENvdW50BSBQZXJpb2QkUGVyaW9kSW5kaXJlY3RDWUhlYWRDb3VudAUgUGVyaW9kJFBlcmlvZEluZGlyZWN0UFlIZWFkQ291bnQFJVBlcmlvZCRQZXJpb2REaXN0cmlidXRpb25TYWxhcnlGcmluZ3MFFlBlcmlvZCRGaWVsZFNldE1pZGRsZTIFElBlcmlvZCRNaWRkbGUyUm93MQUgUGVyaW9kJFBlcmlvZENZQWNjQWRqRGlyZWN0TGFib3IFHVBlcmlvZCRQZXJpb2RDWUFjY0Fkak92ZXJIZWFkBSNQZXJpb2QkUGVyaW9kQ1lPdGhlckNvc3REaXJlY3RMYWJvcgUgUGVyaW9kJFBlcmlvZENZb3RoZXJDb3N0T3ZlckhlYWQFElBlcmlvZCRNaWRkbGUyUm93MgUrUGVyaW9kJFBlcmlvZFByb2R1Y3Rpdml0eVByb2plY3REaXJlY3RMYWJvcgUoUGVyaW9kJFBlcmlvZFByb2R1Y3Rpdml0eVByb2plY3RPdmVyaGVhZAUrUGVyaW9kJFBlcmlvZFByb2R1Y3Rpdml0eVByb2plY3RSYXdNZXRlcmlhbAUSUGVyaW9kJE1pZGRsZTJSb3czBSBQZXJpb2QkUGVyaW9kUFlBY2NBZGpEaXJlY3RMYWJvcgUdUGVyaW9kJFBlcmlvZFBZQWNjQWRqT3ZlckhlYWQFI1BlcmlvZCRQZXJpb2RQWU90aGVyQ29zdERpcmVjdExhYm9yBSBQZXJpb2QkUGVyaW9kUFlPdGhlckNvc3RPdmVySGVhZAUWUGVyaW9kJEZpZWxkU2V0TWlkZGxlMwUrUGVyaW9kJFBlcmlvZEluZmxhdGlvbk5lZ2F0aXZlUmVmb3JtdWxhdGlvbgUjUGVyaW9kJFBlcmlvZEluZmxhdGlvblJlZm9ybXVsYXRpb24FBlBhbmVsMwUWV2Vla2x5JFdlZWtseVBhbmVsTWFpbgUWV2Vla2x5JFdlZWtseUZvcm1QYW5lbAUVV2Vla2x5JFdlZWtseUZpZWxkU2V0BShXZWVrbHkkV2Vla2x5TnVtYmVyT2ZPU0hBUmVjb3JkYWJsZUNhc2VzBRxXZWVrbHkkV2Vla2x5TmV0VW5pdHNXcmFwcGVkBSlXZWVrbHkkV2Vla2x5VGhlb3JldGljYWxSdW5Ib3Vyc0F0V3JhcHBlcgUnV2Vla2x5JFdlZWtseVRvdGFsSW5ncmVkaWVudHNVc2VkV2VpZ2h0BStXZWVrbHkkV2Vla2x5QWN0dWFsQ2hhbmdlb3ZlckhvdXJzQXRXcmFwcGVyBR5XZWVrbHkkV2Vla2x5SW52ZW50b3J5VmFyaWFuY2UFH1dlZWtseSRXZWVrbHlQcm9kdWN0VW5hY2NvdW50ZWQFG1dlZWtseSRXZWVrbHlGb3JtUGFuZWxMaW5lcwUIYnRuQ2xlYXIFB2J0blNhdmUFB2J0blByZXYFB2J0bk5leHQ6qIWs+BU00C1jVyWooEKPP1MKLg==" />
    </div>
    
    <script type="text/javascript">
    //<![CDATA[
    var theForm = document.forms['ctl02'];
    if (!theForm) {
        theForm = document.ctl02;
    }
    function __doPostBack(eventTarget, eventArgument) {
        if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
            theForm.__EVENTTARGET.value = eventTarget;
            theForm.__EVENTARGUMENT.value = eventArgument;
            theForm.submit();
        }
    }
    //]]>
    </script>
    
    
    <div>
    
    	<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEWAgK089PGDQKiwImNC9PQ0sPlWeqxvxuGcy5F7+sWNbCc" />
    </div>
        <div id="ExcelData_Container" style="display:inline;">
    
    </div>
        <div id="dspBakery_Container" style="display:inline;">
    
    </div>
        
    
    
        <div id="chkWeek_Container" style="display:inline;">
    
    </div>
        <div id="WizardPanel_Container">
    	
    	
    	
    	
    	
    	
    
    
    
    	
    
    
    
    	
    
    
    
    
    
    
    
    
    
    	<div id="Panel1_Content" class="x-hidden">
                        
    <style type="text/css">
        .x-tool-excelicon
        {
            background-image: url(../Resources/images/Excel.PNG);
        }
        .x-tool-excelicon-over
        {
            background-image: url(../Resources/images/Excel.PNG);
        }
    </style>
    <center>
        <div id="FieldSet1_Container">
    	
    	
    	
    
    
    
    
    
    
    	
    	
    
    
    
    	
    
    
    
    	
    
    
    
    
    </div>
    </center>
    
                    </div>
    
    	
                        
    <style type="text/css">
        .numberTop
        {
            text-align: center;
            font-weight: bold;
            width: 95px;
            margin-left: 10px !important;
            margin-right: 10px !important;
            margin-top: 0px !important;
            vertical-align: middle;
        }
        .numberMiddle1
        {
            text-align: center;
            font-weight: bold;
            width: 60px;
            margin-left: 0px !important;
            margin-right: 0px !important;
            margin-top: 15px !important;
            vertical-align: middle;
        }
        .numberMiddle2
        {
            text-align: center;
            font-weight: bold;
            width: 60px;
            margin-left: 0px !important;
            margin-right: 0px !important;
            margin-top: 5px !important;
            vertical-align: middle;
        }
        .numberMiddle3
        {
            text-align: center;
            font-weight: bold;
            width: 60px;
            margin-left: 0px !important;
            margin-right: 0px !important;
            margin-top: 0px !important;
            vertical-align: middle;
        }
        h3
        {
            font-family: Georgia, "Times New Roman" , Times, serif;
            font-size: 11px;
            font-weight: bold;
            color: #000000;
            margin-top: 0px !important;
            margin-bottom: 0px !important;
            text-align: center;
        }
        h3.right
        {
            font-family: Georgia, "Times New Roman" , Times, serif;
            font-size: 11px;
            font-weight: bold;
            color: #000000;
            margin-top: 0px !important;
            margin-bottom: 0px !important;
            text-align: right;
        }
        h3.display
        {
            font-family: Georgia, "Times New Roman" , Times, serif;
            font-size: 12px;
            font-weight: bold;
            color: #000000;
            margin-top: 0px !important;
            margin-bottom: 0px !important;
            text-align: right;
        }
    </style>
    
    
    	
    	
    	
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    
    	
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    
    	
    	
    
    
    	
    
    
    
    	
    
    
    
    
    
    	
    
    
    
    	
    
    
    
    
    	
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    
    	
    
    
    	
    
    
    
    	
    
    
    
    
    
    	
    
    
    
    	
    
    
    
    
    
    	
    	
    
    
    
    	
    
    
    
    
    
    
    
                    
    
    	
                        
    <style type="text/css">
        .numberTop1
        {
            text-align: center;
            font-weight: bold;
            width: 98px;
            margin-left: 10px !important;
            margin-right: 10px !important;
            vertical-align: middle;
        }
        .number
        {
            text-align: center;
            width: 30px;
            margin-left: 10px !important;
            margin-right: 10px !important;
            vertical-align: middle;
        }
        h2
        {
            font-family: Georgia, "Times New Roman" , Times, serif;
            font-size: 9px;
            font-weight: bold;
            color: #000000;
            margin-top: 0px !important;
            margin-bottom: 0px !important;
            text-align: center;
        }
        h4
        {
            font-family: Georgia, "Times New Roman" , Times, serif;
            font-size: 10px;
            font-weight: bold;
            color: #000000;
            margin-top: 0px !important;
            text-align: center;
        }
    </style>
    
    	
    	
    	
    	
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    	
    
    
    
    
    
    
    
    
    
    
                    
    
    
    
    
    
    
    
    
    
    </div>
        </form>
    </body>
    </html>


    Quote Originally Posted by geoffrey.mcgill View Post
    We really wish you could create a full (but VERY simplified) sample demonstrating all the parts of this problem (.aspx and .cs).

    What happens if you comment out both lines within the LoadPeriodStore DirectMethod?



    I'm not sure what this means?



    I'm not really sure this is the problem, but it would be best to ask your IT guys. This is outside the scope of Ext.NET support.
Page 3 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. [CLOSED] error accessing Model object from a modal window
    By RCM in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Jul 20, 2012, 10:01 PM
  2. Replies: 6
    Last Post: Apr 09, 2012, 11:33 PM
  3. Build new MVC 3 website
    By nilibek in forum 1.x Help
    Replies: 0
    Last Post: Feb 09, 2012, 2:50 PM
  4. Error when accessing from IE
    By omeszar in forum 1.x Help
    Replies: 2
    Last Post: Jul 27, 2011, 6:59 PM
  5. I want to Use Ext in my website
    By chakravarthios in forum Licensing
    Replies: 10
    Last Post: Nov 10, 2010, 7:59 AM

Tags for this Thread

Posting Permissions