JSTL Expression Support For All Attributes

There are mentions of JSTL expression support for the
modelReference attribute within the specification (although I have found problems in the EA3 in this regard), but
but I did not find any mention of supporting the same for all
attributes. To me, this seems very important, especially for
attributes like "onClick" where I might want to do something special:
<c:foreach ...
<h:graphic_image modelReference="model.myImage" onClick="onDelete({status.index})"/>
</c:foreach>
In the case above, this would allow me to call a single javascript function that triggers a delete action based on the current index within a list based view.
There are many cases that I can think of that this would be incredibly useful.

maybe you have forgotten the $
onClick="onDelete(${status.index})"
or I've misunderstood something...

Similar Messages

  • Feature Request -Support For All Library Assets Formats

    I would like to request an update to the application to allow full support for all Library asset formats.
    I have recently started using Comp CC to draft layouts. I have found that none of my graphics Library assets can be used due to their format type. This has limited the usefulness of Comp CC as many of my assets are Illustrator vector graphic.

    Thanks for opening our eyes. I spent a good hour trying to place vector graphics into an image place holder before I posted.
    In my defense I find this method less than intuitive. I don't understand Adobe's thinking on separate methods of placing vector graphics & raster graphics. I personally treat all graphics the same vector or raster the are both graphics. This has been the standard workflow for placing image into DTP apps since the beginning.

  • Generate public names for ALL attributes?

    Hi all,
    What suggestions do you have to generate public names for ALL attributes in OPM 10.4?
    We're trying to pretty up the decision report by setting invisible ALL attributes, except for: the top goal, structural reference number, and base data.
    Seems like the only way to get it done is to go in the build model and manually create public name one-by-one.
    Thanks,
    Isamu

    Hi Isamu,
    It sounds like you could use the silent property to customise your decision report.
    If Attribute A is proven by B, C and D, you can set A to silent and it will hide B, C and D from a decision report...there is no need to individually set B, C and D to invisible.
    Check out the help file here http://docs.oracle.com/html/E27987_01/Content/Decision%20reports/Hide_information_in_decision_report.htm
    What's really helped me in the past is creating a Visual Browser file (or multiple files if your rulebase is large) of the rules, and identifying the attributes you want in the decision report by colour coding the visualization. After you have the visual picture, it becomes much easier to see which attributes you should set to silent & invisible to achieve the correct report.
    Let me know if this helps!
    Cheers,
    Ben

  • Size limitation for all attributes in user objects in Active Directory????

    hi geeks , i wanna know maximum size limit of an user objects attribute in   active directory ... like max amount of character first name attribute can hold ... Thank in advance..

    You can use ADSI Edit to view the properties of the attributes in the Schema container of your AD. In the Schema container you can select an attribute, like Company, right click, select properties, and find the rangeUpper property of the attribute. This
    is the maximum length in characters (or bytes). You can also use dsquery to retrieve rangeUpper for an attribute. For example:
    dsquery * "cn=Schema,cn=Configuration,dc=MyDomain,dc=com" -filter "(LDAPDisplayName=streetAddress)" -attr rangeUpper
    where your domain is MyDomain.com. This finds the maximum length for the "street address" attribute. A few values in my test domain (the values can be modified, so these are the defaults):
    company                      64
    streetAddress              1024
    physicalDeliveryOfficeName  128
    initials                      6
    st                          128
    postOfficeBox                40
    name                        255
    cn                           64
    You can use the first two spreadsheets on this page to help identify attributes in AD (with no Exchange):
    http://www.rlmueller.net/UserAttributes.htm
    The first spreadsheet documents the attributes corresponding to the fields on most of the tabs of ADUC. For example, "st" is the attribute for state, "physicalDeliveryOfficeName" for the field labeled "office". You need the
    LDAPDisplayName's of the attributes, like I used in the dsquery command above. The second spreadsheet documents all attributes in AD with more information, like the syntax and which class each applies to.
    Richard Mueller - MVP Directory Services

  • Network LOD support for All Paths between 2 nodes

    In the in-memory Network API, there is a method NetworkManager.allPaths. This method returns available paths between 2 nodes with possible constraints. I am looking for a similar method in the LOD NetworkAnalyst class and am not finding it. Is there something similar?
    Or, here is what I want to do, and maybe there is a better way to do it. I am using NDM to data-mine our roadway inventory. Its a big network, whole state of Ohio, all roads--both local and state. One of the things I am trying to identify are what we call co-located routes. These are routes that have multiple names, for example, the ohio turnpike is both Interstate 80 and 90 on the same bed of road. In our line work, where these routes are co-located, we would only have a record for 80. The portion of 90 that we would have would be only in the case where it is NOT co-located with 80; in other words, 90 has a gap where it is co-located with 80. This is true for all our roads. In this case, we call 80 the primary, and 90 the secondary. We can have infinite secondaries (our worst case scenario is 6 routes overlapping). My situation in many cases, is I know that a route becomes secondary, I know how long the secondary section is, but I don't know what the primary is, so I want to discover it.
    Given these assumptions, I should be able to ask for all paths between 2 nodes that exactly match a cost (the overall length of the overlap). This should be simple with NDM. I provide a begin node, an end node, and a target cost, possible some traversal constraints, and it returns me the candidate paths. I thought that NetworkAnalyst.withinCost would do this, but as I discovered from the Stored Procedure docs, it returns the shortest path within the given less than or equal to the given cost--not necessarily the path I am looking for.
    Any advice? FYI, I am using Oracle 11GR2.
    Thanks, Tom

    So what I have come up with so far, is that the NetworkAnalyst trace methods provide this type of functionality. For example, with traceOut, I provide a start node, distance and some traversal constraints, and it returns me all paths less than or equal to the specified distance. What was throwing me a little with this method was the application of the LODGoalNode. I was thinking that the goal node would allow me to specify a particular node to be a requirement for the entire path such that a resulting path would have my start node, and end on a particular goal node with links in between. That IS NOT how it works. The LODGoalNode.isGoal is tested for EACH link that is part of a potential path, and only if this method returns true, is it added to the resulting path list.
    In my case, if I specified a start node and implemented the LODGoalNode.isGoal method such that it tested the provided end node for equality to my target node, the result would be that only links containing that specific goal node in the link. Anyway, so in my implementation, I leave the goalNode of the traceOut method null.
    So I have a new question. Is there a way to test when a path has been found, and then apply some constraints on it (PathConstraint)? This would be useful in cases where you get many paths returned to you, but in addition to a maximum distance constraint, you also want to apply for example a minimum distance on the resulting path, or that this is only a valid path if it ends on a particular node. Maybe there is a way to do this, and I haven't figured it out yet. The old AnalysisInfo class used to have a way to query the current path links and nodes, that would be useful in the LODAnalysisInfo class to help accomplish this perhaps? This feature isn't critical, because I can filter the list of paths returned from traceOut on my own after they are returned, but it would add some efficiency, especially when a large amount of paths are returned.
    Thanks, Tom

  • Disable weak ciphers and support for all SSL protocols prior to v3.

    I am very new to Weblogic and I need a little help with the SSL configurations. I received a security audit back and discovered that Weblogic's SSL is running weak ciphers and also supporting unacceptable versions of SSL (we require a minimum of SSLv3 and need to deny connections with anything less). That said, can anyone point me in the right direction for disabling weak ciphers as well as forcing support for SSLv3 and up only for client connections. I am running Weblogic 10.3.
    Edited by: David Pulliam on Jan 26, 2011 8:31 AM

    Hi David,
    -Dweblogic.security.SSL.protocolVersion=SSL3 —> Using this JAVA_OPTION will allow Only SSL V3.0 messages are sent and accepted. So add the mentioned JAVA_OPTION in the server start script along with the below OPTION:
    -Dweblogic.security.disableNullCipher=true
    Also you can do the following in your "config.xml" to make sure that the Weblogic will not accept weak and medium weak passwords:
    <ssl>
           <enabled>true</enabled>
          <ciphersuite>TLS_RSA_WITH_RC4_128_SHA</ciphersuite>
          <ciphersuite>TLS_RSA_WITH_RC4_128_MD5</ciphersuite>
          <hostname-verification-ignored>true</hostname-verification-ignored>
          <listen-port>7002</listen-port>
          <server-private-key-alias>aliasHere</server-private-key-alias>
          <server-private-key-pass-phrase-encrypted>encryptedpassphraseHere</server-private-key-pass-phrase-encrypted>
    </ssl>Thanks
    Jay SenSharma
    http://middlewaremagic.com/weblogic (Middleware magic Is Here)

  • DAQmxBase for Mac OS X: where's the support for all DIO ports?

    As of version 1.5.0f2 of the NI-DAQmxBase release for Mac OS X, only port0 is supported for digitial IO. I would like to have the full functionality of my E-series board; does anyone know if a new release is in beta now or will be released soon that, you know, supports more than 1/4 of the board's DIO functionality? Are there workarounds one can employ with the current version? Thanks in advance.

    There are no current plans to add support for the extended digital on the NI 6025E.  The architecture is unique to that board and the newer M Series boards now have an extended number of digital lines. Another option is to use an E series board and the PCI-DIO-96 which is also supported in NI-DAQmx Base.
    With that said, we continually add features based on customer requests.  Do you have a lot of these systems?  Do other people out there want the extended digital on the 6025E supported?

  • Single Driver for ni-rio 9146 without overhead by included support for all similar HW

    I recognized that the driver package for NI-Rio 2014 is about 4GB in size but i need only support for NI-Rio 9146.
    Can i download also a single specific driver?

    Labuser16383 wrote:
    I recognized that the driver package for NI-Rio 2014 is about 4GB in size but i need only support for NI-Rio 9146.
    Can i download also a single specific driver?
    No.
    This is the same as with the NI DAQ boards. One has download the entire NI-DAQmx which is several gigabytes in size.

  • My iPad say document not supported for all in one 6450 printer

    I have installed the e print for my iPad and while trying to print, it says document not supported. I have a wireless All in One 6450 Printer

    Eddy955, hope you are doing well and welcome to the HP forums;
    What document are you trying to print and what application are you using to print it.
    If you are using ePrint, bear in mind that there some limitations to the files that you can print this are the limitations in type of document and size.
    "supported format:
    Microsoft Word
    Microsoft PowerPoint
    Microsoft Outlook
    Microsoft Excel*
    Text files (.txt)
    PDF
    Images (bmp, jpg, png, gif, tiff)
    also there are size limitations for this docs
    the document cannot be larger than 5 mb's and it cannot be more that 10 attatchments, for a more comprehensive list go to this link.
    https://h30495.www3.hp.com/help/
    Do not hesitate to let me know if you need more assistance. I will do my best to help you.
    RobertoR

    You can say THANKS by clicking the KUDOS STAR. If my suggestion resolves your issue Mark as a "SOLUTION" this way others can benefit Thanks in Advance!

  • Framework support for all windows operating systems

    Hi!
    I want to build a single desktop app for windows xp, windows 7, windows vista and windows 8. someone told me that a desktop app build in visual studio 2013 will not run on xp.
    Which framework version or visual studio version should I use to build a desktop app which should run on all mentioned operating systems?

    Using .net 3.5 is pretty limiting.
    I would have thought the lifespan and percentages of win xp and vista devices is so small that they might not be worth supporting.
    This is the decision taken by the client on my current ( end consumer targeted ) project.
    Hope that helps.
    Recent Technet articles:
    Property List Editing ;  
    Dynamic XAML

  • [faces] No support for "value" attribute of h:grap

    I'm experimenting with NitroX for JSF and in trying to edit an existing JSF page (one created in Java Studio Creator), I discovered that the NitroX visual designer will not display the image unless the "url" attribute is used for the h:graphicImage tag. The spec says that "url" is an alias for the "value" tag, which appears to be the prefered tag. I'm surprised both aren't supported. Any plans for this in the future?

    Yes, this is a known issue and should be fixed in the future.

  • SVG Support for Dataset Attribute

    This is really a feature request, as I realize that the dataset attribute is only defined for HTML ( https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement.dataset ) . But it would be very nice if that capability were extended into SVG as well, as it is for Safari and Chrome. For example, p.dataset.camelCasedName is understood by Firefox but svg.dataset.camelCasedName is not, returning the error message “TypeError: svg.dataset is undefined”. Safari and Chrome understand both.

    hello aanderson, this is a primarily community-run support forum so it's probably not the right place to request features (we cannot implement any features & devs won't read here).
    please either use https://input.mozilla.org/feedback for general feedback or if you feel that it's a missing feature in the browser file a bug at bugzilla.mozilla.org.

  • Exchange Connector 9.1.1.1.0 -Support for multivalued attribute

    Hi,
    I am currently on OIM 9.1 BP07 + weblogic 10.3 + RHEL5.
    Currently I have a mutlvalued attribute that needs to be reconciled, when I use OOTB reconciliation task i get column not found exception on child table which is configured to hold multivalued attribute.
    1. Is OOTB exchange connector supports Multivalued attribute reconciliation?
    2. If no, how can i populate the child form during custom reconciliation process?
    Thanks

    Hello,
    This is the Berkeley DB forum. As such you can try your question in the General Database forum at:
    General Database Discussions
    Thanks,
    Sandra

  • Localization support for Metadata/Attributes in WebCenter Content

    Hi,
    One of the Metadata/attributes for an WCC item is dDocTitle which can be supplied by user while creating the object in WCC.
    Can the value of this metadata be localized for different locales?
    TIA
    -Nik

    Yes, absolutely.
    Actually, since you want to localize a standard metadata field, it will already be customized for you (just log in a different language). You might want to adjust the translation. There are several way how to achieve that:
    a) the translation is defined in language files. It used to be .htm, but in 11g the file extension has been changed. A language file has a structure as follows:
    <@key=translation@>, the keys mostly follow a pattern like wwXyz (e.g. wwDocTitle).
    Unfortunately, sometimes the same string is displayed using keys - therefore, you need to find which key is the right one for a page you want to customize.
    If you find it, you may want to create your own custom component with a html resource, where you can override the translation with your own strings. It is a bit trickier if you want to do it for several languages at once (then, the language is taken from the name of the file, or the key can be a bit more complex - you will find examples for that in your system)
    b) Another way how to change the displayed label is a rule (profile). This can be useful, if you want to use the same metadata field differently in a different context (e.g. there is a field called "Address", but you want to display "Company Address" for company-related items, and "Personal Address" for person-related items)
    c) (not relevant to your question) for custom fields you can also override the displayed label in Configuration Manager. If you want to have them localised, you will have to use a key and provide the translations.

  • JAXB support for "any" attribute

    I have a question related to JAXB.
    Will JAXB be able to handle <xs:any minOccurs="0"/> Tag , when building the java classes. Will there be any defautl type to which this tag will be mapped.

    Not the JAXB 1.0 included with JDeveloper 10.1.3.
    JAXB 2.0 included with JDeveloper 11g supports xs:any.
    Edited by: dvohra on Mar 12, 2009 10:59 AM

Maybe you are looking for