Help!  3 layer Dynamic List showing a Embedded PDF

I'm trying to make a 3 layer dymanic lists that point to a MySQL database so that when the user selects a year, it will change the month list to the supported months for that year, and change the day field to the supported Days in that month.  Then once the day is selected the embedded PDF on the page will cange automatically to that issue.
I already have Dreamweaver connected to the testing server with a recordset connected to the data.  I just think I'm setting it up wrong.
In SQL the rows are like so....
1896   |   January    |     01      |    C:\Library\January_01_1896.pdf
1896   |   March      |     08      |    C:\Library\March_08_1896.pdf
1897   |   January    |     01      |    C:\Library\January_01_1897.pdf
So pick a year, month, day, and the Embedded PDF will change to the PDF on the last row.
Right now it looks like this, but isn't working
Select a Year:  ______
Select a Month: ______
Select a Day: _______
EMBEDDED PDF
I'm new to this, so try to avoid code please.  I know this all can be done in Dreamweaver with just commands.

First off, you need to add a primary key to your table, so that each element has a unique identifier. Then you need to set up a query. Take a look at this tutorial video:
http://www.youtube.com/watch?v=Kmawo5-JZWg
I know you're trying to avoid code, but in order to accomplish what you are trying to do, you're going to have to learn a bit of SQL statements and PHP for proper connection.
-Julia

