[CLOSED] Script Error with Calendar "types[config.xtype || defaultType] is not a constructor"

Page 1 of 2 12 LastLast
  1. #1

    [CLOSED] Script Error with Calendar "types[config.xtype || defaultType] is not a constructor"

    Error: types[config.xtype || defaultType] is not a constructor
    Source File: http://localhost/Aksia.Intranet.2010...t-all-debug.js
    
    
    Line in ext-all-debug.js:
            create : function(config, defaultType){
                return config.render ? config : new types[config.xtype || defaultType](config);
            },
    Getting this from error console using FireFox 3.6.

    Page code:

    <%@ Page Title="" Language="C#" AutoEventWireup="true" CodeBehind="Calendar.aspx.cs"
        Inherits="Aksia.Intranet.Calendar" %>
    
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head1" runat="server">
        <title>Ext.NET Calendar</title>
        <ext:ResourcePlaceHolder ID="ResourcePlaceHolder1" runat="server" Mode="Style" />
        <link href="App_Themes/AksiaOriginal/calendar.css" rel="stylesheet" type="text/css" />
        <ext:ResourcePlaceHolder ID="ResourcePlaceHolder2" runat="server" Mode="Script" />
        <script src="Scripts/Calendar.js" type="text/javascript"></script>
    </head>
    <body>
        <form id="Form1" runat="server">
        <ext:ResourceManager ID="ResourceManager1" runat="server" ScriptMode="Debug" IDMode="Explicit"
            InitScriptMode="Linked" RemoveViewState="true" Namespace="AksiaCalendar" />
        <ext:Viewport ID="Viewport1" runat="server" Layout="Border">
            <Items>
                <ext:Panel ID="Panel1" runat="server" Height="35" Border="false" Region="North" Cls="app-header"
                    BodyCssClass="app-header-content">
                    <Content>
                        <div id="app-logo">
                            <div class="logo-top">
                                &nbsp;</div>
                            <div id="logo-body">
                                &nbsp;</div>
                            <div class="logo-bottom">
                                &nbsp;</div>
                        </div>
                        <h1>
                            Aksia Calendar</h1>
                        <span id="app-msg" class="x-hidden"></span>
                    </Content>
                </ext:Panel>
                <ext:Panel ID="Panel2" runat="server" Title="..." Layout="Border" Region="Center"
                    Cls="app-center">
                    <Items>
                        <ext:Panel ID="Panel3" runat="server" Width="176" Region="West" Border="false" Cls="app-west">
                            <Items>
                                <ext:DatePicker ID="DatePicker1" runat="server" Cls="ext-cal-nav-picker">
                                    <Listeners>
                                        <Select Fn="AksiaCalendar.setStartDate" Scope="AksiaCalendar" />
                                    </Listeners>
                                </ext:DatePicker>
                            </Items>
                            <TopBar>
                                <ext:Toolbar ID="Toolbar1" runat="server">
                                    <Items>
                                        <ext:Button ID="Button1" runat="server" Text="Save All Events" Icon="Disk" OnClientClick="AksiaCalendar.record.saveAll();" />
                                    </Items>
                                </ext:Toolbar>
                            </TopBar>
                        </ext:Panel>
                        <ext:CalendarPanel ID="CalendarPanel1" runat="server" Region="Center" ActiveIndex="2"
                            Border="false">
                            <GroupStore ID="GroupStore1" runat="server">
                                <Groups>
                                    <ext:Group CalendarId="1" Title="Client Meetings" />
                                    <ext:Group CalendarId="2" Title="Leave Tracker" />
                                    <ext:Group CalendarId="3" Title="Manager Meetings" />
                                </Groups>
                            </GroupStore>
                            <EventStore ID="EventStore1" runat="server" DateFormat="M$">
                                <Proxy>
                                    <ext:HttpProxy Url="Services/CalendarService.asmx/GetEvents" Json="true" />
                                </Proxy>
                                <Reader>
                                    <ext:JsonReader Root="d" />
                                </Reader>
                                <BaseParams>
                                    <ext:Parameter Name="start" Value="" Mode="Value" />
                                    <ext:Parameter Name="end" Value="" Mode="Value" />
                                </BaseParams>
                            </EventStore>
                            <MonthView ID="MonthView1" runat="server" ShowHeader="true" ShowWeekLinks="true"
                                ShowWeekNumbers="true" />
                            <Listeners>
                                <ViewChange Fn="AksiaCalendar.viewChange" Scope="AksiaCalendar" />
                                <EventClick Fn="AksiaCalendar.record.show" Scope="AksiaCalendar" />
                                <DayClick Fn="AksiaCalendar.dayClick" Scope="AksiaCalendar" />
                                <RangeSelect Fn="AksiaCalendar.rangeSelect" Scope="AksiaCalendar" />
                                <EventMove Fn="AksiaCalendar.record.move" Scope="AksiaCalendar" />
                                <EventResize Fn="AksiaCalendar.record.resize" Scope="AksiaCalendar" />
                                <EventDelete Fn="AksiaCalendar.record.remove" /> 
                            </Listeners>
                        </ext:CalendarPanel>
                    </Items>
                </ext:Panel>
            </Items>
        </ext:Viewport>
        <ext:EventEditWindow ID="EventEditWindow1" runat="server" Hidden="true" GroupStoreID="GroupStore1">
            <Listeners>
                <EventAdd Fn="AksiaCalendar.record.add" Scope="AksiaCalendar" />
                <EventUpdate Fn="AksiaCalendar.record.update" Scope="AksiaCalendar" />
                <EditDetails Fn="AksiaCalendar.record.edit" Scope="AksiaCalendar" />
                <EventDelete Fn="AksiaCalendar.record.remove" Scope="AksiaCalendar" />
            </Listeners>
        </ext:EventEditWindow>
        </form>
    </body>
    </html>
    Calendar.js

    var AksiaCalendar = {
        getCalendar: function () {
            return AksiaCalendar.CalendarPanel1;
        },
    
        getStore: function () {
            return AksiaCalendar.EventStore1;
        },
    
        getWindow: function () {
            return AksiaCalendar.EventEditWindow1;
        },
    
        viewChange: function (p, vw, dateInfo) {
            var win = this.getWindow();
    
            if (win) {
                win.hide();
            }
    
            if (dateInfo !== null) {
                // will be null when switching to the event edit form, so ignore
                this.DatePicker1.setValue(dateInfo.activeDate);
                this.updateTitle(dateInfo.viewStart, dateInfo.viewEnd);
            }
        },
    
        updateTitle: function (startDt, endDt) {
            var msg = '';
    
            if (startDt.clearTime().getTime() == endDt.clearTime().getTime()) {
                msg = startDt.format('F j, Y');
            } else if (startDt.getFullYear() == endDt.getFullYear()) {
                if (startDt.getMonth() == endDt.getMonth()) {
                    msg = startDt.format('F j') + ' - ' + endDt.format('j, Y');
                } else {
                    msg = startDt.format('F j') + ' - ' + endDt.format('F j, Y');
                }
            } else {
                msg = startDt.format('F j, Y') + ' - ' + endDt.format('F j, Y');
            }
    
            this.Panel1.setTitle(msg);
        },
    
        setStartDate: function (picker, date) {
            this.getCalendar().setStartDate(date);
        },
    
        rangeSelect: function (cal, dates, callback) {
            this.record.show(cal, dates);
            this.getWindow().on('hide', callback, cal, { single: true });
        },
    
        dayClick: function (cal, dt, allDay, el) {
            this.record.show.call(this, cal, {
                StartDate: dt,
                IsAllDay: allDay
            }, el);
        },
    
        record: {
            add: function (win, rec) {
                win.hide();
                rec.data.IsNew = false;
                this.getStore().add(rec);
                this.ShowMsg('Event ' + rec.data.Title + ' was added');
            },
    
            update: function (win, rec) {
                win.hide();
                rec.commit();
                this.ShowMsg('Event ' + rec.data.Title + ' was updated');
            },
    
            remove: function (win, rec) {
                this.getStore().remove(rec);
                win.hide();
                this.ShowMsg('Event ' + rec.data.Title + ' was deleted');
            },
    
            edit: function (win, rec) {
                win.hide();
                this.getCalendar().showEditForm(rec);
            },
    
            resize: function (cal, rec) {
                rec.commit();
                this.ShowMsg('Event ' + rec.data.Title + ' was updated');
            },
    
            move: function (cal, rec) {
                rec.commit();
                this.ShowMsg('Event ' + rec.data.Title + ' was moved to ' + rec.data.StartDate.format('F jS' + (rec.data.IsAllDay ? '' : ' \\a\\t g:i a')));
            },
    
            show: function (cal, rec, el) {
                this.getWindow().show(rec, el);
            },
    
    //        saveAll: function () {
    //            CompanyX.getStore().submitData();
    //        }
            saveAll: function () {
                Ext.net.DirectEvent.request({
                    url: "../Services/CalendarService.asmx/SaveAll",
                    json: true,
                    cleanRequest: true,
                    extraParams: {
                        events: AksiaCalendar.getStore().getRecordsValues()
                    }
                });
            }
    
        }
    };
    Last edited by Daniil; Oct 18, 2010 at 6:47 PM. Reason: Please use [CODE] tags for any code, [CLOSED]
  2. #2
    Hi,

    Unfortunatelly, I cannot reproduce that error. Try to update from SVN
  3. #3
    I updated and still getting same.
    I tried to change from Debug to Release mode in the resource manger and I'm getting a similiar, but slightly different error:

    Error: b[d.xtype || e] is not a constructor
    Source File: http://localhost/Aksia.Intranet.2010...tjs/ext-all.js
    Line: 7

    My Ext.NET 1.0 version is:
    1.0.3938.16138
  4. #4
    Could this have something to do with the config file not being there? I noticed in the Examples Calendar/Remote_Data that there is a config file. I didn't use this...
  5. #5
    Hi,

    No, it cannot be the issue. Can you post generated html (in the browser click on View source)?
  6. #6
    Hi Vlad,
    Worth noting, the line:
    <script type="text/javascript" src="/Aksia.Intranet.2010/extnet/ux/calendar/calendar-all.js"></script>

    I map the VD "extnet" to the "Ext.Net/Build/Ext.Net" folder.

    These scripts are located in "extnet/ux/extensions/calendar/calendar-all.js" on my machine, not the URL above...

    Could that be the problem?

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head1"><title>
    	Ext.NET Calendar
    </title>
    	<link rel="stylesheet" type="text/css" href="/Aksia.Intranet.2010/extnet/extjs/resources/css/ext-all.css" />
    
    	<link rel="stylesheet" type="text/css" href="/Aksia.Intranet.2010/extnet/ux/calendar/resources/css/calendar.css" />
    <link href="App_Themes/AksiaOriginal/calendar.css" rel="stylesheet" type="text/css" />
    	<script type="text/javascript" src="/Aksia.Intranet.2010/extnet/extjs/adapter/ext/ext-base.js"></script>
    	<script type="text/javascript" src="/Aksia.Intranet.2010/extnet/extjs/ext-all.js"></script>
    	<script type="text/javascript" src="/Aksia.Intranet.2010/extnet/extnet/extnet-core.js"></script>
    
    	<script type="text/javascript" src="/Aksia.Intranet.2010/extnet/ux/calendar/calendar-all.js"></script>
    	<script type="text/javascript" src="/Aksia.Intranet.2010/extnet/extnet/extnet-data.js"></script>
    	<script type="text/javascript">
    	//<![CDATA[
    		Ext.net.ResourceMgr.init({id:"ResourceManager1",BLANK_IMAGE_URL:"/Aksia.Intranet.2010/extnet/extjs/resources/images/default/s.gif",aspForm:"Form1",theme:"blue",ns:"AksiaCalendar",appName:"Aksia.Intranet.2010",icons:["Disk"]});Ext.onReady(function(){Ext.QuickTips.init();Ext.ns("AksiaCalendar");Ext.apply(AksiaCalendar, { ShowMsg:function(msg,config){Ext.net.DirectMethod.request("ShowMsg",Ext.applyIf(config || {}, {params:{msg:msg}}));} });new Ext.net.Viewport({id:"Viewport1",renderTo:"Form1",items:[{id:"Panel1",contentEl:"Panel1_Content",cls:"app-header",height:35,region:"north",bodyCssClass:"app-header-content",border:false},{id:"Panel2",cls:"app-center",region:"center",items:[{id:"Panel3",cls:"app-west",region:"west",width:176,items:{id:"DatePicker1",xtype:"datepicker",cls:"ext-cal-nav-picker",format:"n/j/Y",listeners:{select:{scope:AksiaCalendar,fn:AksiaCalendar.setStartDate}}},layout:"auto",tbar:{id:"Toolbar1",xtype:"toolbar",items:[{id:"Button1",handler:function(el,e){AksiaCalendar.record.saveAll();},iconCls:"icon-disk",text:"Save All Events"},{xtype:"nettbspacer"}]},border:false},{id:"CalendarPanel1",xtype:"calendarpanel",region:"center",activeItem:2,border:false,calendarStore:this.AksiaCalendar.GroupStore1=new Ext.ux.data.PagingStore({proxyId:"GroupStore1",autoLoad:true,reader:new Ext.data.JsonReader({fields:[{name:"CalendarId",type:"int"},{name:"Title",type:"string"}],idProperty:"CalendarId"}),directEventConfig:{},proxy:new Ext.data.PagingMemoryProxy([{"CalendarId":1,"Title":"Client Meetings"},{"CalendarId":2,"Title":"Leave Tracker"},{"CalendarId":3,"Title":"Manager Meetings"}], false)}),eventStore:this.AksiaCalendar.EventStore1=new Ext.net.Store({proxyId:"EventStore1",autoLoad:true,proxy:new Ext.data.HttpProxy({url:"/Aksia.Intranet.2010/Services/CalendarService.asmx/GetEvents",json:true}),reader:new Ext.data.JsonReader({fields:[{name:"EventId",type:"int"},{name:"CalendarId",type:"int"},{name:"Title",type:"string"},{name:"StartDate",type:"date",dateFormat:"M$"},{name:"EndDate",type:"date",dateFormat:"M$"},{name:"Location",type:"string"},{name:"Notes",type:"string"},{name:"Url",type:"string"},{name:"IsAllDay",type:"boolean"},{name:"Reminder",type:"string"},{name:"IsNew",type:"boolean"}],root:"d"}),directEventConfig:{},beforeLoadParams:function(store,options){if (!options.params){options.params = {};};Ext.apply(options.params,{"end":""});Ext.applyIf(options.params,{"start":""});}}),monthViewCfg:{id:"MonthView1",xtype:"monthview",showHeader:true,showWeekLinks:true,showWeekNumbers:true},editViewCfg:{renderFormElement : false},listeners:{dayclick:{scope:AksiaCalendar,fn:AksiaCalendar.dayClick},eventclick:{scope:AksiaCalendar,fn:AksiaCalendar.record.show},eventdelete:{fn:AksiaCalendar.record.remove},eventmove:{scope:AksiaCalendar,fn:AksiaCalendar.record.move},eventresize:{scope:AksiaCalendar,fn:AksiaCalendar.record.resize},rangeselect:{scope:AksiaCalendar,fn:AksiaCalendar.rangeSelect},viewchange:{scope:AksiaCalendar,fn:AksiaCalendar.viewChange}}}],layout:"border",title:"..."}],layout:"border"});new Ext.calendar.EventEditWindow({id:"EventEditWindow1",hidden:true,calendarStore:AksiaCalendar.GroupStore1,listeners:{eventadd:{scope:AksiaCalendar,fn:AksiaCalendar.record.add},eventdelete:{scope:AksiaCalendar,fn:AksiaCalendar.record.remove},eventupdate:{scope:AksiaCalendar,fn:AksiaCalendar.record.update},editdetails:{scope:AksiaCalendar,fn:AksiaCalendar.record.edit}}});});
    	//]]>
    	</script>
    
        <script src="Scripts/Calendar.js" type="text/javascript"></script>
    <link href="App_Themes/AksiaOriginal/alerts.css" type="text/css" rel="stylesheet" /><link href="App_Themes/AksiaOriginal/calendar.css" type="text/css" rel="stylesheet" /><link href="App_Themes/AksiaOriginal/dynamicForms.css" type="text/css" rel="stylesheet" /><link href="App_Themes/AksiaOriginal/feedviewer.css" type="text/css" rel="stylesheet" /><link href="App_Themes/AksiaOriginal/portoflio.css" type="text/css" rel="stylesheet" /><link href="App_Themes/AksiaOriginal/StyleSheet.css" type="text/css" rel="stylesheet" /></head>
    <body>
        <form name="Form1" method="post" action="Calendar.aspx" id="Form1">
    
    <div>
    <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
    <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
    
    </div>
    
    <script type="text/javascript">
    //<![CDATA[
    var theForm = document.forms['Form1'];
    if (!theForm) {
        theForm = document.Form1;
    }
    function __doPostBack(eventTarget, eventArgument) {
        if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
            theForm.__EVENTTARGET.value = eventTarget;
            theForm.__EVENTARGUMENT.value = eventArgument;
            theForm.submit();
        }
    }
    //]]>
    </script>
    
    
        
        
    	
    	<div id="Panel1_Content" class="x-hidden">
                        <div id="app-logo">
                            <div class="logo-top">
                                &nbsp;</div>
    
                            <div id="logo-body">
                                &nbsp;</div>
                            <div class="logo-bottom">
                                &nbsp;</div>
                        </div>
                        <h1>Aksia Calendar</h1>
                        <span id="app-msg" class="x-hidden"></span>
                    </div>
    
    	
    	
    
    
    	
    
    
    
    
    
    
    	
    
    
    
    
    
    
    
    
    
        
    
    
        </form>
    </body>
    </html>
  7. #7
    Hi,

    Do you use RenderScripts="File" in the ResourceManager? Because I see direct links (without using http handler)
    I fixed path for such mode. Please update from SVN
  8. #8
    Hi Vlad,
    I did a get latest from SVN...
    Now, my FeedViewer is throwing an error that "el is not defined"

    Generated Source
    
    
    
    <!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">
    
    <!-- 
    
    Author: Raphael Thiney
    
    Date: 8/1/2009
    
    //-->
    
    <head id="ctl00_Head1"> 
    	<link rel="stylesheet" type="text/css" href="/Aksia.Intranet.2010/extnet/extjs/resources/css/ext-all.css" /> 
    	<link rel="stylesheet" type="text/css" href="/Aksia.Intranet.2010/extnet/extjs/resources/css/xtheme-slate.css" id="ext-theme" /> 
    <link rel="SHORTCUT ICON" href="favicon.ico" /><title>
    
    
    
    </title>
    
    	<style type="text/css">
    
    		.headerLeft
    
    		{
    
    			text-align: left;
    
    			width: 80%;
    
    		}
    
    		.headerRight
    
    		{
    
    			text-align: right;
    
    			width: 20%;
    
    		}
    
    		.headerSpacerExpanded
    
    		{
    
    			display: block;
    
    			width: 5px;
    
    			height: 1px;
    
    		}
    
    		.headerSpacerCollapsed
    
    		{
    
    			display: block;
    
    			width: 5px;
    
    			height: 1px;
    
    		}
    
    		.topMenu
    
    		{
    
    			font-size: 20pt;
    
    			color: Red;
    
    		}
    
    	</style>
    
    	<style type="text/css">
    
    		p
    
    		{
    
    			width: 450px;
    
    		}
    
    		.ext-ie .x-form-text
    
    		{
    
    			position: static !important;
    
    		}
    
    		.blockLightGreen
    
    		{
    
    			display: inherit;
    
    			background-color: #aeffae;
    
    			width: 100%;
    
    			height: 100%;
    
    		}
    
    		
    
    		.blockLightBlue
    
    		{
    
    			display: inline;
    
    			background-color: #ccdbe6;
    
    			width: 7px;
    
    			height: 20px;
    
    		}
    
    		
    
    		.search-item
    
    		{
    
    			font: normal 14px Calibri,Tahoma;
    
    			padding: 1px 0px 1px 0px;
    
    			border: 1px solid #fff;
    
    			border-bottom: 1px solid #eeeeee;
    
    			white-space: normal;
    
    			color: #555;
    
    			width: 500px;
    
    		}
    
    	</style>
    
    	  <script type="text/javascript">
    
    		function GoThere(v) {
    
    			window.location.href = v.value;
    
    		};
    
    	
    
    
    
    		var siteRoot = "../";
    
    		function SetCollapse() {
    
    			document.getElementById('ctl00_lblSpacer').className = "headerSpacerCollapsed";
    
    		};
    
    		function SetExpanded() {
    
    			document.getElementById('ctl00_lblSpacer').className = "headerSpacerExpanded";
    
    		};
    
    
    
    		function NavigateTo(url) {
    
    			window.location.href = url;
    
    		};
    
    	</script>
    
    <link href="App_Themes/AksiaOriginal/alerts.css" type="text/css" rel="stylesheet" /><link href="App_Themes/AksiaOriginal/calendar.css" type="text/css" rel="stylesheet" /><link href="App_Themes/AksiaOriginal/dynamicForms.css" type="text/css" rel="stylesheet" /><link href="App_Themes/AksiaOriginal/feedviewer.css" type="text/css" rel="stylesheet" /><link href="App_Themes/AksiaOriginal/portoflio.css" type="text/css" rel="stylesheet" /><link href="App_Themes/AksiaOriginal/StyleSheet.css" type="text/css" rel="stylesheet" /> 
    	<script type="text/javascript" src="/Aksia.Intranet.2010/extnet/extjs/adapter/ext/ext-base.js"></script> 
    	<script type="text/javascript" src="/Aksia.Intranet.2010/extnet/extjs/ext-all.js"></script> 
    	<script type="text/javascript" src="/Aksia.Intranet.2010/extnet/extnet/extnet-core.js"></script> 
    	<script type="text/javascript" src="/Aksia.Intranet.2010/extnet/extnet/extnet-data.js"></script> 
    	<script type="text/javascript" src="/Aksia.Intranet.2010/extnet/ux/plugins/tabclosemenu/tabclosemenu.js"></script> 
    	<script type="text/javascript"> 
    	//<![CDATA[
    		Ext.net.ResourceMgr.init({id:"ctl00$ScriptManager1",BLANK_IMAGE_URL:"/Aksia.Intranet.2010/extnet/extjs/resources/images/slate/s.gif",aspForm:"aspnetForm",theme:"slate",appName:"Aksia.Intranet.2010",icons:["Erase","User","BuildingLink","ChartCurve","Key","Bug","GroupKey","LayoutContent","ChartOrganisation","ArrowSwitchBluegreen","PagePortraitShot","Cog","CogEdit","CogStop","CogError","BugMagnify","BugAdd","Theme","CogStart","Wrench","Bricks","DatabaseLightning","ChartPie","Newspaper","RssGo","GroupGear","Wand","Report","PageExcel","ApplicationViewColumns","ReportGo","Money","Share","Page","Telephone","Group","Note","Magnifier","ArrowJoin","BookTabs","BookRed","PageCopy","ApplicationGet","Email","PageWhiteWord","ChartBar","PageWhiteStack","MagnifierZoomIn","Building","FeedAdd","FeedDelete","FeedGo","TableRefresh","UserAlert"]});Ext.onReady(function(){Ext.QuickTips.init();Ext.apply(Ext.net.DirectMethods, { FeedTree:{AddFeed:function(url,text,inactive,preventAnimation,config){Ext.net.DirectMethod.request("AddFeed",Ext.applyIf(config || {}, {params:{url:url,text:text,inactive:inactive,preventAnimation:preventAnimation},control:"ctl00_ContentPlaceHolder1_ctlFeedTree"}));}},MainPanel:{MovePreview:function(place,config){Ext.net.DirectMethod.request("MovePreview",Ext.applyIf(config || {}, {params:{place:place},control:"ctl00_ContentPlaceHolder1_MainTabs"}));},OpenTab:function(id,title,link,config){Ext.net.DirectMethod.request("OpenTab",Ext.applyIf(config || {}, {params:{id:id,title:title,link:link},control:"ctl00_ContentPlaceHolder1_MainTabs"}));},CheckRelevant:function(link,config){Ext.net.DirectMethod.request("CheckRelevant",Ext.applyIf(config || {}, {params:{link:link},control:"ctl00_ContentPlaceHolder1_MainTabs"}));}} });new Ext.form.Hidden({id:"ctl00_HiddenField1",renderTo:"ctl00_HiddenField1_Container",value:"0,1,3,4,5,6,8"});this.ctl00_Store1=new Ext.net.Store({proxyId:"ctl00_Store1",proxy:new Ext.data.HttpProxy({method:"POST",url:"/Aksia.Intranet.2010/Handlers/Search.ashx"}),reader:new Ext.data.JsonReader({fields:[{name:"Name"},{name:"Url"},{name:"Id"},{name:"Image"},{name:"Color"}],root:"result",totalProperty:"totalCount"}),directEventConfig:{},beforeLoadParams:function(store,options){if (!options.params){options.params = {};};Ext.apply(options.params,{"SearchType":ctl00_HiddenField1.getValue()});Ext.applyIf(options.params,{});}});this.ctl00_ContentPlaceHolder1_TopicStore=new Ext.net.Store({proxyId:"ctl00_ContentPlaceHolder1_TopicStore",proxy:new Ext.data.HttpProxy({url:"/Aksia.Intranet.2010/Handlers/FeedProxy.ashx"}),reader:new Ext.data.XmlReader({fields:[{name:"id"},{name:"title"},{name:"author"},{name:"pubDate",type:"date",dateFormat:"D, d M Y H:i:s O"},{name:"link"},{name:"description"},{name:"category"},{name:"content"}],record:"item"}),sortInfo:{field:"pubDate",direction:"desc"},directEventConfig:{},listeners:{beforeload:{scope:FeedViewer.MainPanel,fn:FeedViewer.MainPanel.clear},load:{scope:FeedViewer.MainPanel,fn:FeedViewer.MainPanel.onStoreLoad}}});new Ext.net.Viewport({id:"ctl00_ViewPort1",renderTo:"aspnetForm",hideBorders:true,monitorResize:true,items:[{id:"ctl00_WestPanel",xtype:"panel",contentEl:"ctl00_WestPanel_Content",region:"west",cmargins:"1 1 1 1",collapsible:true,margins:"1 1 1 1",collapsibleSplitTip:"Click here to expand/collapse this panel. The site wil remember your preference!",split:true,splitTip:"Click here to expand/collapse this panel. The site wil remember your preference!",ctCls:"west-panel",width:147,tbar:{id:"ctl00_Toolbar1",xtype:"toolbar",items:[{id:"ctl00_Button5",iconCls:"icon-erase",directEvents:{click:{fn:function(item,e){var params=arguments;Ext.net.DirectEvent.confirmRequest({userSuccess:function(response,result,el,type,action,extraParams,o){Ext.Msg.alert('Success','You have cleared your Recent Entities');},control:this});},delay:20}}},{id:"ctl00_ctl144",xtype:"nettbspacer"}]},collapsed:true,header:false,listeners:{beforecollapse:{fn:SetCollapse},beforeexpand:{fn:SetExpanded}},directEvents:{beforecollapse:{fn:function(item,animate){var params=arguments;Ext.net.DirectEvent.confirmRequest({control:this,action:'BeforeCollapse'});},delay:20},beforeexpand:{fn:function(item,animate){var params=arguments;Ext.net.DirectEvent.confirmRequest({control:this,action:'BeforeExpand'});},delay:20}}},{id:"ctl00_ToolbarTopMenu",xtype:"toolbar",region:"north",cmargins:"1 1 1 1",collapseMode:"mini",margins:"1 1 1 1",collapsibleSplitTip:"Click here to expand/collapse this panel. The site wil remember your preference!",height:27,items:[{id:"ctl00_toolbarHome12",xtype:"netimagebutton",width:25,listeners:{click:{fn:function(item,e){NavigateTo('Default.aspx');}}},imageUrl:"/Aksia.Intranet.2010/images/aksiaIcon.gif"},{id:"ctl00_Button3",menu:{id:"ctl00_Menu8",xtype:"menu",items:[{id:"ctl00_tooladrAll",iconCls:"icon-key",text:"Administration",menu:{id:"ctl00_tbA",xtype:"menu",items:[{id:"ctl00_toolbarBugsl",iconCls:"icon-bug",text:"Bugs",listeners:{click:{fn:function(item,e){NavigateTo('Adminpage.aspx?tab=9');}}}},{id:"ctl00_toolbarRolessl",iconCls:"icon-groupkey",text:"Roles",listeners:{click:{fn:function(item,e){NavigateTo('Adminpage.aspx?tab=10');}}}},{id:"ctl00_toolbarRlayolessl",iconCls:"icon-layoutcontent",text:"Layout",listeners:{click:{fn:function(item,e){NavigateTo('Adminpage.aspx?tab=8');}}}},{id:"ctl00_toolbarRRelassl",iconCls:"icon-chartorganisation",text:"Relationships",menu:{id:"ctl00_tbreswwwwwR",xtype:"menu",items:[{id:"ctl00_tolipfund",iconCls:"icon-arrowswitchbluegreen",text:"IP-->Funds",listeners:{click:{fn:function(item,e){NavigateTo('Adminpage.aspx?tab=8');}}}},{id:"ctl00_toolbarmcipl",iconCls:"icon-arrowswitchbluegreen",text:"MC-->IP",listeners:{click:{fn:function(item,e){NavigateTo('Adminpage.aspx?tab=7');}}}},{id:"ctl00_tollorph",iconCls:"icon-pageportraitshot",text:"Orphaned Funds",listeners:{click:{fn:function(item,e){NavigateTo('Adminpage.aspx?tab=5');}}}}],shadow:"drop"}},{id:"ctl00_toolbarRRelssassl",iconCls:"icon-cog",text:"BPM",menu:{id:"ctl00_Menu10",xtype:"menu",items:[{id:"ctl00_MenuItem2",iconCls:"icon-cogedit",text:"BPM",listeners:{click:{fn:function(item,e){NavigateTo('Adminpage.aspx?tab=3');}}}},{id:"ctl00_MenuItem24",iconCls:"icon-cogstop",text:"Client/Workflow Editor",listeners:{click:{fn:function(item,e){NavigateTo('Adminpage.aspx?tab=2');}}}},{id:"ctl00_MenuItem25",iconCls:"icon-cogerror",text:"SoeId Editor",listeners:{click:{fn:function(item,e){NavigateTo('Adminpage.aspx?tab=1');}}}}],shadow:"drop"}}],shadow:"drop"}},{id:"ctl00_toolbarCOntact",iconCls:"icon-bugmagnify",text:"Contact I.T.",menu:{id:"ctl00_tbContact",xtype:"menu",items:[{id:"ctl00_toolbarmybuig",iconCls:"icon-bug",text:"My Bugs",listeners:{click:{fn:function(item,e){NavigateTo('Bugs.aspx?id=0');}}}},{id:"ctl00_toolbarCObugt",iconCls:"icon-bugadd",text:"Report Bugs",listeners:{click:{fn:function(item,e){NavigateTo('Bugs.aspx?id=1');}}}}]}},{id:"ctl00_CycleButton1",iconCls:"icon-theme",text:"Themes",menu:{id:"ctl00_Menu9",xtype:"menu",items:[{id:"ctl00_MenuTextItem1",xtype:"menutextitem",text:"<b class='menu-title'>Choose a Theme</b>"},{id:"ctl00_ThemeBlue",xtype:"menucheckitem",text:"BLUE",group:"theme",directEvents:{click:{fn:function(item,e){var params=arguments;Ext.net.DirectEvent.confirmRequest({extraParams:{"selectedIndex":"0"},eventMask:{showMask:true,msg:"Changing Theme to Blue...."},control:this});},delay:20}}},{id:"ctl00_ThemeGray",xtype:"menucheckitem",text:"GRAY",group:"theme",directEvents:{click:{fn:function(item,e){var params=arguments;Ext.net.DirectEvent.confirmRequest({extraParams:{"selectedIndex":"1"},eventMask:{showMask:true,msg:"Changing Theme to Gray...."},control:this});},delay:20}}},{id:"ctl00_ThemeSlate",xtype:"menucheckitem",text:"SLATE",checked:true,group:"theme",directEvents:{click:{fn:function(item,e){var params=arguments;Ext.net.DirectEvent.confirmRequest({extraParams:{"selectedIndex":"2"},eventMask:{showMask:true,msg:"Changing Theme to Slate...."},control:this});},delay:20}}},{id:"ctl00_ThemeGloom",xtype:"menucheckitem",text:"DARK",group:"theme",directEvents:{click:{fn:function(item,e){var params=arguments;Ext.net.DirectEvent.confirmRequest({extraParams:{"selectedIndex":"3"},eventMask:{showMask:true,msg:"Changing Theme to Dark..bad idea..."},control:this});},delay:20}}}]}}]},text:"OSTRAKO"},{id:"ctl00_toolbasddsrTask",menu:{id:"ctl00_tbtasR",xtype:"menu",items:[{id:"ctl00_toolbarTask",iconCls:"icon-cogstart",text:"My Tasks",listeners:{click:{fn:function(item,e){NavigateTo('Tasks.aspx');}}}},{id:"ctl00_toolbarWorkflow",iconCls:"icon-wrench",text:"Workflow",listeners:{click:{fn:function(item,e){NavigateTo('Workflow.aspx');}}}}]},text:"TASKS"},{id:"ctl00_toolbarResearch",menu:{id:"ctl00_tbResR",xtype:"menu",items:[{id:"ctl00_toolbarMgmt",iconCls:"icon-bricks",text:"Entities",listeners:{click:{fn:function(item,e){NavigateTo('EntityPage.aspx');}}}},{id:"ctl00_toolbarSceree",iconCls:"icon-databaselightning",text:"Fund Screener",listeners:{click:{fn:function(item,e){NavigateTo('FundScreener.aspx');}}}},{id:"ctl00_PortfolioScreenerMenuItem",iconCls:"icon-chartpie",text:"Portfolio Screener",listeners:{click:{fn:function(item,e){NavigateTo('PortfolioScreener.aspx');}}}},{id:"ctl00_toolbarnews",iconCls:"icon-newspaper",text:"News & Media",listeners:{click:{fn:function(item,e){NavigateTo('News.aspx');}}}},{id:"ctl00_MenuItem14",iconCls:"icon-rssgo",text:"RSS Feeds",listeners:{click:{fn:function(item,e){NavigateTo('FeedViewerPage.aspx');}}}},{id:"ctl00_ctl48",xtype:"menuseparator"},{id:"ctl00_toolMenuQuant",iconCls:"icon-chartcurve",text:"Quant",menu:{id:"ctl00_ctl50",xtype:"menu",items:[{id:"ctl00_ctl51",text:"Condor",listeners:{click:{fn:function(item,e){NavigateTo('CondorPage.aspx');}}}},{id:"ctl00_ctl53",text:"Measurisk",listeners:{click:{fn:function(item,e){NavigateTo('MeasuriskScreener.aspx');}}}},{id:"ctl00_ctl55",text:"Benchmarks",listeners:{click:{fn:function(item,e){NavigateTo('QuantPage.aspx?tab=1');}}}}]}}]},text:"RESEARCH"},{id:"ctl00_toolbarAdvisory",menu:{id:"ctl00_tbADvsi",xtype:"menu",items:[{id:"ctl00_MenuItem9",iconCls:"icon-groupgear",text:"My Clients",listeners:{click:{fn:function(item,e){NavigateTo('Advisory.aspx');}}}},{id:"ctl00_MenuItem1",iconCls:"icon-bricks",text:"Entities",listeners:{click:{fn:function(item,e){NavigateTo('EntityPage.aspx');}}}},{id:"ctl00_toolbarWand",iconCls:"icon-wand",text:"Report Builder",listeners:{click:{fn:function(item,e){NavigateTo('ReportMaker.aspx');}}}},{id:"ctl00_ctl64",xtype:"menuseparator"},{id:"ctl00_MenuItem3",iconCls:"icon-report",text:"Reports",menu:{id:"ctl00_cngrepotrs",text:"Canned Reports",xtype:"menu",items:[{id:"ctl00_MenuItem4",iconCls:"icon-pageexcel",text:"Excel",listeners:{click:{fn:function(item,e){NavigateTo('ReportPages.aspx?tab=1');}}}},{id:"ctl00_MenuItem5",iconCls:"icon-applicationviewcolumns",text:"Grid",listeners:{click:{fn:function(item,e){NavigateTo('ReportPages.aspx?tab=2');}}}},{id:"ctl00_toolbaReport",iconCls:"icon-report",text:"Reports",menu:{id:"ctl00_ctl68",xtype:"menu",items:[{id:"ctl00_toolbarR1",iconCls:"icon-reportgo",text:"Client Production"},{id:"ctl00_toolbarR2",iconCls:"icon-reportgo",text:"Completion"},{id:"ctl00_toolbarR3",iconCls:"icon-reportgo",text:"Workflow Status"},{id:"ctl00_toolbarR4",iconCls:"icon-reportgo",text:"Sector Teams"},{id:"ctl00_toolbarR5",iconCls:"icon-reportgo",text:"Client Ledger"},{id:"ctl00_toolbarR6",iconCls:"icon-reportgo",text:"Past Due Tasks"},{id:"ctl00_toolbarR7",iconCls:"icon-reportgo",text:"Outstanding Vote"},{id:"ctl00_toolbarR8",iconCls:"icon-reportgo",text:"Advisory Tracker"}]}}]}},{id:"ctl00_MenuSeparator1",xtype:"menuseparator"},{id:"ctl00_MenuItem26",iconCls:"icon-money",text:"Billing Alert",listeners:{click:{fn:function(item,e){NavigateTo('/Entities/ClientPages/BillingAlerts.aspx');}}}}]},text:"ADVISORY"},{id:"ctl00_tolbarCRM",menu:{id:"ctl00_tbcrm",xtype:"menu",items:[{id:"ctl00_toolbarAll",iconCls:"icon-share",text:"All",listeners:{click:{fn:function(item,e){NavigateTo('CRMPage.aspx?id=6');}}}},{id:"ctl00_ctl86",xtype:"menuseparator"},{id:"ctl00_toolbarDoc",iconCls:"icon-page",text:"Documents",listeners:{click:{fn:function(item,e){NavigateTo('CRMPage.aspx?tab=3');}}}},{id:"ctl00_toolbaPhone",iconCls:"icon-telephone",text:"Calls",listeners:{click:{fn:function(item,e){NavigateTo('CRMPage.aspx?tab=5');}}}},{id:"ctl00_toolbargetl",iconCls:"icon-group",text:"Meetings",listeners:{click:{fn:function(item,e){NavigateTo('CRMPage.aspx?tab=4');}}}},{id:"ctl00_toolbarNote",iconCls:"icon-note",text:"Notes",listeners:{click:{fn:function(item,e){NavigateTo('CRMPage.aspx?tab=2');}}}},{id:"ctl00_ctl92",xtype:"menuseparator"},{id:"ctl00_MenuItem6",iconCls:"icon-magnifier",text:"Search",listeners:{click:{fn:function(item,e){NavigateTo('CRMPage.aspx?tab=1');}}}},{id:"ctl00_MenuItem20",iconCls:"icon-arrowjoin",text:"Merge",listeners:{click:{fn:function(item,e){NavigateTo('CRMPage.aspx?tab=0');}}}}]},text:"ACTIVITIES"},{id:"ctl00_tolbarHR",menu:{id:"ctl00_tbHR",xtype:"menu",items:[{id:"ctl00_toolbarDR",iconCls:"icon-booktabs",text:"Human Resources",listeners:{click:{fn:function(item,e){NavigateTo('HRPage.aspx?tab=4');}}}},{id:"ctl00_toolbarBk",iconCls:"icon-bookred",text:"Compliance",listeners:{click:{fn:function(item,e){NavigateTo('HRPage.aspx?tab=3');}}}},{id:"ctl00_toolbarndBk",iconCls:"icon-pagecopy",text:"Client Templates",listeners:{click:{fn:function(item,e){NavigateTo('HRPage.aspx?tab=2');}}}},{id:"ctl00_toolbartempl",iconCls:"icon-pagecopy",text:"Investment Program Templates",listeners:{click:{fn:function(item,e){NavigateTo('HRPage.aspx?tab=1');}}}}]},text:"COMPANY MATERIALS"},{id:"ctl00_Button2",menu:{id:"ctl00_Menu3",xtype:"menu",items:[{id:"ctl00_MenuItem17",iconCls:"icon-pageexcel",text:"Excel Add-In",menu:{id:"ctl00_Menu7",xtype:"menu",items:[{id:"ctl00_MenuItem21",iconCls:"icon-page",text:"Documentation"},{id:"ctl00_MenuItem23",iconCls:"icon-applicationget",text:"Installation"}]},listeners:{click:{fn:function(item,e){NavigateTo('/OfficeApplications.aspx');}}}},{id:"ctl00_MenuItem18",iconCls:"icon-email",text:"Outlook Add-In",menu:{id:"ctl00_Menu6",xtype:"menu",items:[{id:"ctl00_MenuItem15",iconCls:"icon-page",text:"Documentation"},{id:"ctl00_MenuItem22",iconCls:"icon-applicationget",text:"Installation"}]},listeners:{click:{fn:function(item,e){NavigateTo('/OfficeApplications.aspx');}}}},{id:"ctl00_MenuItem19",iconCls:"icon-pagewhiteword",text:"Word Add-In",menu:{id:"ctl00_Menu5",xtype:"menu",items:[{id:"ctl00_MenuItem8",iconCls:"icon-page",text:"Documentation"},{id:"ctl00_MenuItem7",iconCls:"icon-applicationget",text:"Installation"}]},listeners:{click:{fn:function(item,e){NavigateTo('/OfficeApplications.aspx');}}}}]},text:"APPLICATIONS"},{id:"ctl00_Button4",menu:{id:"ctl00_Menu2",xtype:"menu",items:[{id:"ctl00_MenuItem10",iconCls:"icon-group",text:"Investment Team",listeners:{click:{fn:function(item,e){NavigateTo('KPIPage.aspx?tab=5');}}}},{id:"ctl00_MenuItem11",iconCls:"icon-group",text:"Operations Team",listeners:{click:{fn:function(item,e){NavigateTo('KPIPage.aspx?tab=4');}}}},{id:"ctl00_MenuItem12",iconCls:"icon-chartbar",text:"Coverage",listeners:{click:{fn:function(item,e){NavigateTo('KPIPage.aspx?tab=3');}}}},{id:"ctl00_MenuItem13",iconCls:"icon-pagewhitestack",text:"Overlap",listeners:{click:{fn:function(item,e){NavigateTo('KPIPage.aspx?tab=1');}}}}]},text:"KPI"},{id:"ctl00_Button1",text:"HELP",listeners:{click:{fn:function(item,e){NavigateTo('/DocPage.aspx?tab=4');}}}},{id:"ctl00_tbuto0",xtype:"tbfill"},{id:"ctl00_ComboBox1",xtype:"combo",width:300,emptyText:"Welcome Raphael Thiney",hideTrigger:true,displayField:"Name",hiddenName:"ctl00_ComboBox1_Value",itemSelector:"div.search-item",loadingText:"Searching...",minChars:1,pageSize:10,tpl:this.ctl00_Template1=new Ext.net.XTemplate({proxyId:"ctl00_Template1",html:["<tpl for=\".\">","<div class=\"search-item\">","<span class=\"block{Color}\"><img src=\"images/{Image}\" /><a href=\"{Url}\">{Name}</a></span>","</div>","</tpl>",""]}),triggerAction:"all",valueField:"Url",store:ctl00_Store1,submitValue:true,listeners:{select:{fn:GoThere}}},{id:"ctl00_CycleButton2",xtype:"cycle",menu:{id:"ctl00_Menu1",xtype:"menu",items:[{id:"ctl00_CheckMenuItem1",xtype:"menucheckitem",iconCls:"icon-magnifierzoomin",text:"All",checked:true,group:"ctl00_CycleButton2",listeners:{click:{fn:function(item,e){ctl00_ComboBox1.reset(); ctl00_ComboBox1.emptyText ='Search Everything';ctl00_HiddenField1.setValue('0,1,3,4,5,6,8');ctl00_Store1.reload();return true;}}}},{id:"ctl00_CheckMenuItem2",xtype:"menucheckitem",iconCls:"icon-user",text:"Contacts & Clients Only",group:"ctl00_CycleButton2",listeners:{click:{fn:function(item,e){ctl00_ComboBox1.reset(); ctl00_ComboBox1.emptyText ='Search People and Clients Only';ctl00_HiddenField1.setValue('0,5');ctl00_Store1.reload();return true; }}}},{id:"ctl00_CheckMenuItem3",xtype:"menucheckitem",iconCls:"icon-building",text:"Entities Only",group:"ctl00_CycleButton2",listeners:{click:{fn:function(item,e){ctl00_ComboBox1.reset(); ctl00_ComboBox1.emptyText ='Search Entities Only';ctl00_HiddenField1.setValue('1,3,6');ctl00_Store1.reload();return true;}}}},{id:"ctl00_CheckMenuItem4",xtype:"menucheckitem",iconCls:"icon-chartpie",text:"Portfolio Only",group:"ctl00_CycleButton2",listeners:{click:{fn:function(item,e){ctl00_ComboBox1.reset(); ctl00_ComboBox1.emptyText ='Search Entities Only';ctl00_HiddenField1.setValue('4,8');ctl00_Store1.reload();return true;}}}}]},directEvents:{change:{fn:function(item,item){var params=arguments;Ext.net.DirectEvent.confirmRequest({extraParams:{"selectedIndex":ctl00_CycleButton2.getActiveItem().itemIndex},control:this,action:'Change'});},delay:20}}}]},{id:"ctl00_ctl970",xtype:"panel",region:"center",cmargins:"1 1 1 1",margins:"1 1 1 1",autoScroll:true,items:[{id:"ctl00_ContentPlaceHolder1_ctlFeedTree",xtype:"nettreepanel",autoScroll:true,margins:"0 0 5 5",region:"west",split:true,width:225,tbar:{id:"ctl00_ContentPlaceHolder1_ctl01",xtype:"toolbar",items:[{id:"ctl00_ContentPlaceHolder1_ctl02",iconCls:"icon-feedadd",text:"Add Feed",directEvents:{click:{fn:function(item,e){var params=arguments;Ext.net.DirectEvent.confirmRequest({control:this});},delay:20}}},{id:"ctl00_ContentPlaceHolder1_Delete",iconCls:"icon-feeddelete",text:"Remove",directEvents:{click:{fn:function(item,e){var params=arguments;Ext.net.DirectEvent.confirmRequest({control:this});},delay:20}}}]},collapseFirst:false,collapsible:true,title:"Feeds",lines:false,rootVisible:false,selModel:this.ctl00_ContentPlaceHolder1_ctl00=new Ext.tree.DefaultSelectionModel({proxyId:"ctl00_ContentPlaceHolder1_ctl00",listeners:{beforeselect:{fn:function(el,newNode,oldNode){return newNode.isLeaf();}},selectionchange:{scope:FeedViewer.FeedTree,fn:FeedViewer.FeedTree.selectionChange}}}),nodes:[{text:"My Feeds",children:[{id:"MyFeeds",cls:"feeds-node",expanded:true,text:"My Feeds"}]}],listeners:{afterrender:{scope:FeedViewer.FeedTree,fn:function(item){this.tree = el;}},contextmenu:{scope:FeedViewer.FeedTree,fn:FeedViewer.FeedTree.onContextMenu}},menu:{id:"ctl00_ContentPlaceHolder1_FeedsCtx",xtype:"menu",items:[{id:"ctl00_ContentPlaceHolder1_Load",handler:function(){this.tree.ctxNode.select();},scope:FeedViewer.FeedTree,iconCls:"icon-feedgo",text:"Load Feed"},{id:"ctl00_ContentPlaceHolder1_ctl07",iconCls:"icon-feeddelete",text:"Remove",directEvents:{click:{fn:function(item,e){var params=arguments;Ext.net.DirectEvent.confirmRequest({extraParams:{"nodeId":FeedViewer.FeedTree.tree.ctxNode.id},control:this});},delay:20}}},{id:"ctl00_ContentPlaceHolder1_ctl09",xtype:"menuseparator"},{id:"ctl00_ContentPlaceHolder1_ctl11",handler:FeedViewer.FeedTree.showWindow,scope:FeedViewer.FeedTree,iconCls:"icon-feedadd",text:"Add Feed",directEvents:{click:{fn:function(item,e){var params=arguments;Ext.net.DirectEvent.confirmRequest({control:this});},delay:20}}}],listeners:{hide:{scope:FeedViewer.FeedTree,fn:FeedViewer.FeedTree.onContextHide}}},minSize:175,maxSize:400,cmargins:"0 5 5 5"},{id:"ctl00_ContentPlaceHolder1_MainTabs",xtype:"tabpanel",plugins:this.ctl00_ContentPlaceHolder1_ctl15=new Ext.ux.TabCloseMenu({}),margins:"0 5 5 0",region:"center",items:{id:"ctl00_ContentPlaceHolder1_MainView",hideMode:"offsets",items:[{id:"ctl00_ContentPlaceHolder1_TopicGrid",xtype:"netgrid",region:"center",tbar:{id:"ctl00_ContentPlaceHolder1_ctl30",xtype:"toolbar",items:[{id:"ctl00_ContentPlaceHolder1_ctl31",handler:FeedViewer.MainPanel.openAll,iconCls:"tabs",scope:FeedViewer.MainPanel,text:"Open All",tooltip:{text:"Opens all item in tabs",title:"Open All"}},{id:"ctl00_ContentPlaceHolder1_ctl33",xtype:"tbseparator"},{id:"ctl00_ContentPlaceHolder1_PreviewPlaceButton",xtype:"splitbutton",handler:FeedViewer.MainPanel.cyclePreview,iconCls:"preview-bottom",menu:{id:"ctl00_ContentPlaceHolder1_ReadingMenu",xtype:"menu",cls:"reading-menu",width:100,items:[{id:"ctl00_ContentPlaceHolder1_ctl35",xtype:"menucheckitem",scope:FeedViewer.MainPanel,iconCls:"preview-bottom",text:"Bottom",checked:true,group:"rp-group",checkHandler:FeedViewer.MainPanel.movePreview},{id:"ctl00_ContentPlaceHolder1_ctl37",xtype:"menucheckitem",scope:FeedViewer.MainPanel,iconCls:"preview-right",text:"Right",group:"rp-group",checkHandler:FeedViewer.MainPanel.movePreview},{id:"ctl00_ContentPlaceHolder1_ctl39",xtype:"menucheckitem",scope:FeedViewer.MainPanel,iconCls:"preview-hide",text:"Hide",group:"rp-group",checkHandler:FeedViewer.MainPanel.movePreview}]},scope:FeedViewer.MainPanel,text:"Reading Pane",tooltip:{text:"Show, move or hide the Reading Pane",title:"Reading Pane"}},{id:"ctl00_ContentPlaceHolder1_ctl43",xtype:"tbseparator"},{id:"ctl00_ContentPlaceHolder1_ctl45",enableToggle:true,iconCls:"summary",pressed:true,text:"Summary",tooltip:{text:"View a short summary of each item in the list",title:"Post Summary"},directEvents:{toggle:{fn:function(item,pressed){var params=arguments;Ext.net.DirectEvent.confirmRequest({extraParams:{"pressed":pressed},control:this,action:'Toggle'});},delay:20}}}]},border:false,loadMask:{showMask:true,msg:"Loading Feed..."},sm:this.ctl00_ContentPlaceHolder1_ctl19=new Ext.grid.RowSelectionModel({proxyId:"ctl00_ContentPlaceHolder1_ctl19",singleSelect:true,listeners:{rowselect:{scope:FeedViewer.MainPanel,buffer:250,fn:FeedViewer.MainPanel.onRowSelect}}}),store:ctl00_ContentPlaceHolder1_TopicStore,view:this.ctl00_ContentPlaceHolder1_ctl18=new Ext.grid.GridView({proxyId:"ctl00_ContentPlaceHolder1_ctl18",showPreview:true,enableRowBody:true,forceFit:true,getRowClass:FeedViewer.FeedGrid.applyRowClass}),selectionMemory:false,cm:this.ctl00_ContentPlaceHolder1_ctl20=new Ext.grid.ColumnModel({proxyId:"ctl00_ContentPlaceHolder1_ctl20",columns:[{dataIndex:"title",header:"Title",id:"title",renderer:FeedViewer.FeedGrid.formatTitle,width:420},{dataIndex:"author",header:"Author",hidden:true,renderer:FeedViewer.FeedGrid.formatAuthor},{dataIndex:"pubDate",header:"Date",id:"last",width:150,xtype:"datecolumn",format:"M j, Y, g:i a"}]}),listeners:{render:{scope:FeedViewer.FeedGrid,fn:function(item){this.grid = el;}},rowcontextmenu:{scope:FeedViewer.FeedGrid,fn:FeedViewer.FeedGrid.onContextClick},rowdblclick:{scope:FeedViewer.MainPanel,fn:FeedViewer.MainPanel.openTab}},menu:{id:"ctl00_ContentPlaceHolder1_GridCtx",xtype:"menu",items:[{id:"ctl00_ContentPlaceHolder1_ctl21",handler:function(){FeedViewer.MainPanel.openTab(this.grid.ctxRecord);},scope:FeedViewer.FeedGrid,iconCls:"new-tab",text:"View in new tab"},{id:"ctl00_ContentPlaceHolder1_ctl23",handler:function(){window.open(this.grid.ctxRecord.data.link);},scope:FeedViewer.FeedGrid,iconCls:"new-win",text:"Go to Post"},{id:"ctl00_ContentPlaceHolder1_ctl25",xtype:"menuseparator"},{id:"ctl00_ContentPlaceHolder1_ctl27",handler:function(){this.grid.ctxRow = null;this.grid.store.reload();},scope:FeedViewer.FeedGrid,iconCls:"icon-tablerefresh",text:"Refresh"}],listeners:{hide:{scope:FeedViewer.FeedGrid,fn:FeedViewer.FeedGrid.onContextHide}}}},{id:"ctl00_ContentPlaceHolder1_BottomPreview",height:250,region:"south",split:true,items:{id:"ctl00_ContentPlaceHolder1_Preview",cls:"preview",autoScroll:true,region:"south",tbar:{id:"ctl00_ContentPlaceHolder1_ctl49",xtype:"toolbar",items:[{id:"ctl00_ContentPlaceHolder1_btnNewTab",disabled:true,handler:FeedViewer.MainPanel.openTab,iconCls:"new-tab",scope:FeedViewer.MainPanel,text:"View in New Tab"},{id:"ctl00_ContentPlaceHolder1_ctl51",xtype:"tbseparator"},{id:"ctl00_ContentPlaceHolder1_btnNewWin",disabled:true,handler:function(){window.open(this.grid.getSelectionModel().getSelected().data.link);},iconCls:"new-win",scope:FeedViewer.MainPanel,text:"Go To Post"},{id:"ctl00_ContentPlaceHolder1_ctl54",xtype:"tbseparator"},{id:"ctl00_ContentPlaceHolder1_btnMakeRel",disabled:true,handler:FeedViewer.MainPanel.OpenRelWindow,iconCls:"icon-useralert",scope:FeedViewer.MainPanel,text:"Make Relevant"}]},border:false,listeners:{render:{fn:FeedViewer.LinkInterceptor}}},layout:"fit",border:false},{id:"ctl00_ContentPlaceHolder1_RightPreview",hidden:true,region:"east",split:true,width:350,layout:"fit",border:false}],layout:"border",title:"Loading..."},activeTab:0,enableTabScroll:true,minTabWidth:120,resizeTabs:true,tabWidth:150,listeners:{afterlayout:{scope:FeedViewer.MainPanel,single:true,fn:FeedViewer.MainPanel.afterLayout}},tpl:this.ctl00_ContentPlaceHolder1_ctl16=new Ext.net.XTemplate({proxyId:"ctl00_ContentPlaceHolder1_ctl16",functions:{getBody:function(v,all){return Ext.util.Format.stripScripts(v || all.description);}},html:["<div id=\"preview-tpl\">","<div class=\"post-data\">","<span class=\"post-date\">{pubDate:date(\"M j, Y, g:i a\")}</span>","<h3 class=\"post-title\">{title}</h3>","<h4 class=\"post-author\">by <a href=\"mailto:{author:defaultValue(\"Unknown\")}\">{author:defaultValue(\"Unknown\")}</a></h4>","</div>","<div class=\"post-body\">{content:this.getBody}</div>","</div>"]})}],layout:"border",bodyStyle:"padding-left:5px;padding-right:5px;"}],layout:"border"});new Ext.ToolTip({id:"ctl00_ctl04",anchor:"right",html:"Click here to reset your recent entities",padding:5,title:"Recent Reset",target:"ctl00_Button5"});new Ext.Panel({id:"ctl00_RecentEntities1_RecentEntites",contentEl:"ctl00_RecentEntities1_RecentEntites_Content",renderTo:"ctl00_RecentEntities1_RecentEntites_Container",width:150,border:false,collapsible:true,header:false,titleCollapse:true});new Ext.Panel({id:"ctl00_RecentEntities1_pnlClient",contentEl:"ctl00_RecentEntities1_pnlClient_Content",renderTo:"ctl00_RecentEntities1_pnlClient_Container",autoHeight:true,collapsible:true,iconCls:"clientMenu",title:"Client"});new Ext.Panel({id:"ctl00_RecentEntities1_pnlContact",contentEl:"ctl00_RecentEntities1_pnlContact_Content",renderTo:"ctl00_RecentEntities1_pnlContact_Container",autoHeight:true,collapsible:true,iconCls:"icon-user",title:"Contact"});new Ext.Panel({id:"ctl00_RecentEntities1_pnlManager",contentEl:"ctl00_RecentEntities1_pnlManager_Content",renderTo:"ctl00_RecentEntities1_pnlManager_Container",autoHeight:true,collapsible:true,iconCls:"mgmtMenu",title:"Manager"});new Ext.Panel({id:"ctl00_RecentEntities1_pnlAffiliate",contentEl:"ctl00_RecentEntities1_pnlAffiliate_Content",renderTo:"ctl00_RecentEntities1_pnlAffiliate_Container",autoHeight:true,collapsible:true,iconCls:"icon-buildinglink",title:"Affiliates"});new Ext.Panel({id:"ctl00_RecentEntities1_pnlFund",contentEl:"ctl00_RecentEntities1_pnlFund_Content",renderTo:"ctl00_RecentEntities1_pnlFund_Container",autoHeight:true,collapsible:true,iconCls:"fundMenu",title:"Fund"});new Ext.Panel({id:"ctl00_RecentEntities1_pnlPortfolio",contentEl:"ctl00_RecentEntities1_pnlPortfolio_Content",renderTo:"ctl00_RecentEntities1_pnlPortfolio_Container",autoHeight:true,collapsible:true,iconCls:"icon-chartcurve",title:"Portfolio"});new Ext.ToolTip({id:"ctl00_ToolTip3",html:"Personalize Ostrako by choosing a pleasing theme.",title:"Theme",target:"ctl00_CycleButton1"});new Ext.ToolTip({id:"ctl00_ToolTip1",html:"Searches across ALL enttiies",title:"Search",target:"ctl00_CheckMenuItem1"});new Ext.ToolTip({id:"ctl00_ToolTip2",html:"Searches only contacts and clients",title:"Search",target:"ctl00_CheckMenuItem2"});this.ctl00_ContentPlaceHolder1_FeedUrlStore=new Ext.ux.data.PagingStore({proxyId:"ctl00_ContentPlaceHolder1_FeedUrlStore",autoLoad:true,reader:new Ext.data.ArrayReader({fields:[{name:"url"},{name:"text"}]}),directEventConfig:{},proxy:new Ext.data.PagingMemoryProxy([["http://api.bing.com/rss.aspx?Source=News&Market=en-US&Version=2.0&News.Category=rt_Business&Query=","Bing News"],["http://news.google.com/news?pz=1&cf=all&ned=us&hl=en&topic=b&output=rss","Google Business News"],["http://feeds.marketwatch.com/marketwatch/mutualfunds/","Market Watch Mutual Funds"]], false)});new Ext.Window({id:"ctl00_ContentPlaceHolder1_AddFeedWin",hidden:true,renderTo:Ext.get("aspnetForm"),autoScroll:true,autoHeight:true,height:100,width:600,y:100,items:{id:"ctl00_ContentPlaceHolder1_ctl67",xtype:"form",labelAlign:"top",items:{id:"ctl00_ContentPlaceHolder1_FeedUrl",xtype:"combo",fieldLabel:"Enter the URL of the feed to add",width:550,msgTarget:"under",validateOnBlur:false,validationEvent:false,emptyText:"http://example.com/blog/feed",displayField:"url",forceSelection:false,hiddenName:"ctl00_ContentPlaceHolder1_FeedUrl_Value",mode:"local",queryDelay:10,tpl:this.ctl00_ContentPlaceHolder1_ctl68=new Ext.net.XTemplate({proxyId:"ctl00_ContentPlaceHolder1_ctl68",html:["<tpl for=\".\"><div class=\"x-combo-list-item\">","<em>{url}</em><strong>{text}</strong>","<div class=\"x-clear\"></div>","</div></tpl>"]}),triggerAction:"all",valueField:"url",store:ctl00_ContentPlaceHolder1_FeedUrlStore,submitValue:true,listeners:{invalid:{scope:FeedViewer.FeedWindow,fn:FeedViewer.FeedWindow.syncShadow},valid:{scope:FeedViewer.FeedWindow,fn:FeedViewer.FeedWindow.syncShadow}}},bodyStyle:"background:transparent;padding:10px;",border:false,renderFormElement:false,url:"/Aksia.Intranet.2010/FeedViewerPage.aspx"},layout:"auto",buttons:[{id:"ctl00_ContentPlaceHolder1_ctl63",xtype:"button",handler:FeedViewer.FeedWindow.onAdd,scope:FeedViewer.FeedWindow,text:"Add Feed",directEvents:{click:{fn:function(item,e){var params=arguments;Ext.net.DirectEvent.confirmRequest({eventMask:{showMask:true,msg:"Validating Feed..."},userFailure:function(response,result,el,type,action,extraParams,o){FeedViewer.FeedWindow.markInvalid();},control:this});},delay:20}}},{id:"ctl00_ContentPlaceHolder1_ctl65",xtype:"button",handler:FeedViewer.FeedWindow.hide,scope:FeedViewer.FeedWindow,text:"Cancel"}],iconCls:"feed-icon",title:"Add Feed",modal:true,plain:true,resizable:false,listeners:{beforeshow:{scope:FeedViewer.FeedWindow,fn:FeedViewer.FeedWindow.beforeShow},afterlayout:{fn:function(item,layout){FeedViewer.FeedWindow.feedUrl=ctl00_ContentPlaceHolder1_FeedUrl;}}}});this.ctl00_ContentPlaceHolder1_FeedEntityStore=new Ext.net.Store({proxyId:"ctl00_ContentPlaceHolder1_FeedEntityStore",autoLoad:true,proxy:new Ext.data.HttpProxy({method:"POST",url:"/Aksia.Intranet.2010/Handlers/SearchNoPage.ashx"}),reader:new Ext.data.JsonReader({fields:[{name:"Url",type:"string"},{name:"Name",type:"string"},{name:"Id",type:"int"},{name:"Image",type:"string"}],root:"result"}),directEventConfig:{},beforeLoadParams:function(store,options){if (!options.params){options.params = {};};Ext.apply(options.params,{"SearchType":"1,3"});Ext.applyIf(options.params,{});}});new Ext.Window({id:"ctl00_ContentPlaceHolder1_MakeRelWin",hidden:true,renderTo:Ext.get("aspnetForm"),autoScroll:true,autoHeight:true,height:100,width:1000,y:100,items:{id:"ctl00_ContentPlaceHolder1_ctl75",xtype:"form",labelAlign:"top",items:[{id:"ctl00_ContentPlaceHolder1_FeedFormContainer",items:[{id:"ctl00_ContentPlaceHolder1_hidLink",xtype:"hidden"},{id:"ctl00_ContentPlaceHolder1_hidSave",xtype:"hidden"},{id:"ctl00_ContentPlaceHolder1_hidAuthor",xtype:"hidden"},{id:"ctl00_ContentPlaceHolder1_hidDescription",xtype:"hidden"},{id:"ctl00_ContentPlaceHolder1_hidPubDate",xtype:"hidden"},{id:"ctl00_ContentPlaceHolder1_hidTitle",xtype:"hidden"},{id:"ctl00_ContentPlaceHolder1_FeedEntity",xtype:"combo",fieldLabel:"Entity To Link",style:"background:url('extnet/icons/magnifier.png') no-repeat right;",width:400,validateOnBlur:false,validationEvent:false,emptyText:"Type to start searching",hideTrigger:true,displayField:"Name",forceSelection:false,hiddenName:"ctl00_ContentPlaceHolder1_FeedEntity_Value",itemSelector:"div.search-item",loadingText:"Searching..",minChars:1,tpl:this.ctl00_ContentPlaceHolder1_ctl83=new Ext.net.XTemplate({proxyId:"ctl00_ContentPlaceHolder1_ctl83",html:["<tpl for=\".\"><div class=\"search-item\">","<img src=\"images/{Image}\" />{Name}","</div>","</tpl>"]}),triggerAction:"all",valueField:"Url",store:ctl00_ContentPlaceHolder1_FeedEntityStore,submitValue:true,listeners:{invalid:{scope:FeedViewer.FeedRelevant,fn:FeedViewer.FeedRelevant.syncShadow},valid:{scope:FeedViewer.FeedRelevant,fn:FeedViewer.FeedRelevant.syncShadow}}},{id:"ctl00_ContentPlaceHolder1_FeedArticle",xtype:"textarea",fieldLabel:"Article",height:300,width:400,emptyText:"Cut-Copy-Paste relevant article content here.   This will be published to clients."},{id:"ctl00_ContentPlaceHolder1_FeedComment",xtype:"textarea",fieldLabel:"Comment",height:300,width:400,emptyText:"Enter your comments regarding the article here.   This will be published to clients."},{id:"ctl00_ContentPlaceHolder1_FeedCommentAuthor",xtype:"label"},{id:"ctl00_ContentPlaceHolder1_FeedCommentAuthorOn",xtype:"label"}],layout:"auto",bodyStyle:"background:transparent;",border:false},{id:"ctl00_ContentPlaceHolder1_FeedLaunch",height:700,width:600,monitorResize:true,bodyStyle:"background:transparent;padding:5px;",border:false}],layout:"table",layoutConfig:{columns:2},bodyStyle:"background:transparent;padding:10px;",border:false,renderFormElement:false,url:"/Aksia.Intranet.2010/FeedViewerPage.aspx"},layout:"auto",buttons:[{id:"ctl00_ContentPlaceHolder1_MakeRelAddStory",xtype:"button",handler:FeedViewer.FeedRelevant.onAdd,scope:FeedViewer.FeedRelevant,text:"Add Story",directEvents:{click:{fn:function(item,e){var params=arguments;Ext.net.DirectEvent.confirmRequest({eventMask:{showMask:true,msg:"Adding Article..."},userFailure:function(response,result,el,type,action,extraParams,o){FeedViewer.FeedRelevant.markInvalid();},control:this});},delay:20}}},{id:"ctl00_ContentPlaceHolder1_ctl73",xtype:"button",handler:FeedViewer.FeedRelevant.hide,scope:FeedViewer.FeedRelevant,text:"Cancel"}],iconCls:"icon-useralert",title:"Make Relevant",modal:true,plain:true,listeners:{beforeshow:{scope:FeedViewer.FeedRelevant,fn:FeedViewer.FeedRelevant.beforeShow}}});ctl00_WestPanel.collapse(false);ctl00_ContentPlaceHolder1_ctlFeedTree.addEvents("feedselect");ctl00_ContentPlaceHolder1_ctlFeedTree.on("feedselect",function(feed){FeedViewer.MainPanel.loadFeed(feed);});ctl00_ContentPlaceHolder1_ctlFeedTree.getNodeById("MyFeeds").appendChild(new Ext.tree.TreeNode({id:"http://localhost/Aksia.Intranet.2010//handlers/activityfeed.ashx",leaf:true,cls:"feed",iconCls:"feed-icon",text:"Ostrako Activities",url:"http://localhost/Aksia.Intranet.2010//handlers/activityfeed.ashx"}));var _e0=Ext.get(ctl00_ContentPlaceHolder1_ctlFeedTree.getNodeById("http://localhost/Aksia.Intranet.2010//handlers/activityfeed.ashx").ui.elNode);_e0.slideIn("l",{callback:ctl00_ContentPlaceHolder1_ctlFeedTree.getNodeById("http://localhost/Aksia.Intranet.2010//handlers/activityfeed.ashx").select,duration:0.4,scope:ctl00_ContentPlaceHolder1_ctlFeedTree.getNodeById("http://localhost/Aksia.Intranet.2010//handlers/activityfeed.ashx")});ctl00_ContentPlaceHolder1_ctlFeedTree.getNodeById("MyFeeds").appendChild(new Ext.tree.TreeNode({id:"http://api.bing.com/rss.aspx?Source=News&Market=en-US&Version=2.0&Query=Cerberus",leaf:true,cls:"feed",iconCls:"feed-icon",text:"Cerberus - Bing News",url:"http://api.bing.com/rss.aspx?Source=News&Market=en-US&Version=2.0&Query=Cerberus"}));ctl00_ContentPlaceHolder1_ctlFeedTree.getNodeById("MyFeeds").appendChild(new Ext.tree.TreeNode({id:"http://news.google.com/news?pz=1&cf=all&ned=us&hl=en&topic=b&output=rss",leaf:true,cls:"feed",iconCls:"feed-icon",text:"Business - Google News",url:"http://news.google.com/news?pz=1&cf=all&ned=us&hl=en&topic=b&output=rss"}));ctl00_ContentPlaceHolder1_ctlFeedTree.getNodeById("MyFeeds").appendChild(new Ext.tree.TreeNode({id:"http://feeds.marketwatch.com/marketwatch/mutualfunds/",leaf:true,cls:"feed",iconCls:"feed-icon",text:"MarketWatch.com - Mutual Funds",url:"http://feeds.marketwatch.com/marketwatch/mutualfunds/"}));ctl00_ContentPlaceHolder1_ctlFeedTree.focus();ctl00_ContentPlaceHolder1_AddFeedWin.addEvents("validfeed");ctl00_ContentPlaceHolder1_AddFeedWin.on("validfeed",function(f){Ext.net.DirectMethods.FeedTree.AddFeed(f.url, f.text, false, false);});ctl00_ThemeBlue.on("checkchange",function(item,checked){this.getCheckedField().setValue(checked);});ctl00_ThemeGray.on("checkchange",function(item,checked){this.getCheckedField().setValue(checked);});ctl00_ThemeSlate.on("checkchange",function(item,checked){this.getCheckedField().setValue(checked);});ctl00_ThemeGloom.on("checkchange",function(item,checked){this.getCheckedField().setValue(checked);});ctl00_toolbarR1.on("click",function(el,e){window.location.href='ServerReports.aspx?id=%2fWarehouse+Reports%2fClientProduction';});ctl00_toolbarR2.on("click",function(el,e){window.location.href='ServerReports.aspx?id=%2fWarehouse+Reports%2fCompletionReport';});ctl00_toolbarR3.on("click",function(el,e){window.location.href='ServerReports.aspx?id=%2fWarehouse+Reports%2fWorkflowStatus';});ctl00_toolbarR4.on("click",function(el,e){window.location.href='ServerReports.aspx?id=%2fWarehouse+Reports%2fWorkflowSectorTeam';});ctl00_toolbarR5.on("click",function(el,e){window.location.href='ServerReports.aspx?id=%2fWarehouse+Reports%2fClientReportLedger';});ctl00_toolbarR6.on("click",function(el,e){window.location.href='ServerReports.aspx?id=%2fWarehouse+Reports%2fPastDueTasks';});ctl00_toolbarR7.on("click",function(el,e){window.location.href='ServerReports.aspx?id=%2fWarehouse+Reports%2fVotingTasks';});ctl00_toolbarR8.on("click",function(el,e){window.location.href='ServerReports.aspx?id=%2fWarehouse+Reports%2fClientWeeklyReport';});ctl00_MenuItem21.on("click",function(el,e){window.location.href='/DocPage.aspx?tab=1';});ctl00_MenuItem23.on("click",function(el,e){window.location.href='/installations/Aksia.ExcelAddIn/aksia.application';});ctl00_MenuItem15.on("click",function(el,e){window.location.href='/DocPage.aspx?tab=2';});ctl00_MenuItem22.on("click",function(el,e){window.location.href='/installations/Aksia.OutlookAddIn/aksia.outlookaddin.application';});ctl00_MenuItem8.on("click",function(el,e){window.location.href='/DocPage.aspx?tab=3';});ctl00_MenuItem7.on("click",function(el,e){window.location.href='/installations/Aksia.WordAddIn/aksia.wordaddin.application';});ctl00_CheckMenuItem1.on("checkchange",function(item,checked){this.getCheckedField().setValue(checked);});ctl00_CheckMenuItem2.on("checkchange",function(item,checked){this.getCheckedField().setValue(checked);});ctl00_CheckMenuItem3.on("checkchange",function(item,checked){this.getCheckedField().setValue(checked);});ctl00_CheckMenuItem4.on("checkchange",function(item,checked){this.getCheckedField().setValue(checked);});ctl00_ContentPlaceHolder1_ctl35.on("checkchange",function(item,checked){this.getCheckedField().setValue(checked);});ctl00_ContentPlaceHolder1_ctl37.on("checkchange",function(item,checked){this.getCheckedField().setValue(checked);});ctl00_ContentPlaceHolder1_ctl39.on("checkchange",function(item,checked){this.getCheckedField().setValue(checked);});});
    	//]]>
    	</script> 
    </head>
    
    <body>
    
    	<form name="aspnetForm" method="post" action="FeedViewerPage.aspx" id="aspnetForm">
    
    <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="/wEPDwUKMTkyNTkyMzQ2OQ9kFgJmD2QWAgIDD2QWBgIDDxQqElN5c3RlbS5XZWIuVUkuUGFpcgEPBQRiYXNlDxYCHgVWYWx1ZQUNMCwxLDMsNCw1LDYsOGQWAmYPFgIeBWNsYXNzBQh4LWhpZGRlbmQCBQ8UKwQBDwUJdnNNZW1iZXJzFCsAAw8FCkJhc2VQYXJhbXMPAgEUKwABFCsEAQ8FBGJhc2UWBh4ETmFtZQUKU2VhcmNoVHlwZR8ABRoje0hpZGRlbkZpZWxkMX0uZ2V0VmFsdWUoKR4ETW9kZQspaEV4dC5OZXQuUGFyYW1ldGVyTW9kZSwgRXh0Lk5ldCwgVmVyc2lvbj0xLjAuMzkzOS4xOTAzOSwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj0yZTEyY2UzZDAxNzZjZDg3AA8FBVByb3h5FCsEAQ8FBGJhc2UWBB4GTWV0aG9kCyllRXh0Lk5ldC5IdHRwTWV0aG9kLCBFeHQuTmV0LCBWZXJzaW9uPTEuMC4zOTM5LjE5MDM5LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPTJlMTJjZTNkMDE3NmNkODcCHgNVcmwFFEhhbmRsZXJzL1NlYXJjaC5hc2h4DwUGUmVhZGVyFCsEAQ8FBGJhc2UWBB4EUm9vdAUGcmVzdWx0Hg1Ub3RhbFByb3BlcnR5BQp0b3RhbENvdW50ZAIHD2QWAmYPZBYCAgEPFCsEAQ8FCXZzTWVtYmVycxQrAAMPBQVOb3J0aBQrBAEPBQRiYXNlFgweC0NvbGxhcHNpYmxlaB4FU3BsaXRoHgxDb2xsYXBzZU1vZGULKWdFeHQuTmV0LkNvbGxhcHNlTW9kZSwgRXh0Lk5ldCwgVmVyc2lvbj0xLjAuMzkzOS4xOTAzOSwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj0yZTEyY2UzZDAxNzZjZDg3AR4PQ01hcmdpbnNTdW1tYXJ5BQcxIDEgMSAxHg5NYXJnaW5zU3VtbWFyeQUHMSAxIDEgMR4TQ29sbGFwc2libGVTcGxpdFRpcAVQQ2xpY2sgaGVyZSB0byBleHBhbmQvY29sbGFwc2UgdGhpcyBwYW5lbC4gVGhlIHNpdGUgd2lsIHJlbWVtYmVyIHlvdXIgcHJl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ZW5kAgIPFgIfAQUIeC1oaWRkZW5kAgEPFgIfAQUIeC1oaWRkZW5kAgQPFgIfAQUIeC1oaWRkZW5kAgQPFgIfAQUIeC1oaWRkZW5kAgMPFgIfAQUIeC1oaWRkZW5kGAEFHl9fQ29udHJvbHNSZXF1aXJlUG9zdEJhY2tLZXlfXxZKBRRjdGwwMCRTY3JpcHRNYW5hZ2VyMQUSY3RsMDAkSGlkZGVuRmllbGQxBQ9jdGwwMCRXZXN0UGFuZWwFDWN0bDAwJEJ1dHRvbjUFC2N0bDAwJGN0bDA0BSNjdGwwMCRSZWNlbnRFbnRpdGllczEkUmVjZW50RW50aXRlcwUfY3RsMDAkUmVjZW50RW50aXRpZXMxJHBubENsaWVudAUgY3RsMDAkUmVjZW50RW50aXRpZXMxJHBubENvbnRhY3QFIGN0bDAwJFJlY2VudEVudGl0aWVzMSRwbmxNYW5hZ2VyBSJjdGwwMCRSZWNlbnRFbnRpdGllczEkcG5sQWZmaWxpYXRlBR1jdGwwMCRSZWNlbnRFbnRpdGllczEkcG5sRnVuZAUiY3RsMDAkUmVjZW50RW50aXRpZXMxJHBubFBvcnRmb2xpbwUTY3RsMDAkdG9vbGJhckhvbWUxMgUNY3RsMDAkQnV0dG9uMwUPY3RsMDAkVGhlbWVCbHVlBQ9jdGwwMCRUaGVtZUdyYXkFEGN0bDAwJFRoZW1lU2xhdGUFEGN0bDAwJFRoZW1lR2xvb20FDmN0bDAwJFRvb2xUaXAzBRVjdGwwMCR0b29sYmFzZGRzclRhc2sFFWN0bDAwJHRvb2xiYXJSZXNlYXJjaAUVY3RsMDAkdG9vbGJhckFkdmlzb3J5BQ9jdGwwMCR0b2xiYXJDUk0FDmN0bDAwJHRvbGJhckhSBQ1jdGwwMCRCdXR0b24yBQ1jdGwwMCRCdXR0b240BQ1jdGwwMCRCdXR0b24xBQ9jdGwwMCRDb21ib0JveDEFEmN0bDAwJEN5Y2xlQnV0dG9uMgUUY3RsMDAkQ2hlY2tNZW51SXRlbTEFDmN0bDAwJFRvb2xUaXAxBRRjdGwwMCRDaGVja01lbnVJdGVtMgUOY3RsMDAkVG9vbFRpcDIFFGN0bDAwJENoZWNrTWVudUl0ZW0zBRRjdGwwMCRDaGVja01lbnVJdGVtNAUMY3RsMDAkY3RsOTcwBSVjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJGN0bEZlZWRUcmVlBR9jdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJGN0bDAyBSBjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJERlbGV0ZQUiY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRNYWluVGFicwUiY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRNYWluVmlldwUjY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRUb3BpY0dyaWQFH2N0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkY3RsMzEFLGN0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkUHJldmlld1BsYWNlQnV0dG9uBR9jdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJGN0bDM1BR9jdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJGN0bDM3BR9jdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJGN0bDM5BR9jdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJGN0bDQ1BSdjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJEJvdHRvbVByZXZpZXcFIWN0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkUHJldmlldwUjY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRidG5OZXdUYWIFI2N0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkYnRuTmV3V2luBSRjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJGJ0bk1ha2VSZWwFJmN0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkUmlnaHRQcmV2aWV3BSRjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJEFkZEZlZWRXaW4FH2N0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkY3RsNjMFH2N0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkY3RsNjUFH2N0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkY3RsNjcFIWN0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkRmVlZFVybAUkY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRNYWtlUmVsV2luBSljdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJE1ha2VSZWxBZGRTdG9yeQUfY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRjdGw3MwUfY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRjdGw3NQUrY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRGZWVkRm9ybUNvbnRhaW5lcgUhY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRoaWRMaW5rBSFjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJGhpZFNhdmUFI2N0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkaGlkQXV0aG9yBShjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJGhpZERlc2NyaXB0aW9uBSRjdGwwMCRDb250ZW50UGxhY2VIb2xkZXIxJGhpZFB1YkRhdGUFImN0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkaGlkVGl0bGUFJGN0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkRmVlZEVudGl0eQUlY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRGZWVkQXJ0aWNsZQUlY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRGZWVkQ29tbWVudAUkY3RsMDAkQ29udGVudFBsYWNlSG9sZGVyMSRGZWVkTGF1bmNoyPeMql9z5bM4qu+B4DnwATurjIplhPdfSR44vtPO974=" />
    
    </div>
    
    
    
    <script type="text/javascript">
    
    //<![CDATA[
    
    var theForm = document.forms['aspnetForm'];
    
    if (!theForm) {
    
        theForm = document.aspnetForm;
    
    }
    
    function __doPostBack(eventTarget, eventArgument) {
    
        if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
    
            theForm.__EVENTTARGET.value = eventTarget;
    
            theForm.__EVENTARGUMENT.value = eventArgument;
    
            theForm.submit();
    
        }
    
    }
    
    //]]>
    
    </script>
    
    
    
    
    
    	<div>
    
    		
    
    		<div id="ctl00_HiddenField1_Container" style="display:inline;">
    
    
    
    </div>
    
    		
    
    
    
    
    
    		
    
    	
    
    				
    
    	
    
    	
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    <div id="ctl00_WestPanel_Content" class="x-hidden">
    
    								<div id="ctl00_RecentEntities1_RecentEntites_Container">
    
    	<div id="ctl00_RecentEntities1_RecentEntites_Content" class="x-hidden">
    
            <div id="ctl00_RecentEntities1_pnlClient_Container">
    
    	<div id="ctl00_RecentEntities1_pnlClient_Content" class="x-hidden">
    
                </div>
    
    </div>
    
            <div id="ctl00_RecentEntities1_pnlContact_Container">
    
    	<div id="ctl00_RecentEntities1_pnlContact_Content" class="x-hidden">
    
                </div>
    
    </div>
    
            <div id="ctl00_RecentEntities1_pnlManager_Container">
    
    	<div id="ctl00_RecentEntities1_pnlManager_Content" class="x-hidden">
    
                </div>
    
    </div>
    
            <div id="ctl00_RecentEntities1_pnlAffiliate_Container">
    
    	<div id="ctl00_RecentEntities1_pnlAffiliate_Content" class="x-hidden">
    
                </div>
    
    </div> 
    
            <div id="ctl00_RecentEntities1_pnlFund_Container">
    
    	<div id="ctl00_RecentEntities1_pnlFund_Content" class="x-hidden">
    
                </div>
    
    </div>
    
            <div id="ctl00_RecentEntities1_pnlPortfolio_Container">
    
    	<div id="ctl00_RecentEntities1_pnlPortfolio_Content" class="x-hidden">
    
                </div>
    
    </div>
    
        </div>
    
    </div>
    
    
    
    							</div>
    
    
    
    	
    
    
    
    
    
    	
    
    	
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    
    
    
    
    
    
    	
    
    	
    
    	
    
    
    
    
    
    
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    								<table cellpadding="0" cellspacing="0" border="0">
    
    									<tr>
    
    										<td rowspan="2">
    
    											<span id="ctl00_lblSpacer"> </span>
    
    										</td>
    
    										<td rowspan="2" valign="top">
    
    											
    
    										</td>
    
    										<td valign="top" align="left">
    
    											<span id="ctl00_lblTitle" class="labelLarge"></span>
    
    										</td>
    
    									</tr>
    
    									<tr>
    
    										<td valign="top" align="left">
    
    											
    
    										</td>
    
    									</tr>
    
    								</table>
    
    								
    
        <link href="App_Themes/AksiaOriginal/feedviewer.css" rel="stylesheet" type="text/css" />
    
     
    
        <script src="Scripts/feedview.js" type="text/javascript"></script>
    
     
    
        
    
    	
    
    	
    
    
    
    
    
    	
    
    
    
    
    
    
    
    
    
    
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    
    
    
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    
    
    
    
    
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    	
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
     
    
    
    
    							
    
    
    
    
    
    			
    
    
    
    	</div>
    
    	<span id="ctl00_lblCache" style="color:White;font-size:XX-Small;"></span>
    
    	
     </form>
    
     
    
    </body>
    
    </html>
  9. #9
    Hi,

    Here is the note from ChangeLog.txt
    75. Renamed the standard first parameter of Component Listener arguments
    to "item". Previous parameter name was "el".

    The argument "item" is automatically passed as the first argument of
    the Listener function Handler.

    The scope of "this" is an instance of the Component which fired the
    event.

    Both "item" and "this" will refer to the same Component instance.

    It is recommended that developers refer to the Component instance as
    "this", instead of "item", although both will work.

    Using "this" instead of "item" will avoid any future breaking
    changes.

    Example

    <ext:Panel runat="server" Title="Example">
    <Listeners>
    // Old
    <Hide Handler="alert(el);" />

    // New
    <Hide Handler="alert(item);" />

    // Recommended
    <Hide Handler="alert(this);" />
    </Listeners>
    </ext:Panel>
  10. #10
    Quote Originally Posted by Vladimir View Post
    Hi,

    Here is the note from ChangeLog.txt

    Yes, but I have a button with a direct event. upon success, I give user a message via Ext.Msg.alert.
    The code generated:

    Ext.net.DirectEvent.confirmRequest({userSuccess:function(response,result,el,type,action,extraParams,o){Ext.Msg.alert('Success','You have cleared your Recent Entities');
    There is "el" there ...thats the only one I found in the HTML generated..that comes from Ext.Net dll right?
    Last edited by geoffrey.mcgill; Oct 14, 2010 at 9:21 PM. Reason: please use [CODE] tags
Page 1 of 2 12 LastLast

Similar Threads

  1. [CLOSED] How does "MaskCls" work for "AutoLoad" mask in panel control
    By leon_tang in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Jul 19, 2012, 12:09 PM
  2. Replies: 5
    Last Post: May 02, 2012, 5:37 PM
  3. Replies: 4
    Last Post: Oct 11, 2011, 2:42 AM
  4. Replies: 3
    Last Post: Sep 22, 2010, 10:30 AM
  5. Replies: 14
    Last Post: Mar 09, 2010, 12:49 PM

Posting Permissions