PTWC 3.0 in G6

I have a very simple .net portlet, that simply response writes some text entered in a textbox when a button is clicked. I've attached to the portlet from a different Portal server, and the portlet works fine, so there is no problem with the aspx page. I've also registered a remote portlet that I know works, to my local portal server, and that doesn't work.
The click event fires within the aspx page, but the portlet display is never refreshed, there are also no javascript errors?
Any ideas ?

No javascript errors, I have IE set to report all errors, and I tried it in firefox and checked the javascript console. Checked the response from the portlet using tcp trace and it is correct so the portlet is working correctly.
Checked the PT Spy log, there are no errors reported in there.
I also copied the link to postbacksupport.js is from the source & put it in as the url, to check the scripts had been installed to the correct place, and it returns the file.

Similar Messages

  • How can I turn off document.write error in PTWC 2.0?

    Hi everyone. I have an application that (unfortunately) avoids processing on the server and instead pushes a lot of JavaScript w/ document.write statements to the portal. Also, the code can't be changed so that it does server-side processing. I understand that document.write calls in JavaScript may not appear on the first load, that said...
    Does anyone out there know how to turn off the document.write error message that appears when a portlet uses PTWC 2.0?
    -Greg

    Apologies, I could have been clearer. Somehow, someone has managed to enable a template for one of the document libraries. When I click 'New' in the document library it opens a template Word document with writing on it already. I want to turn this off so
    that when I click 'New' I am give the default option to open a new Word Excel PowerPoint or OneNote document.
    I checked in advanced settings for the particular library and have tried turning off Allow management of content types but this does not change anything. 
     

  • HTTP/1.1 100 Continue from PTWC 3.0

    Hi all
    We are getting the string "HTTP/1.1 100 Continue" appearing every so often after a PTWC 3.0 postback .. it doesn't seem to have any detrimental affect on the app but it's a little confusing to end users.
    Has anyone else experienced this? We'd like to know why it's occuring and what we can do about it
    thanks in Advance
    Simon

    Here's the bug info and resolution stuff via patch.
    Microsoft bug, makes all our lives that much harder.
    http://support.microsoft.com/default.aspx?scid=kb;en-us;898708&sd=rss&spid=2097
    (Article ID: 898708):
    SYMPTOMS
    When you send a POST request to a server that is running Microsoft Internet Information Services (IIS) 6.0, IIS may send an "HTTP 100 Continue" response in the middle of the response stream. IIS sends the "HTTP 100 Continue" response after IIS has sent the “HTTP 200 OK” response."
    Here is a link to another interesting article:
    http://haacked.com/archive/2004/05/15/http-web-request-expect-100-continue.aspx

  • __doPostBack() Breaks in PTWC 3.0 in G6

    In Plumtree 5.03 and PTWC 2.2 it worked fine. Now with G6 and PTWC 3.0 I get a JavaScript Error on the doPostback(). Here is how I'm writing it to the browser. Anyone have this issue?
    'Open Class Schedule View (Modal Window)
    RegisterClientScriptBlock(Guid.NewGuid().ToString(), _
    "<script language=""JavaScript"">" & vbCrLf & _
    "function _openRegistrationApproval(ID)" & vbCrLf & _"{" & vbCrLf & _ "var transformModalURL = new Object();" & vbCrLf & _"transformModalURL.location = 'ViewRegistration.aspx?ScheduleID=' + ID;" & vbCrLf & _"window.showModalDialog(transformModalURL.location,'','dialogWidth:635px;dialogHeight:475px;status:no;dialogHide:true;help:no;scroll:no');" vbCrLf & _"window.execScript(""__doPostBack('','')"",""JavaScript"");" & vbCrLf & _"}" & vbCrLf & _"</script>")

    Jonathan, here is the code for TestPortlet.aspx, I have four controls (two HTML, two .NET) Only the first one works. The others are re-written by the PTWC 3.0 and causes the same JavaScript error.
    TestPortlet.aspx<%@ Page Language="vb" AutoEventWireup="false" Codebehind="TestPortlet.aspx.vb" Inherits="PTAccountReports.TestPortlet"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML> <HEAD> <title>TestPortlet</title> <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1"> <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1"> <meta name="vs_defaultClientScript" content="JavaScript"> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> </HEAD> <body MS_POSITIONING="FlowLayout"> <form id="frm_TestPortlet" method="post" runat="server"> HTML Control Open Window      HTML Control Click Here   <asp:LinkButton id="LinkButton1" runat="server">.NET Control Click Here</asp:LinkButton>    <asp:LinkButton id="lnkOpenWin" runat="server">.NET Open New Window</asp:LinkButton> <script language="JavaScript"> function openNewWin() {                var w, h;                if (document.all || document.layers)                {                    w = screen.availWidth;                    h = screen.availHeight;                } var popW = 485, popH = 365; var leftPos = (w-popW)/2, topPos = (h-popH)/2; window.open('UploadWindow.aspx','newin','menubar=no,toolbar=no,resizable=yes,scrollbars=yes,location=no,status=no,titlebar=no,directories=no,width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos); } </script> </form> </body></HTML>
    TestPortlet.vbPublic Class TestPortlet Inherits System.Web.UI.Page
    #Region " Web Form Designer Generated Code "
    'This call is required by the Web Form Designer. <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
    End Sub Protected WithEvents LinkButton1 As System.Web.UI.WebControls.LinkButton Protected WithEvents lnkOpenWin As System.Web.UI.WebControls.LinkButton
    'NOTE: The following placeholder declaration is required by the Web Form Designer. 'Do not delete or move it. Private designerPlaceholderDeclaration As System.Object
    Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init 'CODEGEN: This method call is required by the Web Form Designer 'Do not modify it using the code editor. InitializeComponent() End Sub
    #End Region
    Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'Put user code to initialize the page here
    LinkButton1.Attributes.Add("onlick", "__doPostBack('','');") lnkOpenWin.Attributes.Add("onclick", "openNewWin();") End Sub
    End Class
    __Paul

  • Problem with asp:Button in PTWC 2.1 - onclick not rendering on second button

    I have a user control with two asp buttons in one TD tag (they both have ptrender=true on them). In the portal only the first button fires its event. The second button does not. I did a partial view source on the two buttons and I see this (button 1 in blue, button 2 in red):
    <TR><TD colSpan=3></TD></TR><TR><TD align=right colSpan=5><INPUT id=_ctl0_cmdSubmit onclick="if(PTWCControl_2_1.inlineSubmit('PTPortletDIV_4645')){__doPostBack_4645('4645','frmAdmin_4645','','', PTWCControl_2_1.extraArgs(this, 'submit', event));return false;}" type=submit value=Submit name=_ctl0:cmdSubmit ptrender="true"><INPUT id=_ctl0_cmdSubmitAddRewards type=submit value="Submit & Add Rewards" name=_ctl0:cmdSubmitAddRewards ptrender="true"></TD></TR>
    So for some reason the onclick event is only being added to the first button. The interesting thing is, if I drop a second TD tag around the second button, they both work fine. This issue just showed up recently. I'm fairly sure that multiple buttons has worked in lots of other cases. Has anyone see this problem before? Any ideas?

    The buttons are on the same line. I would like to upgrade to 2.2 and I'm sure that we will at some point, but it won't happen without some time dedicated to testing. I'd like to get this figured out with version 2.1. The strange part is that it just showed up after the portlet was enhanced. I looked at everthing changed and I can't figure out what could have caused it. Anyone have any idea what would cause 2 buttons in one TD tag not to both receive the onclick event?

  • PTWC in google chrome

    I just tested out a portlet that I wrote using the pt web controls in google chrome.
    Inside the portlet, i put styles specific to the portlet, usign the $$TOKEN$$ method
    When i submit the postback, the styles come back and it looks like chrome comments them out. when I inspect the element, the <style> tag in the portlet is surrounded in comments. Have you seen this before?

    had to include it in teh head..... i like how chrome forces you into best practices:)
    <span xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/'>
    <pt:common.includeinhead>
    <pt:namespace pt:token="$$TOKEN$$"/>
    <style type="text/css">
    #pt-portlet-$$TOKEN$$ .my_class
    </style>
    </pt:common.includeinhead>
    </span>

  • PTWC 2.2 and Export Datagrid to Excel

    I have a portlet with an Image Button control that will export a Datagrid to Excel. Using the PT Web controls 2.2 I get a JavaScript Error (Object is Null or Nothing). It works fine outside of the portal. My current work-around is to use an IFrame. Has anyone else encountered this?
    Paul

    Have a look at this.
    http://www.cristalab.com/tips/exportar-datos-de-flex-a-excel-c70300l/

  • PTWC 2.2 Breaks Adaptive Portlets - Here's the fix!

    The Plumtree .NET Web Controls 2.2 states that the GetPostBackEventReference is no longer needed (as is the ptrender="true") However, unless I'm doing something wrong, it tends to break the functionality of Adaptive portlets. The fix is to simply put back the following in the Page_Load event.
    'Force creation of "_doPostBack" - Plumtree Requirement.Page.GetPostBackEventReference(Me.Page)
    Paul

    Paul,
    How is this breaking the functionality? There is now a function in postbacksupport.js called PTWCControl_2_2.doPostBack(...), and all __doPostBack(...) functions are transformed to use function instead. The GetPostBackEventReference forces this function to be included in the page, but if everything is working properly it should never be used (it would even be stripped out in many cases).
    Jonathan

  • PTWC 3.1 postback problems solved

    I just wanted to share this finding as we spent a lot of time troubleshooting it.
    We were experiencing postback problems when using WebControls 3.1 with ASP .Net 2 or 3.5 with a Windows 2008 and IIS 7 remote server.
    The ASP .Net linkbuttons or autopostack dropdown lists were not working and the javascript was showing something like Javascript:PTWCControl_3_1.doPostback( __UNKNOWN_TOKEN_HELD_POSTFORMNAME__ , ...)
    Turned out to be that the IIS Page Buffer has to be set to true in order for the WCLoader 3.1 HttpModule to work. After changing the Page Buffer the application started working as expected.
    Hope it helps someone!
    Edited by: 988992 on Feb 19, 2013 9:16 AM

    I upgraded my phone last night. Took several tries then completely wiped out my phone and sent it into restore. So had to start from scratch as it wouldn't even load from my back up with this firmware. Now my battery *****. You can watch it go down. It losses service every couple minutes says it's searching. It's slower than ever and EVERY call I have made has been dropped. I'm sooo mad right now Apple better fix this ASAP! I don't buy it's a computer issue either. I've not had problems with any other update just this one and it's on the sane pc I always use to update nothing changed.

  • Web Controls 2.1: HTTP not filtered

    I'm using the Web Controls 2.1 on a 5.0.3 Portal.
    Portlets are running on a Remote Server with IIS5, which has the complete Web Controls Installation. The <httpModules> entry is correctly placed in the Web.config. In fact, I'm using the Rerender Demo Sample.
    I can tell that something is happening, because the ptwc.log shows this entry on the first call to Controller.aspx after an IIS restart:
    [EDK Web Controls Log Start]2005-01-12 13:05:56,187 [3112] INFO EDK Web Controls [] - [Com.Plumtree.Remote.Loader.AssemblyLoader.LoadAssemblyToAppDomainInternal()] Loaded assembly: log4net, Version=1.2.0.22663, Culture=neutral, PublicKeyToken=null to AppDomain: /LM/w3svc/1/root/RerenderDemo-1-1275000154412500002005-01-12 13:05:56,218 [3112] INFO EDK Web Controls [] - [Com.Plumtree.Remote.Loader.AssemblyLoader.LoadAssemblyToAppDomainInternal()] Loaded assembly: openfoundation, Version=2.3.1.8, Culture=neutral, PublicKeyToken=null to AppDomain: /LM/w3svc/1/root/RerenderDemo-1-1275000154412500002005-01-12 13:05:56,218 [3112] INFO EDK Web Controls [] - [Com.Plumtree.Remote.Loader.AssemblyLoader.LoadAssemblyToAppDomainInternal()] Loaded assembly: Plumtree.LogWrapper, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null to AppDomain: /LM/w3svc/1/root/RerenderDemo-1-1275000154412500002005-01-12 13:05:56,218 [3112] INFO EDK Web Controls [] - [Com.Plumtree.Remote.Loader.AssemblyLoader.LoadAssemblyToAppDomainInternal()] Loaded assembly: Plumtree.LogWrapper, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null to AppDomain: /LM/w3svc/1/root/RerenderDemo-1-1275000154412500002005-01-12 13:05:56,218 [3112] INFO EDK Web Controls [] - [Com.Plumtree.Remote.Loader.AssemblyLoader.LoadAssemblyToAppDomainInternal()] Loaded assembly: Plumtree.RemoteLoader, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null to AppDomain: /LM/w3svc/1/root/RerenderDemo-1-1275000154412500002005-01-12 13:05:56,218 [3112] INFO EDK Web Controls [] - [Com.Plumtree.Remote.Loader.AssemblyLoader.LoadAssemblyToAppDomainInternal()] Loaded assembly: edk, Version=5.0.2.0, Culture=neutral, PublicKeyToken=null to AppDomain: /LM/w3svc/1/root/RerenderDemo-1-1275000154412500002005-01-12 13:05:56,218 [3112] INFO EDK Web Controls [] - [Com.Plumtree.Remote.Loader.AssemblyLoader.LoadAssemblyToAppDomainInternal()] Loaded assembly: jsregistry, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null to AppDomain: /LM/w3svc/1/root/RerenderDemo-1-1275000154412500002005-01-12 13:05:56,218 [3112] INFO EDK Web Controls [] - [Com.Plumtree.Remote.Loader.AssemblyLoader.LoadAssemblyToAppDomainInternal()] Loaded assembly: Plumtree.WCFilter, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null to AppDomain: /LM/w3svc/1/root/RerenderDemo-1-1275000154412500002005-01-12 13:05:56,218 [3112] INFO EDK Web Controls [] - [Com.Plumtree.Remote.Loader.AssemblyLoader.LoadAssemblyToAppDomainInternal()] Loaded assembly: Plumtree.LogWrapper, Version=2.1.0.0, Culture=neutral, PublicKeyToken=null to AppDomain: /LM/w3svc/1/root/RerenderDemo-1-1275000154412500002005-01-12 13:05:56,609 [3112] INFO EDK Web Controls [] - [Com.Plumtree.Remote.Transformer.Token.PTWSClientRefGenerator.Configure()] Mapping override preference key set to PTWC.Mapping.Override2005-01-12 13:05:56,812 [3112] INFO EDK Web Controls [] - [Com.Plumtree.Remote.Transformer.Token.TokenManager.LoadTokenGenerators()] Completed loading Token Generators2005-01-12 13:05:56,812 [3112] INFO EDK Web Controls [] - [Com.Plumtree.Remote.Transformer.FilterManager.Load()] Completed loading main configuration2005-01-12 13:05:57,468 [3112] INFO EDK Web Controls [] - [Com.Plumtree.Remote.Transformer.Config.ConfigMonitor.Register()] Registering class WCConfig for dynamic configuration reloading from C:\Programme\plumtree\ptwc\2.1\settings\config\config.xml[EDK Web Controls Log End]
    However, on postback the portlet still takes over the whole browser. Upon closer inspection of the Portal Page source and the HTTP response from the portlet to the portal (using a YATT trace) revealed that the aspx page is not transformed at all. Javascript functions and form names all appear in their original form.
    Reinstalling the Webcontrols also didn't help. We really need this functionality. Does anyone have an idea, why this is not working?

    I am still unable to get the 2.1 Webcontrols to work, can anyone provide some insight to overcoem the cast exception?.-There seem to be some additional configuration items in this release - Can anyone explain their purpose? -The installation also placed the image server files in the wrong location - I had to move them from the ptimages folder to the ptimages/RemoteGadgets

  • The located assembly's manifest definition with name 'openfoundation' does not match the assembly re

    Ok. been working on this for the better part of a day. I am having trouble with the .net web controls. trying to create a simple portlet that populates a text box with values from a 2nd text box when a button is selected. both text boxes are in the same portlet.
    without using the <httpModules> entry in the web.config file the portlet works fine, but it does pop you out of the portal.
    setup: working in a Dev. environment with portal and portlets on the same box.Portal version is 5.0.2.EDK version is 5.0.2.
    error:
    The located assembly's manifest definition with name 'openfoundation' does not match the assembly reference.Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.IO.FileLoadException: The located assembly's manifest definition with name 'openfoundation' does not match the assembly reference.Source Error:An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.Assembly Load Trace:The following information can be helpful to determine why the assembly 'openfoundation' could not be loaded.=== Pre-bind state information ===
    LOG: DisplayName = openfoundation, Version=2.0.9.3152, Culture=neutral, PublicKeyToken=d0e882dd51ca12c5
    (Fully-specified)
    LOG: Appbase = file:///c:/inetpub/wwwroot/netTest
    LOG: Initial PrivatePath = bin
    Calling assembly : dotnetportlet, Version=3.5.0.1, Culture=neutral, PublicKeyToken=null.
    ===
    LOG: Publisher policy file is not found.
    LOG: No redirect found in host configuration file (C:\WINNT\Microsoft.NET\Framework\v1.1.4322\aspnet.config).
    LOG: Using machine configuration file from C:\WINNT\Microsoft.NET\Framework\v1.1.4322\config\machine.config.
    LOG: Post-policy reference: openfoundation, Version=2.0.9.3152, Culture=neutral, PublicKeyToken=d0e882dd51ca12c5
    LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/nettest/9e6689f5/a0d2f067/openfoundation.DLL.
    LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/nettest/9e6689f5/a0d2f067/openfoundation/openfoundation.DLL.
    LOG: Attempting download of new URL file:///c:/inetpub/wwwroot/netTest/bin/openfoundation.DLL.
    WRN: Comparing the assembly name resulted in the mismatch: Minor Version
    Stack Trace:[FileLoadException: The located assembly's manifest definition with name 'openfoundation' does not match the assembly reference.]
       Plumtree.Remote.Portlet.PortletContextFactory.CreatePortletContext(HttpRequest req, HttpResponse resp) +0
       Com.Plumtree.Remote.Transformer.Condition.GatewayedStandardCondition.UseFilter(HttpContext ctx)
       Com.Plumtree.Remote.Transformer.FilterManager.UpdateFilter(HttpContext ctx)
       Com.Plumtree.Remote.Transformer.PTTransformer.BeginRequestHandler(Object sender, EventArgs e)
       System.Web.SyncEventExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute() +60
       System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +87
    Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.947
    ************************************************************Is there any step by step instructions for setting up and using the .net web controls in Plumtree????
    There doesn't seem to be any information in one spot as to setting up the environment to use the .Net Web Controls. I have had to piece together information from multipule threads to get this far. I.E. there was nothing in any documentation that I have read that required the installation of the VJ# lib's. (that error took me the first half of the day to resolve :-) )
    Thanks for any help,
    Greg************************************************************

    Also, when reviewing the Plumtree_.NET_Web_Controls_InstallLog.log there were 5 nonfatal erros. These error's were:
    Install File: E:\plumtree\ptwc\2.0\bin\assemblies\edk.dll Status: ERROR Additional Notes: ERROR - java.io.FileNotFoundException: E:\plumtree\ptwc\2.0\bin\assemblies\edk.dll (The process cannot access the file because it is being used by another process)
    Install File: E:\plumtree\ptwc\2.0\bin\assemblies\jsregistry.dll Status: ERROR Additional Notes: ERROR - java.io.FileNotFoundException: E:\plumtree\ptwc\2.0\bin\assemblies\jsregistry.dll (The process cannot access the file because it is being used by another process)
    Install File: E:\plumtree\ptwc\2.0\bin\assemblies\log4net.dll Status: ERROR Additional Notes: ERROR - java.io.FileNotFoundException: E:\plumtree\ptwc\2.0\bin\assemblies\log4net.dll (The process cannot access the file because it is being used by another process)
    Install File: E:\plumtree\ptwc\2.0\bin\assemblies\openfoundation.dll Status: ERROR Additional Notes: ERROR - java.io.FileNotFoundException: E:\plumtree\ptwc\2.0\bin\assemblies\openfoundation.dll (The process cannot access the file because it is being used by another process)
    Install File: E:\plumtree\ptwc\2.0\bin\assemblies\Plumtree.WCFilter.dll Status: ERROR Additional Notes: ERROR - java.io.FileNotFoundException: E:\plumtree\ptwc\2.0\bin\assemblies\Plumtree.WCFilter.dll (The process cannot access the file because it is being used by another process)
    When installing the Web Control's do you need to stop any services? I didn't see anything in the install notes about doing this?

  • User Profile access

    Which way are you guys going, assuming 6.x and above:
    portletRequest.getSettingValue(SettingType.UserInfo,"PROPERTY_NAME");
    or
    Profile.PROPERTY_NAME (which I believe requires a web.config entry)

    no i don't use teh app accelerator. just ptwc. i have found app accelerator to be too confusing and buggy.
    app accelerator = ptwc + portletAPI (the templates, etc)

  • PT Web Controls 2.1 - Imageserver Issue

    At our public portal at http://www.raleighnc.gov/calendar , I'm getting JavaScript errors that I think are due to the remote portlet server not being to access our image server via domain name -- a networking security issue. From the portlet server, manually accessing the imageserver via machine name works fine.In the PTWC.LOG file, the jscomponent.xml file fails to load and there's a great KB article (DA_217701) which explains how to adjust the imageserver URL for Studio Server config, Content Server config, etc. No mention of the PTWC2.1; I tried editing the imageserver.mapping.xml file with the following entry:<mapping find="http://www.raleighnc.gov/imageserver/" replace="http://pt01/imageserver/"/>I even tried this syntax:<mapping find="www.raleighnc.gov" replace="pt01"/>
    This doesn't not resolve. When I followed the KB, the imageserverURL remap fixed Studio Server (located on the same remote server). Any ideas what else to try for PTWC???

    Michael,
    Are you sure that your imageserver is exactly "[url[/url]http://www.raleighnc.gov/imageserver/"? (You can find it in the portals j_config.xml or n_config.xml or from the EDK). The mapping you have should work if this is the exact sting - however if you don't care and you just want to map the server www.raleighnc.govto "pt01" then you can use regular expressions, i.e.
    <mapping regex="true" find="www\.raleighnc\.gov" replace="pt01" />
    You must restart IIS after making this change (you can probably get away with simply touching config.xml...) then you should see it attempting to remap the imageserver URL in the logs.
    Jonathan

  • Portlet will not post back after first time

    I have a portlet that is using WC 2.2 in version 5.0.4 of the portal. The portlet renders fine and posts back fine the first time. Subsequent clicks on any button requiring a postback go nowhere (just the cursor displaying as an hourglass). No request is made to the web server so it must be hung up in the postback javascript somewhere. Has anyone experienced this issue before. Thanks in advance.

    Then I don't know. In these situations I use Visual Studio to attach to IE and do client-side debugging. It's a bit tricky, but doable. Then you can trace where it goes after the second click (if anywhere). Unless someone had the same problem and knows the answer...
    Although, we did have a very similar problem where second post back did not work (it would freeze with a hourglass). In our case it was because PTWC 2.2 can't handle large viewstates generated by a data grid. When we disabled the view state, it worked.
    Ruslan.

  • Can't find navhztlddmenufuncs.js under imageserver\plumtree\portal\private\js

    Can't find navhztlddmenufuncs.js under imageserver\plumtree\portal\private\js. Where should i get it from?
    Thanks

    This message is occuring because you are using a version of ASP.NET which is newer than was available at the time of the 2.1 Web Controls release (1.1SP1). Normally this portlet would not function, however I expect you have another portlet on the page which is running in an older version so it is using the older includes (which are fine in this case).
    What you need to do is generate a WebUIValidation.js for the newer framework. You can do this by going to your portlet server and running JSGenerator.exe (located in plumtree\ptwc\2.1\bin) - this should detect the new framework (1.1.4322.2032), so select this. Then click generate - it will generate a new WebUIValidation.js file & tell you where to put it. I believe this should also be covered in the documentation with the web controls.

Maybe you are looking for