Similar Messages

  • I can't see an embedded PDF (using iFrames) on my iPad

    My Club's website is built on WordPress and uses a plugin to show an embedded PDF.  On my iPad, (original), it just shows as blank screen but apparently another Member sees the content on her iPad.  Any idea why mine won't show it?

    Change App Store
    1. Tap "Settings"
    2. Tap "iTunes & App Stores"
    3. Tap on your Apple ID
    4.Tap "View Apple ID"
    5. Enter your user name and password.
    6. Tap "Country/Region."
    7. Tap "Change Country/Region"
    8. Select the region where you are located.
    9. Tap "Done".
    Note: If the change doesn't take effect, sign out of account and sign in again.

  • Dynamic List not showing from RTL alignment

    Hi friends,
    I have a dynamic hierarichal list, showing the employee and sub-ordinates.
    I have to show this alignment from RTL and not from LTR and hence for that in the inline CSS section of the page I mentioned like
    body{direction:rtl}But the list aint moving, since the remaining things appearing in RTL other than the list, Is im missing anything in the list alignment in order to show from RTL
    I have created a ex in apex.oracle.com
    In application 49240, page 1
    Kindly help me with this problem friends.
    Thanks in advance.
    Brgds,
    Mini

    Hello Mini,
    What you are asking is not trivial at all, and using the CSS direction attribute will not help, per se.
    As you are using a built-in region type, there is a lot of page orientation HTML code that is hard-coded, including JavaScript function parameters, which set to Left (e.g. dhtml_MenuOpen). Another problem is the hard-coded use of the arrow images (e.g. menu_open_right2.gif). These images are not influenced by the CSS direction attribute, and need to be replaced with images in a reverse direction.
    To make a long story short – what you are asking can't be done out-of-the-box, or by minor changes to CSS files.
    Regards,
    Arie.
    ♦ Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    ♦ Author of Oracle Application Express 3.2 – The Essentials and More

  • ASP VBScript and ADDT Dynamic List Wizard HELP

    Using ADDT I've created a dynamic list in a membership area. How do I get that dynamic list to populate only the data for that particular member that is logged in. Any help would be so much appreciated as I have been trying to figure this out for days now.
    <br />
    <br /><%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
    <br />
    <!--#include file="../Connections/rentalpaypro.asp" -->
    <br />
    <!--#include file="../includes/common/KT_common.asp" -->
    <br />
    <!--#include file="../includes/tNG/tNG.inc.asp" -->
    <br /><%<br />'Start log out user<br />  Set logout = new tNG_Logout<br />  logout.setLogoutType "link"<br />  logout.setPageRedirect "../index.html"<br />  logout.Execute<br />'End log out user<br />%>
    <br />
    <!--#include file="../includes/tfi/TFI.asp" -->
    <br />
    <!--#include file="../includes/tso/TSO.asp" -->
    <br />
    <!--#include file="../includes/nav/NAV.asp" -->
    <br /><%<br />'Start Restrict Access to Page<br />  Dim restrict: Set restrict  = new tNG_RestrictAccess<br />  restrict.Init MM_rentalpaypro_STRING, "../"<br />'Grand Levels: Any<br />  restrict.Execute<br />'End Restrict Access to Page<br />%>
    <br /><%<br />' Filter<br />  Dim tfi_listLandlord_Property1: Set tfi_listLandlord_Property1 = new TFI_TableFilter<br />  tfi_listLandlord_Property1.Init MM_rentalpaypro_STRING, "tfi_listLandlord_Property1"<br />  tfi_listLandlord_Property1.addColumn "Landlord_Property.ContactInfoID", "NUMERIC_TYPE", "ContactInfoID", "="<br />  tfi_listLandlord_Property1.addColumn "Landlord_Property.RegistrationID", "NUMERIC_TYPE", "RegistrationID", "="<br />  tfi_listLandlord_Property1.addColumn "Landlord_Property.StreetNumber", "NUMERIC_TYPE", "StreetNumber", "="<br />  tfi_listLandlord_Property1.addColumn "Landlord_Property.StreetName", "STRING_TYPE", "StreetName", "%"<br />  tfi_listLandlord_Property1.addColumn "Landlord_Property.AptNumber", "NUMERIC_TYPE", "AptNumber", "="<br />  tfi_listLandlord_Property1.addColumn "Landlord_Property.City", "STRING_TYPE", "City", "%"<br />  tfi_listLandlord_Property1.addColumn "Landlord_Property.State", "STRING_TYPE", "State", "%"<br />  tfi_listLandlord_Property1.addColumn "Landlord_Property.ZipCode", "NUMERIC_TYPE", "ZipCode", "="<br />  tfi_listLandlord_Property1.addColumn "Landlord_Property.MonthlyRent", "NUMERIC_TYPE", "MonthlyRent", "="<br />  tfi_listLandlord_Property1.Execute()<br /><br />' Sorter<br />  Dim tso_listLandlord_Property1: Set tso_listLandlord_Property1 = new TSO_TableSorter<br />  tso_listLandlord_Property1.Init "rslistLandlord_Property1", "tso_listLandlord_Property1"<br />  tso_listLandlord_Property1.addColumn "Landlord_Property.ContactInfoID"<br />  tso_listLandlord_Property1.addColumn "Landlord_Property.RegistrationID"<br />  tso_listLandlord_Property1.addColumn "Landlord_Property.StreetNumber"<br />  tso_listLandlord_Property1.addColumn "Landlord_Property.StreetName"<br />  tso_listLandlord_Property1.addColumn "Landlord_Property.AptNumber"<br />  tso_listLandlord_Property1.addColumn "Landlord_Property.City"<br />  tso_listLandlord_Property1.addColumn "Landlord_Property.State"<br />  tso_listLandlord_Property1.addColumn "Landlord_Property.ZipCode"<br />  tso_listLandlord_Property1.addColumn "Landlord_Property.MonthlyRent"<br />  tso_listLandlord_Property1.setDefault "Landlord_Property.ContactInfoID"<br />  tso_listLandlord_Property1.Execute()<br /><br />' Navigation<br />  Dim nav_listLandlord_Property1: Set nav_listLandlord_Property1 = new NAV_Regular<br />  nav_listLandlord_Property1.Init "nav_listLandlord_Property1", "rsLandlord_Property1", "../", Request.ServerVariables("URL"), 10<br />%>
    <br /><%<br />Dim qry_contactinfo__MMColParam<br />qry_contactinfo__MMColParam = "1"<br />If (Session("kt_login_id") <> "") Then <br />  qry_contactinfo__MMColParam = Session("kt_login_id")<br />End If<br />%>
    <br />

    Use the session variable from the log in method (MM_Username as I recall) to create a recordset that you then use in the dynamic list versus using the whole table.

  • Showing filter in dynamic list by default

    I have a form using the ADDT dynamic list behaviour. What I'd like to do is show the filter items automatically when that form opens rather than have the user click on the Filter button.
    Does anyone know how to do that?
    Thanks in advance for any advice.

    Further searching, and I discovered this has already been answered.
    See http://forums.adobe.com/message/1075032#1075032

  • Is WPC dynamic list recursively showing content?

    Hi guys,
    I have this KM folder structure with WPC's articles:
    FOLDER 1
    |
    |_ FOLDER A
    |     |_ article a.1
    |     |_ article a.2
    |
    |_ FOLDER B
    |     |_ article b.1
    |     |_ article b.2
    |
    |_ article 1.1
    |_ article 1.2
    articles 1.1 and 1.2 are direct children of Folder1 (ie: they are sibling for Folder A and Folder B). I hope it's clear :S
    Here comes the trouble. I'm using a WPC Dynamic List pointing to Folder 1, but instead of showing only articles 1.1 and 1.2, the list is populated with ALL articles within Folder 1 and Folder A and Folder B.
    I'm guessing it is reading the folder structure recursively. I need to display ONLY the two last articles (article 1.1 and 1.2).
    Is this a bug or, by the opposite, is the expected behavior?
    Thanks in advance.
    Best Regards,
    Marcelo

    Thanks for the answer.
    Guess i have to put everything I need in the article element so i do not need to show the page.
    Another question occured to me while I was doing that:
    When I navigate from a Dynamic List to an Element, it should be possible to navigate back and forth with the buttons I created using the history api.
    Instead of the "<a href..." in the default dynamic list I created an onclick event. Right now im trying to navigate to the article with its guid and the method "EPCM.doNavigate(...)" but until know i haven't been able to get it done.
    Is it even possible to reach that goal and in case it is am I on the right track or is there a better approach available?!
    Thanks in advance...
    Greetings,

  • Paramform dynamic list can not show in browser

    In report builder I build two user parameter by Parameter Form builder.
    one is the search_mouth in which we type the month, the other is department_name
    which is selected by dynamic list and we can not type the name only select a name from the list.
    Everything is ok when I run it in report environment, but when I call it in browser the search_mouth field is ok, but the department_name change to a common textfield not a dynamic list,and all department_name is shown below the textfield.
    command line is http://10.20.8.102:8888/reports/rwservlet?destype=cache&desformat=PDF&report=myrep&userid=scott/tiger@a&paramform=yes
    I do not know how to show the dynamic list in browser.

    I just tried and it works for me. The LOV value of the parameter is shown in browser as pulldown list.
    I created a group above reports based on select * from emp where deptno = :p_deptno.
    user parameter p_deptno is defined as sql select unique deptno from emp. In the parameter form builder, I selected desformat and p_deptno to show in the parameter form. When I run it through rwservlet, I get a text edit box for desformat, and pulldown list for deptno.
    Thanks,
    -Shaun

  • Using variable in dynamic list queries

    How can we use a variable value like metadata value of the parent content in the dynamic list query?
    I tried something following ways but the query was not picking up the value of xCountries.
    dDocType <matches> `State` <AND> xCountries <matches> xCountries
    dDocType <matches> `State` <AND> xCountries <matches> `xCountries`
    dDocType <matches> `State` <AND> xCountries <matches> `$xCountries`
    dDocType <matches> `State` <AND> xCountries <matches> `<!--$xCountries-->`
    None of them worked. But when I printed the <!--$xCountries--> on the secondary page for the selected country the value is getting printed.
    Regards,
    Pratap

    Hi Bex,
    You were right. Eval function call was helpful here.
    The problem was resolved only to an extent by using the eval function. This is
    evaluating the query string given in parameters window for ssQueryText to
    correct value. We used the eval() function in the dynamic list fragment. The
    format of query we were trying earlier was incorrect. The correct format is like
    this
    dDocType <matches> `City` <AND> xCountries <matches> `<$xCountries$>` <AND>
    xStates <matches> `<$xStates$>`
    There is another problem though. We are able to add new states or cities by
    going to the specific state page or to the cit page and then edit it. But if we
    click edit on a secondary page e.g. on a State page(which contains list of
    cities) the correct values for cities are not getting populated in the Cities
    dynamic list in state edit window. Possible cause is that the eval function is
    not called in the edit window (which shows all applets), instead the eval
    function is called only in dynamic list fragment which is evaluated in the
    secondary page template for State. How can we make the eval function execute in
    the edit window as well?
    In fact the query is failing from paramters window itself. If I use Test Query
    it is returning 0 results.
    Is there a work around to address this problem? Hope I didn't confuse much.
    Regards,
    Pratap

  • Dynamic list renderer - ArrayIndexOutOfBounds on next() (bug?)

    I was inspired by "HOWTO: Use BC4J HTML Field Renderers" - so I made dynamical list renderer which executes query and shows one value from foreign table:
    public class DynamicListFieldRenderer extends ReadOnlyField
    with method:
    public String renderToString(Row row) {
    AttributeDef aDef = getAttributeDef();
    String sQuery = (String)aDef.getProperty("LIST_QUERY");
    String sDisplayAttribute = (String)aDef.getProperty("LIST_DISPLAY_COLUMN");
    String sDataAttribute = (String)aDef.getProperty("LIST_DATA_COLUMN");
    Object obj = row.getAttribute(aDef.getName());
    if (obj == null) return "";
    String value = obj.toString();
    /* change query - add WHERE clause */
    String orderBy = "";
    StringBuffer sbQuery;
    int whereIdx = sQuery.toUpperCase().indexOf("WHERE");
    int orderByIdx = sQuery.toUpperCase().indexOf("ORDER BY");
    if (orderByIdx != -1) {
    orderBy = sQuery.substring(orderByIdx);
    sbQuery = new StringBuffer(sQuery.substring(0,orderByIdx));
    else
    sbQuery = new StringBuffer(sQuery);
    /* zpracuj WHERE */
    if (whereIdx == -1) sbQuery.append(" WHERE ");
    else sbQuery.append(" AND ");
    sbQuery.append("(");
    sbQuery.append(sDataAttribute); sbQuery.append("="); sbQuery.append("'"); sbQuery.append(value);
    sbQuery.append("') ");
    /* zpracuj ORDER BY */
    sQuery = sbQuery.append(orderBy).toString();
    /* make dynamical ViewObject */
    qView = ds.getApplicationModule().createViewObjectFromQueryStmt(null, sQuery);
    String returnValue = "";
    Row foundRow = qView.next();
    if (foundRow != null) {
    Object displayObj = foundRow.getAttribute(sDisplayAttribute);
    if (displayObj != null) returnValue = displayObj.toString();
    /* delete dynamical ViewObject */
    ((ViewObject)qView).remove();
    return returnValue;
    When I use this renderer for one attribute, everything is OK. But when I use it for two attributes, there appears a problem.
    Scenario (point 1. is not necessary):
    1. Browse.jsp for my table with special renderers - OK
    2. Browse.jsp for foreign table - OK
    3. Browse.jsp for my table with special renderers -> Exception:
    JBO-29000: Unexpected exception caught: java.lang.ArrayIndexOutOfBoundsException, msg=0
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.lang.ArrayIndexOutOfBoundsException, msg=0 void oracle.jbo.JboException.(java.lang.Throwable) JboException.java:339 oracle.jbo.Row oracle.jbo.server.ViewRowSetIteratorImpl.next() ViewRowSetIteratorImpl.java:1292 oracle.jbo.Row oracle.jbo.server.ViewRowSetImpl.next() ViewRowSetImpl.java:2206 oracle.jbo.Row oracle.jbo.server.ViewObjectImpl.next() ViewObjectImpl.java:4165 java.lang.String or.jbo.html.DynamicListFieldRenderer.renderToString(oracle.jbo.Row) DynamicListFieldRenderer.java:79 int or.jbo.html.jsp.datatags.RenderValueTag.doStartTag() RenderValueTag.java:51 void dt.DataTableComponent._jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse) DataTableComponent.jsp:128
    So the problem is when I call method ViewObjectImpl.next().... (see above inside method renderToString())
    Exception is throwed inside oracle class - so I have no idea, where's the problem...
    Can anybody help me?
    Thank you for any comments
    Jan Pechanec

    The whole stack trace (I found I missed "Detail 0").
    Jan Pechanec
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.lang.ArrayIndexOutOfBoundsException, msg=0
         void oracle.jbo.JboException.(java.lang.Throwable)
              JboException.java:339
         oracle.jbo.Row oracle.jbo.server.ViewRowSetIteratorImpl.next()
              ViewRowSetIteratorImpl.java:1292
         oracle.jbo.Row oracle.jbo.server.ViewRowSetImpl.next()
              ViewRowSetImpl.java:2206
         oracle.jbo.Row oracle.jbo.server.ViewObjectImpl.next()
              ViewObjectImpl.java:4165
         java.lang.String or.jbo.html.DynamicListFieldRenderer.renderToString(oracle.jbo.Row)
              DynamicListFieldRenderer.java:79
         int or.jbo.html.jsp.datatags.RenderValueTag.doStartTag()
              RenderValueTag.java:51
         void dt.DataTableComponent._jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              DataTableComponent.jsp:128
         void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              HttpJsp.java:119
         void oracle.jsp.runtimev2.JspPageTable.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
              JspPageTable.java:302
         void oracle.jsp.runtimev2.JspServlet.internalService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              JspServlet.java:407
         void oracle.jsp.runtimev2.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              JspServlet.java:328
         void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              HttpServlet.java:336
         void com.evermind.server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              ServletRequestDispatcher.java:684
         void com.evermind.server.http.ServletRequestDispatcher.include(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              ServletRequestDispatcher.java:108
         void com.evermind.server.http.GetParametersRequestDispatcher.include(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              GetParametersRequestDispatcher.java:94
         void com.evermind.server.http.EvermindPageContext.include(java.lang.String)
              EvermindPageContext.java:287
         int oracle.jbo.html.jsp.datatags.ComponentTag.doStartTag()
              ComponentTag.java:75
         void dt.BrowseDT._jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              BrowseDT.jsp:44
         void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              HttpJsp.java:119
         void oracle.jsp.runtimev2.JspPageTable.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
              JspPageTable.java:302
         void oracle.jsp.runtimev2.JspServlet.internalService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              JspServlet.java:407
         void oracle.jsp.runtimev2.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              JspServlet.java:328
         void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              HttpServlet.java:336
         void com.evermind.server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              ServletRequestDispatcher.java:684
         void com.evermind.server.http.ServletRequestDispatcher.forwardInternal(javax.servlet.ServletRequest, javax.servlet.http.HttpServletResponse)
              ServletRequestDispatcher.java:269
         boolean com.evermind.server.http.HttpRequestHandler.processRequest(com.evermind.server.ApplicationServerThread, com.evermind.server.http.EvermindHttpServletRequest, com.evermind.server.http.EvermindHttpServletResponse, java.io.InputStream, java.io.OutputStream, boolean)
              HttpRequestHandler.java:735
         void com.evermind.server.http.HttpRequestHandler.run(java.lang.Thread)
              HttpRequestHandler.java:243
         void com.evermind.util.ThreadPoolThread.run()
              ThreadPoolThread.java:64
    ## Detail 0 ##
    java.lang.ArrayIndexOutOfBoundsException: 0
         oracle.jdbc.ttc7.NonPlsqlTTCColumn[] oracle.jdbc.ttc7.TTCAdapter.createNonPlsqlTTCColumnArray(oracle.jdbc.dbaccess.DBType[], oracle.jdbc.dbaccess.DBData[], int, boolean)
              TTCAdapter.java:256
         oracle.jdbc.ttc7.NonPlsqlTTCDataSet oracle.jdbc.ttc7.TTCAdapter.createNonPlsqlTTCDataSet(oracle.jdbc.dbaccess.DBType[], oracle.jdbc.dbaccess.DBData[], int, boolean)
              TTCAdapter.java:231
         void oracle.jdbc.ttc7.TTC7Protocol.doOall7(byte, byte, int, byte[], oracle.jdbc.dbaccess.DBType[], oracle.jdbc.dbaccess.DBData[], int, oracle.jdbc.dbaccess.DBType[], oracle.jdbc.dbaccess.DBData[], int)
              TTC7Protocol.java:1437
         int oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(oracle.jdbc.dbaccess.DBStatement, byte, byte[], oracle.jdbc.dbaccess.DBDataSet, int, oracle.jdbc.dbaccess.DBDataSet, int)
              TTC7Protocol.java:887
         void oracle.jdbc.driver.OracleStatement.doExecuteQuery()
              OracleStatement.java:2262
         void oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout()
              OracleStatement.java:2459
         int oracle.jdbc.driver.OraclePreparedStatement.executeUpdate()
              OraclePreparedStatement.java:435
         java.sql.ResultSet oracle.jdbc.driver.OraclePreparedStatement.executeQuery()
              OraclePreparedStatement.java:375
         void oracle.jbo.server.ViewUsageHelper.createViewAttributeDefImpls(oracle.jbo.server.ViewRowSetImpl)
              ViewUsageHelper.java:161
         void oracle.jbo.server.ViewObjectImpl.initViewAttributeDefImpls()
              ViewObjectImpl.java:3987
         int oracle.jbo.server.ViewObjectImpl.getAttributeCount()
              ViewObjectImpl.java:2654
         void oracle.jbo.server.ViewRowSetImpl.ensureStorage()
              ViewRowSetImpl.java:3090
         void oracle.jbo.server.ViewRowSetImpl.execute(boolean, boolean)
              ViewRowSetImpl.java:497
         void oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed()
              ViewRowSetIteratorImpl.java:2004
         oracle.jbo.Row oracle.jbo.server.ViewRowSetIteratorImpl.next()
              ViewRowSetIteratorImpl.java:1238
         oracle.jbo.Row oracle.jbo.server.ViewRowSetImpl.next()
              ViewRowSetImpl.java:2206
         oracle.jbo.Row oracle.jbo.server.ViewObjectImpl.next()
              ViewObjectImpl.java:4165
         java.lang.String or.jbo.html.DynamicListFieldRenderer.renderToString(oracle.jbo.Row)
              DynamicListFieldRenderer.java:79
         int or.jbo.html.jsp.datatags.RenderValueTag.doStartTag()
              RenderValueTag.java:51
         void dt.DataTableComponent._jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              DataTableComponent.jsp:128
         void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              HttpJsp.java:119
         void oracle.jsp.runtimev2.JspPageTable.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
              JspPageTable.java:302
         void oracle.jsp.runtimev2.JspServlet.internalService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              JspServlet.java:407
         void oracle.jsp.runtimev2.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              JspServlet.java:328
         void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              HttpServlet.java:336
         void com.evermind.server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              ServletRequestDispatcher.java:684
         void com.evermind.server.http.ServletRequestDispatcher.include(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              ServletRequestDispatcher.java:108
         void com.evermind.server.http.GetParametersRequestDispatcher.include(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              GetParametersRequestDispatcher.java:94
         void com.evermind.server.http.EvermindPageContext.include(java.lang.String)
              EvermindPageContext.java:287
         int oracle.jbo.html.jsp.datatags.ComponentTag.doStartTag()
              ComponentTag.java:75
         void dt.BrowseDT._jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              BrowseDT.jsp:44
         void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              HttpJsp.java:119
         void oracle.jsp.runtimev2.JspPageTable.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
              JspPageTable.java:302
         void oracle.jsp.runtimev2.JspServlet.internalService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              JspServlet.java:407
         void oracle.jsp.runtimev2.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
              JspServlet.java:328
         void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              HttpServlet.java:336
         void com.evermind.server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
              ServletRequestDispatcher.java:684
         void com.evermind.server.http.ServletRequestDispatcher.forwardInternal(javax.servlet.ServletRequest, javax.servlet.http.HttpServletResponse)
              ServletRequestDispatcher.java:269
         boolean com.evermind.server.http.HttpRequestHandler.processRequest(com.evermind.server.ApplicationServerThread, com.evermind.server.http.EvermindHttpServletRequest, com.evermind.server.http.EvermindHttpServletResponse, java.io.InputStream, java.io.OutputStream, boolean)
              HttpRequestHandler.java:735
         void com.evermind.server.http.HttpRequestHandler.run(java.lang.Thread)
              HttpRequestHandler.java:243
         void com.evermind.util.ThreadPoolThread.run()
              ThreadPoolThread.java:64

  • Dynamic list and thumb loops

    hello I try to create a dynamique list with thums loops associates (to describe a stuff to sell) and it work fine when I select from a list (URL parametre)
    But I would like to navigate in my detail page (with the loop thumb) whit the next or last link and I cant do it because the thumbs doesnt works
    Some help ? thanks you all and sorry for my french

    Hi Lorie,
    Taking it a step further
    interesting that you´re mentioning this -- because I was just in the middle of finding a workaround for the very same issue ;-)
    I actually did find a pretty easy solution, which basically goes like this:
    1) wrap the whole table *plus* any possibly added hidden fields located below this table in a "Show IF conditional region" behaviour -- but make sure to *not* include the buttons within the "KT_bottombuttons" div in here.
    2) as I assume that your "supplier_name" column holds a numeric value which equals the user´s "kt_login_id" Session Variable (which it should !), define the following conditions for the "Show IF conditional region" behaviour:
    Expression 1: choose "supplier_name" from the tNG recordset
    Condition: ==
    Expression 2: choose Session -> kt_login_id
    3) tick the Has ELSE option
    4) confirm with OK
    5) replace the default "has Else" message with something meaningful like "you can´t edit this record !"
    Switching to Code view and navigating to the very start of your "Show IF conditional region" should display something like this:
    if (@$row_rsqueryname['supplier_name'] == @$_SESSION['kt_login_id']) {
    When viewing the modified Dynamic Form in a browser, you´ll note that this solution will indeed display the form instances for all "authorized" records, whereas those form instances which don´t match the required credentials will be replaced with that "has else" message.
    BUT !! This solution has one major drawback which I haven´t been able to resolve yet :: when the Dynamic Form goes into Insert Record mode
    (means when you click the "add new" link in the Dynamic List), all inner form instances will display that "has else" message.
    The only workaround I currently can come up with is to have the List´s "add new" link point to a separate "add_new.php" page that´s going to insert a single record.
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Tutorial Announcement: exploring the Dynamic List´s Filter Conditions

    Hi all,
    based on Paul Taylor´s recent Dynamic List related "How do I filter by date range ?" question I just published yet another (pretty long and in-depth) tutorial which will not just explain the available SQL Comparison Operators for numeric and date/datetime fields, but also provides three live demos to help you get an idea on how powerful this is.
    This tutorial will also show you how to add a "date range" and "price range" search to your Dynamic List based on separate columns -- and the intermediate to advanced user will learn how to apply a "Range" search on just *one* column, what´s something that has finally become clear to me these days :-)
    Perma-URL: http://www.guenter-schenk.com/tutorials/tutorial.php?id=6
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

    Me too,<br />Thanks for your input :-)<br /><br /><[email protected]> wrote in message <br />news:[email protected]..<br />> Günter,<br />><br />> Thanks for these recent tutorials. I am definitely going to go thru them!<br />><br />> Shane

  • Dynamic h:dataTable with embedded h:selectBooleanCheckbox(es) & view state

    Hi
    I hope someone can help me. I'm trying to create a form somewhat like the one in allEvents.xhtml of the Virtual Trainer app in Ed Burns' JSF 2.0 book. My form is similar in that it uses an h:dataTable to display a set of rows that include an h:selectBooleanCheckbox. (In my case, the row also contains an h:inputText). So far, that's all working fine.
    However, to complicate things, I've added an <h:selectOneMenu immediate="true" onchange="this.form.submit()"/> to change the contents of the datatable based on the menu selection. This is where things start to go wrong. When the menu selection changes, the dataTable does update to show the new set of rows. However, there seems to be some state in the dataTable or the view that does not get reset when the content changes.
    This causes a couple of problems: When the initial menu selection is 'noSelectionOption' and the dataTable value is 'an empty list', then the menu selection changes, none of the input items' values are set when the form is submitted. It seems like dataTable remembered that the list is empty, and subsituting a longer list is confusing it. Or, is it the view that's confused because the number of input elements changed?
    When I initialize the menu selection to one that has a non-empty dataTable list associated with it, things work as desired, but changing menu selections again confuse things (checkboxes remain checked, rows beyond those in the initial list don't get their values set.) Hopefully, you're still with me.
    It seems like this should be do-able. What am I missing? I've boiled it down to a simple example. I appreciate your help. The code:
    selectitems.xhtml
    <html xmlns="http://www.w3.org/1999/xhtml"
    >
        <ui:fragment rendered="#{!empty facesContext.messageList}">
          <h:messages layout="list" />
        </ui:fragment>
        <h:form>
    <div>
          <h:outputLabel for="categories">Category</h:outputLabel>
          <h:selectOneMenu id="categories" tabindex="3" value="#{optionsBean.category}" immediate="true" onchange="this.form.submit()" required="true">
            <f:selectItem itemValue="#{optionsBean.categoryNotSelected}" itemLabel="-- select one --" noSelectionOption="true" />
            <f:selectItems value="#{optionsBean.categories}" />
          </h:selectOneMenu>
    <div>
    </div>
          <h:outputLabel for="optionlist">Options</h:outputLabel>
          <h:dataTable immediate="true" id="optionlist" value="#{optionsBean.optionData}" var="data" binding="#{optionsBean.optionTable}">
            <h:column>
              <h:selectBooleanCheckbox id="ctselect" value="#{optionsBean.optionSelected}" />
              <h:outputLabel for="ctselect" value="#{data.label}" />
              <ui:fragment rendered="#{!empty data.detailLabel}">
                <h:inputText id="ctdetail" value="#{optionsBean.optionDetail}" />
                <h:outputLabel for="ctdetail" value="#{data.detailLabel}" />
              </ui:fragment>
            </h:column>
          </h:dataTable>
    </div>
        <h:commandButton action="#{optionsBean.submit}" type="submit" value="Submit"/>
         <h:button outcome="/index" value="Cancel" />
        </h:form>
    </html>OptionsBean.java
    package org.example;
    @ManagedBean
    public class OptionsBean
      int category = getCategoryNotSelected();
      private UIData optionTable;
      private DataModel<OptionTableRow> optionData = new ListDataModel<OptionTableRow>();
      private List<OptionTableRow> optionList = new ArrayList<OptionTableRow>();
      // static data for demonstration use
      private static List<SelectItem> categories = new ArrayList<SelectItem>();
      private static List<OptionTableRow> sizeOptionList = new ArrayList<OptionTableRow>();
      private static List<OptionTableRow> colorOptionList = new ArrayList<OptionTableRow>();
      private static List<OptionTableRow> styleOptionList = new ArrayList<OptionTableRow>();
      static
        OptionsBean o = new OptionsBean();
        sizeOptionList.add( o.new OptionTableRow( "small" ) );
        sizeOptionList.add( o.new OptionTableRow( "medium" ) );
        sizeOptionList.add( o.new OptionTableRow( "large" ) );
        sizeOptionList.add( o.new OptionTableRow( "other", "specify" ) );
        colorOptionList.add( o.new OptionTableRow( "red" ) );
        colorOptionList.add( o.new OptionTableRow( "green" ) );
        colorOptionList.add( o.new OptionTableRow( "blue" ) );
        colorOptionList.add( o.new OptionTableRow( "other", "specify" ) );
        styleOptionList.add( o.new OptionTableRow( "modern" ) );
        styleOptionList.add( o.new OptionTableRow( "traditional" ) );
        categories.add( new SelectItem( 1, "size" ) );
        categories.add( new SelectItem( 2, "color" ) );
        categories.add( new SelectItem( 3, "style" ) );
      public OptionsBean()
    //    setCategory( getCategoryNotSelected() );
        setCategory( 3 );
      public int getCategoryNotSelected()
        return -1;
      public boolean isOptionSelected()
        OptionTableRow row = (OptionTableRow) optionTable.getRowData();
        return row.selected;
      public void setOptionSelected( boolean selected )
        OptionTableRow row = (OptionTableRow) optionTable.getRowData();
        row.selected = selected;
      public String getOptionDetail()
        OptionTableRow row = (OptionTableRow) optionTable.getRowData();
        return row.detail;
      public void setOptionDetail( String detail )
        OptionTableRow row = (OptionTableRow) optionTable.getRowData();
        row.detail = detail;
      public String submit()
        int count = 0;
        for ( OptionTableRow opt : optionList )
          if ( opt.selected )
            count++;
        if ( count == 0 )
          FacesContext fc = FacesContext.getCurrentInstance();
          fc.addMessage( null, new FacesMessage( FacesMessage.SEVERITY_ERROR, "At least one option must be selected", null ) );
          return null;
        return "showoptions";
      public DataModel<OptionTableRow> getOptionData()
        optionData = new ListDataModel<OptionTableRow>( optionList );
        optionData.setRowIndex( -1 );
        return optionData;
      public void setCategory( int category )
        this.category = category;
        switch ( category )
          case 1:
            optionList = sizeOptionList;
            break;
          case 2:
            optionList = colorOptionList;
            break;
          case 3:
            optionList = styleOptionList;
            break;
      public class OptionTableRow
        private String label;
        private boolean selected = false;
        private String detailLabel = null;
        private String detail = null;
        public OptionTableRow() { }
        public OptionTableRow( String label )
          this.label = label;
        public OptionTableRow( String label, String detailLabel )
          this.label = label;
          this.detailLabel = detailLabel;
    // getters and setters omitted for brevity
      }

    flyeminent wrote:
    However in my particular case, the dynamic list is not known until the user choose to view a table. Then move the call from the getter to the bean's action method.

  • Report -- filter with selection list -- show all values after select page

    Hello!
    I have the following problem:
    - I have a report
    - this report can be filtered with a selection-list
    - the selection list is based on dynamic LOV and has a null-value
    - I added the code of the report the following, to filter the report after choosing a value of the selection list:
    ... and (instr(type, decode(:P8_FILTER_type, '%null%',type,:P8_FILTER_type)) > 0)
    This works very well.
    But my problem is: When the user logs out and the next time, he logs in, the selection list shows " --- show all values --- " (my null-display-value) and the report is empty "no values found".
    ---> I want to show the first time, the page is selected ALL the values of the report. (this is now only possile if I press the button which belongs to the selection list)
    I hope, somebody understands my problem.
    Thank you so much,
    LISA

    Hello Lisa,
    The first time it's probably NULL.
    So what you can do in your where: (instr(type, decode(NVL(:P8_FILTER_type,'%null%'), '%null%',type,:P8_FILTER_type)) > 0)
    Off topic: I also wonder if that where clause can't be simpler? Do you rely need the instr?
    Regards,
    Dimitri
    http://dgielis.blogspot.com/
    http://www.apex-evangelists.com/
    http://www.apexblogs.info/

  • Referencing a "checked record" from my ADDT Dynamic List using a SPRY Menu

    I have just posted a Beta of my site to:
    http://www.clearwave.biz/Beta/T1COElogin.cfm
    - Username is: Beta
    - Password is: 123
    - Once you are logged in you should see the ADDT list w/one
    order listed.
    - Click on the Printer icon & the Order Agreement will
    open in PDF. (this works fine)
    - Click on the InfoSheet link & the Report will open in
    PDF as well. (this works fine)
    - Everything works fine if you use the links on the same line
    as the record.
    - But if you check the CheckBox on the left, then choose the
    Spry Menu above, Reports/T1 Agreement the report will not work?
    Question: What should the Link be to reference the checked
    item below, pass the CustID value to the report & print the
    PDF?
    (Note: the CF report has the following line in the SQL:
    (tblT1OrderProcessing2.T1CustID = #param.T1CustID#) and the report
    prints fine in Report Builder if I pass it the T1CustID, as well as
    if I click the links on the same line as mentioned above, so this
    is just an issue of grabbing the CustID value from the checked line
    & passing it to the report link in the Spry menu)
    Here is a visual picture of my Dynamic List page:
    http://cerberus.clearwave.com/jerry/Order_Management_Main_Page.jpg
    Thanks in advance for the help,
    jlig

    Here is the Report URL that works perfectly when clicking the
    Printer icon on the right of my List:
    http://www.clearwave.biz/Beta/reports/T1_Service_Agreement.cfm?T1CustID=1508
    and the link to the InfoSheet:
    http://www.clearwave.biz/Beta/reports/T1_Information_Sheet.cfr?T1CustID=1508
    Both of these work perfectly by grabbing the T1CustID value
    of 1508 from the line.

  • Dynamic list of values in CR 2008 - request of login to database

    I am using CR2008 with VB2005. I created simple application which generate report on different SQL Server 2005 databases.
    Report uses OLE.DB connection to SQL Server, I pass logon information in VB using "SA" username and password. The same simple report works great on different databases with one exception: if parameter (dynamic list of values) is used in report it runs correctly only on database it was created (connection to this database is saved in report and can be seen in Database->Set Datasource Location). Changing connection to other databases in VB during runtime causes CR to ask for username and password (in standard parameter window). It looks, like Crystal have one connection for report and the other for dynamic list of values parameter. I pass connection information to report using ConnectionInfo(). I loop through alll tables in report and apply connection:            
    For Each crTable In crTables
                    crTableLogOnInfo = crTable.LogOnInfo
                    crTableLogOnInfo.ConnectionInfo = crConnectionInfo
                    crTable.ApplyLogOnInfo(crTableLogOnInfo)
    Next
    I tried to pass connection information also to parameter but I couldn't find such possibility.

    This is a known issue (Tracking number is ADAPT01333806.) and a note has been written,  unfortunately it is not yet published. Below is the note content, including a work-around / resolution. You may also want to try FP 2.3, see that helps. (I'll break this post into two as I'll loose the formatting if I don't.
    Reproducing the Issue
    Use Crystal Reports 2008 SP2 to create a report with dynamic parameter(s)
    Use the following code from the Crystal Reports SDK for VS .NET
    Dim crDatabase As Database
    Dim crTables As TablesDim crTable As Table
    Dim crTableLogOnInfo As TableLogOnInfo
    Dim crConnectionInfo As ConnectionInfo 
    crReportDocument.Load("<path>")
    crReportDocument.Refresh()
    crConnectionInfo = New ConnectionInfo()
    With crConnectionInfo   
         .ServerName = "<New Server Name>"   
          .Password = "<password>"
    End With
    crDatabase = crReportDocument,Database
    crTables = crDatabase.Tables
    For Each crTable In crTables     
         crTableLogOnInfo = crTable.LogOnInfo     
         crTableLogOnInfo.ConnectionInfo = crConnectionInfo     
         crTable.ApplyLogOnInfo(crTableLogOnInfo)
    Next
    CrystalReportViewer1.ReportSource = crReportDocument
    The above code works with Crystal Reports 2008 SP 1

Maybe you are looking for

  • Premiere Pro CC 2014.0 has stopped working

    I have Premiere Pro CC 2014.0 installed I can't install 2014.0.1 because it's simply not available despite being told the contrary from Adobe Communities moderators. I'm using Windows 8.1 There is no actual error message from premiere, the message co

  • Strange Pacman Warning - Should I be concerned? [solved]

    While updating today I got a warning that said "warning: warning given when extracting .INSTALL (Write failed)" several times.  It claimed to upgrade everything though, and the log confirms this.  Just wondering if anyone else had this warning and wh

  • Networking Software for Users

    Hi I would like to find out if there is any way I can limit internet cap's to network users in the Active Directory? Like for example the users in the Teachers group under the active directory gets an internet cap of 1GB data per month, and users in

  • Windows 8.1 - various Skype problems

    My first post, I can't find a solution for these problems, hopefully someone can help. I've been helping a friend with her Windows 8.1 PC and various issues she has had with it. The one area that seems to be a persistent issue is using Skype. The iss

  • Is there some xml based web site....?

    Who can tell me the xml based web site in the internet? Thanks !