Is it possible to have a selectManyListBox within ui:repeat ?

Can I have a selectManyListBox within a <ui:repeat> or that is completely wrong ? I can displayed the values properly , however I cant retrieve the selected items in my list.
An error is displayed "myform:j_idt117:0:j_idt119:0:_t121: Validation Error: Value is not valid"
<ui:repeat value="#{row}" var="t" >
<h:selectManyListbox value="#{myBean.selectedItems}">
<f:selectItem itemValue="#{t.attributeName[1]}"
itemLabel="#{t.attributeName[1]}" />
<f:selectItem itemValue="#{t.attributeName[2]}"
itemLabel="#{t.attributeName[2]}" />
</h:selectManyListbox>
</ui:repeat>

You can try using SSRS cascading parameter.
http://technet.microsoft.com/en-us/library/aa337498(v=sql.105).aspx
http://markvsql.com/2013/08/ssrs-cascading-multi-value-parameters/
Regards, RSingh

Similar Messages

  • Possible to have if statement within filters code?

    Hi
    I have some filters set up, and have assigned some global vars to them, which I then use in my Filters code to display the filters:
    myText:Filters [globals.data.glow1, globals.data.stroke1, globals.data.shad1]
    Works perfectly.
    Now I want to assign a global var to each global filter var to determine if it should be shown or not.  So...
    globals.data.glow1On = true;
    globals.data.stroke1On = true;
    globals.data.shadOn = true;
    ... and then somehow incorporate these new vars into an if conditional to determine if the filter global vars get included in the myText:Filters code.
    However, I cannot seem to code the if conditional into the myText:Filters code correctly.
    I even tried seperating it out like so:
    if (globals.data.glow1On = true) {myText:Filters [globals.data.glow1];
    if (globals.data.stroke1On = true) {myText:Filters [globals.data.stroke1];
    if (globals.data.shad1On = true) {myText:Filters [globals.data.shad1];
    But Flash only makes the last filter true (kinda makes sense to me now why).
    Is there a way to do it without having to make an if conditional with 7 permutations?
    Cheers
    Shaun

A: Possible to have if statement within filters code?

You are not coding the conditional properly.  "=" is for assignment, "==" is for comparing equality.
if (globals.data.glow1On == true) {myText:Filters [globals.data.glow1];
if (globals.data.stroke1On == true) {myText:Filters [globals.data.stroke1];
if (globals.data.shad1On == true) {myText:Filters [globals.data.shad1];
Also, a conditional evaluates whether or not something is true, so for Boolean values you do not need to explicitly compare them...
if (globals.data.glow1On) {myText:Filters [globals.data.glow1];
if (globals.data.stroke1On) {myText:Filters [globals.data.stroke1];
if (globals.data.shad1On) {myText:Filters [globals.data.shad1];
Lastly, for what I see that you showed, the conditionals are all missing their closing brackets, and while you can use them, the brackets are not needed for single command conditionals...
if (globals.data.glow1On){ myText:Filters [globals.data.glow1]; }
if (globals.data.stroke1On){ myText:Filters [globals.data.stroke1]; }
if (globals.data.shad1On){ myText:Filters [globals.data.shad1]; }
OR
if (globals.data.glow1On) myText:Filters [globals.data.glow1];
if (globals.data.stroke1On) myText:Filters [globals.data.stroke1];
if (globals.data.shad1On) myText:Filters [globals.data.shad1];

You are not coding the conditional properly.  "=" is for assignment, "==" is for comparing equality.
if (globals.data.glow1On == true) {myText:Filters [globals.data.glow1];
if (globals.data.stroke1On == true) {myText:Filters [globals.data.stroke1];
if (globals.data.shad1On == true) {myText:Filters [globals.data.shad1];
Also, a conditional evaluates whether or not something is true, so for Boolean values you do not need to explicitly compare them...
if (globals.data.glow1On) {myText:Filters [globals.data.glow1];
if (globals.data.stroke1On) {myText:Filters [globals.data.stroke1];
if (globals.data.shad1On) {myText:Filters [globals.data.shad1];
Lastly, for what I see that you showed, the conditionals are all missing their closing brackets, and while you can use them, the brackets are not needed for single command conditionals...
if (globals.data.glow1On){ myText:Filters [globals.data.glow1]; }
if (globals.data.stroke1On){ myText:Filters [globals.data.stroke1]; }
if (globals.data.shad1On){ myText:Filters [globals.data.shad1]; }
OR
if (globals.data.glow1On) myText:Filters [globals.data.glow1];
if (globals.data.stroke1On) myText:Filters [globals.data.stroke1];
if (globals.data.shad1On) myText:Filters [globals.data.shad1];

  • Is it possible to have an event within an event?

    I have an event named for my niece, and I have all the pictures of her in it. I'm wondering if it's possible to have events within events, so I can just have 1 event with her name, then when you click on it, sub-events named things like "Christmas" "Thanksgiving" etc.?

    no - events are time based and can not be nested - use albums and smart albums which can be placed in folders and folders can be placed in folders for that kind of organization - Europe folder containing France and Italy folders each containing cities as an example
    Events are just a very basic and inflexible organization for people to start with - albums, folders, keywords and ratings are where the power is
    LN

  • Possible to have dynamic content within a campaign?

    Is it possible to have dynamic content elements within an email campaign so that different content appears based on a recipient's interests?

    Hey there, Nope.
    BUT
    See the BC Blog

  • Is it possible to have an attachment within a pdf doc print at the same time the main doc prints?

    Okay, so this may be kind of a weird question.  We have some users who are wanting to add a page to an already existing xml document and correct me if I'm wrong, but I've read that it's not possible to add/delete pages from a pdf that's in xml format.  Since that is not possible, I have added the page to the xml document as an attachment.  Now what I am wanting to know is if it is possible to have the attachment print out at the same time as the main document.  We are using the latest version of Adobe Reader and I have access to Adobe Acrobat Standard 9 & 10 and then I have access to Adobe Acrobat Pro 7.  I've been unable to find anyting via google or by searching this forum so hopefully I'll draw out some kind of smart cookies and we'll get this figured out.  I appreciate any and all input!
    Thanks,

    I know of no way to do this with Reader or XML.

  • Possible to have an applet within an applet?

    Hi. I am designing a GUI using swing. It has a Card layout ie. different tab screens. On one of them I want to implement a pannel within which the user can scribble.
    I have the code for a scribble applet. can I run that applet within a pannel in my GUI?
    how?
    or if not, how can place the scribble code in my GUI code to work only in that pannel on one of the tab screens?
    Yhis has me rightly puzzled, and I am sure there is a simple answer. I would appreciate any help on this matter,
    Thanks...

    I haven't tried this but it seems like it ought to work:
    Since Applet extends Panel, just add an instance of the Applet to your display as you would any other panel, then call its init() and start() methods.

  • Is it possible to have parameters within planning Sheets

    Hi - Is it possible to have paramaeters withing planning Sheets. I was able to save a macro successfully within a planning sheet. But wanted to know if we can pass parameters within a planning sheet.
    Thanks,
    Venkat

    You can pass parameters upto some extent. If you want to filter the MDX query then you can use InterlacePlanner.AddFilter method. e.g. InterlacePlanner.AddFilter "Customer", "ABCD"
    where ABCD is Customer dimension member.

  • Possible 2 have "page turner" or "page flipper" 'applications within IWeb ?

    *Possible 2 have "page turner" or "page flipper" 'applications within IWeb ?*
    Link: [http://www.panik.com/index.php?do=entersite]
    http://www.panik.com/index.php?do=entersite
    Hopefully I have inserted a link to the type of application I mean above.
    Otherwise please copy and paste into your browser
    PLEASE Please if any of you know or can make suggestions - I would really appreciate some info/ input.
    I am a fine artist and would love to have this feature in my IWeb website.
    thanks to any contributors
    best wishes
    Aine
    in chilly Edinburgh, UK

    The page size there appears quite small and, after the initial novelty of turning the pages, it could become tiresome leafing through many images.
    Why not use the new .Mac Web Gallery and link to it from your iWeb page?
    http://gallery.mac.com/emily_parker#100388&bgcolor=black&view=mosaic&sel=0
    ...On that page at lower left the viewer can choose from four different display modes and the Slideshow mode displays in +full screen+. Here are details about .Mac Web Gallery:
    http://www.apple.com/dotmac/webgallery.html

  • HT1918 is it possible to have two different password within one iTunes account?  one to log in with and a different one to use when making a purchase?

    Is is possible to have two different passwords within itunes? one to log in with and a different one to make purchases with?

    The system is not setup to provide that kind of sservice.  If making certain purchases it does ask for an answer to one of your security questions, so that provides a little more security for some purchases, just not all.

  • Possible to Have ToC Default to Show Only Top Level (collapse sublevels)?

    Howdy!
    I'll bet I'm not the only one wishing for this.  Let's say you're using Captivate 4's Table of Contents feature with a longish movie of Cp slides, which is chunked into bite-size sections content-wise.  In the ToC, though, you can't mimic that same organization scheme; at least, the learner would first need to collapse all the ToC folders you've created so they see only the top-level listing.
    This can be a critical issue:  keeping the at-first-glance list in the ToC brief enough to be inviting to learners, yet allowing learners to drive which details are currently visible.
    A movie's topical hierarchy could be along these lines, for example ...
    Section 1 - National Brands
    What are National Brands?
    Why Are They Important to Our Business?
    Working with Nat. Brands
    Practice Your Knowledge
    Section 2 - International Brands
    What are International Brands?
    Why Are They Important to Our Business?
    Working with Intl. Brands
    Practice Your Knowledge
    You'd like to organize the ToC to show only the section titles (1st level) and to suppress the 2nd-level detail (slide titles) until the learner chooses to expand the folder to see those details.
    I've tried things like grouping the slides into sections in the Storyboard view and organizing the slides into sections strictly within the ToC -- both to no avail.
    Has anyone solved for this need yet?
    I'm all ears, and you'd be doing learners of the world a huge favor.
    Thanks!

    Hi, Jim.
    Thanks for being 'on the case' and looking into this so quickly.  Your
    findings are encouraging, although my user base is generally working with
    IE 6 and FP8 or 9.
    Since the only thing I may influence is getting  IT to help push out FP10,
    I'm hoping it's more of a player- than a browser-version issue.
    I'll test things out by Monday and let you know the results.  Wish me luck!
    Dave
                                                                                    From:       Jim Leichliter <[email protected]>                                                                               
    To:         Dave Tressler <[email protected]>                                                                               
    Date:       03/26/2010 06:02 PM                                                                               
    Subject:    Possible to Have ToC Default to Show Only Top Level (collapse
                  sublevels)?                                                                                
    Dave,
    I just tested this on my local web server and it worked fine.  I created a
    blank project with 8 slides.  Created my TOC with grouping... 2 slides in
    each group.  I turned on self paced learning.  I tried with and without the
    widget and it picked up where I left off in either case.  See
    https://docs.google.com/leaf?id=0B86WuEq6SVwRNWIwMjhjODctMjE2Yy00MWE2LWI5YzEtMGQxYzNjOWQ0Z mI2&hl=en. 
    I published using FP10 and IE8 to view.  Notice any difference between
    your project and this one?
    Thanks,
    Jim Leichliter

  • E72 - Possible to have more than 2 email accounts ...

    E72
    So is it possible to have more than 2 email accounts shown at the home screen?
    Currently one is set as primary and the other as secondary.. I have 4 email addresses I want shown at the main screen..
    Please help.

    jane999 wrote:
    Basically I want to share A1 with somebody else and we both use yahoo email. So I need to sign out before she can sign in. Any way to do that? 
    Thanks in advance for any help!
    You didn't specify whether you are using the "official" Yahoo mail app, or some other email application like K-9.  But either of those allow for the specification of multiple email accounts, and you don't even really need to sign in/out.  Once you set up the accounts within the app, just select the email account that you want to view.  It might be a little more problematic if you want to prevent each other from being able to see the other's email, however.

  • Is it possible to have two apple loans under one account?

    So back in June my mum took up apple finance so I could get a macbook and pay her each month (I was under 18 at the time and have no credit history) and that went through within a minute no issues..
    Now I face another issue, I want the new iphone 5s but still within my current iphone 5 contract I can't get out of but that aside my question is:
    Is it possible to have two apple loans under one bank account? (the iphone one being much smaller than the existing mac loan)
    If not, I'll simply have to save up £700.
    Thanks~

    Hi babowa,
    The reference to two Apple loans led me to believe it was two Apple finance deals in conjunction with, for example, a Barclays Bank tie-up as we appear to have here in the UK.   As you suggest, the payment is a matter between the poster and his mom, but I think that behind all this is the question of whether the poster's mom can have two separate accounts in this way.   Which of course, she can.

  • Is it possible to have mixed orientations in one folio?

    Is it possible to have some articles that are are only portrait and some articles be only landscape in the same folio? I'm basically running into the issue of what to do with content that was a spread in the print edition of the magazine. I'm at a small publisher and don't have the time to create 2 orientations of every layout, so I'd like to be able to pick and choose article orientation within a folio. Make sense? Thanks!

    Not possible.

  • Is it possible to have iMovie HD and iMovie HD 6 installed on the same Mac

    While I like some of the video editing features of iMovie HD 6, the problems with the Ken Burns Effect have killed my ability to create slideshows with iMovie. This worked just fine in iMovie HD (version 5.x). Is it possible to have both applications installed on my iMac and run one for slideshow production and the other for video production?
    I searched and could not find a thread that addressed this issue. If there is one, the URL will be greatly appreciated.

    Catspaw,
    Thank you. I should have thought of this, as I am running iMovie 8 and iMovie HD 6 on an Intel iMac at work. When I installed iMovie HD 6 onto this system (I'm not a fan of the latest incarnation of iMovie), it was put into a "previous version" folder. Since my G4 iMac already has been upgraded to iMovie HD 6, I'll just put iMovie HD 6 into a folder (maybe label it as the "latest version") and then install iMovie HD 5.
    Thank you for the insight on the trash emptying messing with the re-editing of photos. If I start a new project using the same photos from iPhoto (I use the media browser within HD 6 to select my photos in my iPhoto library) and never empty the trash until the project is complete, will the problem not appear? Or, does some magic thing tag my iPhotos so that I have to reimport them into iPhoto before using them again in iMovie HD 6?

  • Is it possible to give each page within one pdf document a specific set of print settings?

    I have a complex document (catalogue) that requires printing. There are several different printer settings required and each one is specific to each page within the document. For instance pg 1 is single sided in colour, page 2-3 is duplexed in b&w, page 3-8 is duplexed in colour, etc.... Is it possible to give each page within the pdf document a given set of print settings and then print the entire document as a whole?

    Hi jennyskop
    I assume that is not feasible ...You need to give the print command again and select the respective pages and their settings !

  • Maybe you are looking for

    • Macbook mini DVI to DVI output problems

      hi I've been using a samsung syncmaster 22" with my macbook for about a year now with no problems using the mini DVI to DVI connection then earlier this week i used a different DVI cable to plug my playstation 3 into the screen, when i plugged the co

    • How to use it with gift card?

      Dear Sir, My niece bought the Apple TV to me, but I could not use it because I do not know how to install.  My friend said it does not support in my country, Thailand. I have wifi and rounter to play internet.  Please advise me how to install. Also,

    • Pan and Zoom in a Windows instead of Full Screen?

      Hi, Tried using the Pan & Zoom and found it very difficult to work with. I had an image I wanted to be displayed on the screen but I only wanted it to use 1/3 of the screen. I sized the image and then went to pan/zoom. The image re-sized to full scre

    • Can we have the interface between microsoft excel and adobe illustrator

      Can we have the interface between microsoft excel and adobe illustrator?

    • Function Module - 2

      Hello again, I have not really solved the problem I had a couple of hours ago. Maybe someone can help me to understand why this program does not work. REPORT  Z_TEST_FUNKTIONSMODUL. DATA: it_order TYPE STANDARD TABLE OF VPKVBAKTTYP. DATA: wa_order TY