CheckBox issues

Hello,
I've got a checkbox that is bound to a boolean in the SessionBean:
selected="#{SessionBean1.mySelectedBean1.myBeanChild1.checkBeforeProcessing}"
the selectedValue property is defaulting to "true" and I can't figure out how to unset that (or if I need to)...
This checkbox is on Tab1 in a three tab TabSet.
When I come into the page, and select the appropriate myBeanChild1 object from a list to set that boolean property, it shows selected/deselected appropriately based on the state of the external data that's driving this (it's not a database bound component though, it's just bound to the session bean data).
However, when I switch to Tab2 and then go back to Tab1 the checkbox is not checked appropriately and it appears as though the session data for this particular property is somehow lost too (other pieces of data associated to this object are all correct)? Once it gets into this state, I can't seem to get the check box to stay checked without restarting the app.
I'm using checkboxes on other pages where TabSets are not involved and they appear to be working as expected and are being configured similarly. So, I think I understand how check boxes need to be configured with JSC2.
This is an app that I'm trying to convert from the Q4 version to the release 2 version and this worked fine with Q4. I've tried using the old style/standard checkbox and it seems to be having the same type of issues.
Please tell me I'm missing something.
Thanks,
TJ

Still no luck. The work around doesn't seem to work for me. Once I switch tabs, it loses the information somehow. Even though in the prerender, it says the SessionBean1.selected property is true when I switch the tabs.
Basically it looks like this:
- come into the page, prerender says the session variable is true. The checkbox is visually "checked."
- switch tabs, prerender still says it's true
- go back to the tab where the checkbox is and the processValueChange method fires saying that the checkbox is not checked any more (checkbox1.isChecked() == false). The checkbox is visually "unchecked."
- then the prerender method fires and it says that the session variable is now false
This is all happening simply by switching tabs. I'm not doing anything with the checkbox at all (like clicking on it or anything).
Am I missing something?
Any ETA on the fix yet? i.e. - are we looking at days, weeks or months before we can use this properly? If it's something that's not going to be fixed in the near future, I need to start trying to come up with other alternatives.
Thanks for any additional information.
TJ

Similar Messages

  • Checkbox issue in module pool program

    Hi all,
    I have a small issue in a module pool program using checkboxes. The requirement is that my basic list should contain the data with checkboxes and as per the selection by the user, the selected records should appear in the next screen (secondary list). But after selection, all the records barring the last record is appearing in my secondary list. Below are the screenshots of my program:
    These are the global variables I declared:
    The layout for the  basic list is as shown. The function code is cbox for checkbox.
    The flow logic :
    The code for user-command:
    Now on executing the program,
    As you can see, sales orders 4970,4972,4974 and 4975 are selected. So after clicking NEXT, in the secondary list , the data for these selected sales orders from VBAP table should come up. But instead, the records from 4970, 4972 and 4974 are displayed except the last sales order which is 4975.
    This is happening for all the records. The last selected sales order is not getting selected. Why is it so?
    Thanks.
    Manish

    Hi Ali,
    I have modified the code but there are still a couple of things which are confusing me. In the below screenshot you can see the modified version of the code:
    Now to see what is going wrong, I tried to debug the code. I placed the breakpoint on 'NEXT' as shown. Then I selected the following sales orders and pressed NEXT.
    In the debugger, IT_VBAK1 correctly holds the 2 selected values:
    IT_VBAP displays the values correctly as well.
    Now, this is where the issue is. On clicking the BACK button and selecting another sales order (4974):
    IT_VBAK1 holds the additional sales order 4974 along with the previous ones as well:
    IT_VBAP also displays the values accordingly as per the debugger:
    But in the table control, the sales order 4974 is not displayed. Only the initial sales orders are displayed.
    1) There is nothing wrong with the code as the debugger shows the records are held and displayed correctly by the internal tables. So what could be the reason for the data not to be displayed correctly in the table control? I also tried refreshing IT_VBAP after the BACK button, but still it isnt working. 
    2) Also, another thing I've seen that is after clicking the BACK button, when I select the sales orders, only data from 2 sales orders are displayed in the secondary list.
    For example, if I select any number of sales orders and press NEXT, then all the data are displayed correctly in the secondary list. Once I click the BACK button and deselect all of them and then I checkbox 3 sales orders (more than 2), then only the records for 2 sales orders are displayed, not the 3rd one.   Why is this happening?
    Regards
    Manish.

  • Checkbox Issue in a SQL Query Report

    version 4.0.2.00.06
    Hello,
    This issue has changed. I'm updateing.
    Thanks,
    Joe
    Edited by: Joe R on Jun 9, 2011 8:42 AM

    no luck
    tried to_date(:startdate,'YYYY-MM-DD') and to_date(:enddate,'YYYY-MM-DD') and
    to_date(:startdate,'YYYY/MM/DD') and to_date(:enddate,'YYYY/MM/DD')
    [Hyperion][DB2 JDBC Driver][DB2]Error occured with SQLCode -20448 with the following parameters: 2010-09-23-00.00.00.000000, YYYY-MM-DD, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null
    [Hyperion][DB2 JDBC Driver][DB2]Error occured with SQLCode -20448 with the following parameters: 2010-09-23-00.00.00.000000, YYYY/MM/DD, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null
    Atleast this time it looks like a sql error
    I don't know if this helps any I did find out if I use to string field and type the date in that way it works. It seems to only have the problem when i use the cal (date).

  • Checkbox issue

    Hi,
    I have a check box, and i want it to store a text value and
    not true/false, so i set the value to some text.
    like here below.
    But since i also want to know whether what's coming from the
    database is already filled out or not, (and if yes I check the
    checkbox, i have this small code:
    (comp1 is the field in the DB where i want to store the text
    value)
    quote:
    <cfif #Comp1# NEQ ' '>
    <cfset Comp1check="checked">
    <cfelse>
    <cfset Comp1check=' '>
    </cfif>
    <cfinput type="checkbox" name="Comp1" Label="Long Ho
    Quyen" value="Long Ho Quyen" #Comp1check#>
    So the output of that should be either:
    <cfinput type="checkbox" name="Comp1" Label="Long Ho
    Quyen" value="Long Ho Quyen" checked>
    or
    <cfinput type="checkbox" name="Comp1" Label="Long Ho
    Quyen" value="Long Ho Quyen" >
    BUT:
    My dear cfform (in flash format) tells me :
    Invalid CFML construct found on line 84 at column 84.
    ColdFusion was looking at the following text:
    82 : <cfif #url.Category# IS 'Women' AND #url.Belt# IS
    'Medium'>
    83 :
    84 : <cfinput type="checkbox" name="Comp1" Label="Long Ho
    Quyen" value="Long Ho Quyen" #Comp1check#>
    Any idea?
    regards,
    katja

    just use <input> instead of <cfinput> tag. what
    you are trying to do is
    not allowed in cfml.
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com

  • Kindly help me with this checkbox issue

    Hi all,
    Firstly I would like t o thank this very helpful forum.I have one more question regarding checkboxes.
    /*courses.jsp*/ In my courses.jsp which connects to an MS Access database I have something like this...
    <INPUT TYPE=CHECKBOX NAME="COURSES" VALUE="rs.getString("course")"><%out.print(rs.getString("course"));%></td>/*courses.jsp*/
    This is coming from the database.
    In my servlet code i have this in the doPost method.
    /*CheckBoxServlet*/ PS : This servlet is not connected to the database..
    String checkbox[] = request.getParameterValues("COURSES");
              int counter = checkbox.length;
              System.out.println("Number of checkboxes checked " + counter);
              if (checkbox !=null){
                   for (int i = 0; i < checkbox.length; i++) {
                   System.out.println("Checkbox values "+ checkbox);
         } else {
                   System.out.println("none selected");
    /*CheckBoxServlet*/
    /* OUTPUT */
    I have checked 5 check boxes
    Checkbox values rs.getString(
    Checkbox values rs.getString(
    Checkbox values rs.getString(
    Checkbox values rs.getString(
    Checkbox values rs.getString(
    /*OUTPUT*/
    My question is why is it not printing out the value in rs.getString()????.
    It would be great if this forum helps me in the right direction.Let me know how i can go about doing this.
    I hope i have explained my question correctly.If you have any further questions kindly ask.
    Thanking every one in adavance
    AS

    your mixing html and java code
    <INPUT TYPE=CHECKBOX NAME="COURSES"
    VALUE="rs.getString("course")"><%out.print(rs.getStrin
    g("course"));%></td>based on this it should be
    <INPUT TYPE=CHECKBOX NAME="COURSES"
    VALUE="<%out.print(rs.getString("course"));%>)"><%out.
    print(rs.getString("course"));%></td>
    Hi again,
    Thanks for the reply.
    If I give this
    <INPUT TYPE=CHECKBOX NAME="COURSES" VALUE="<%out.print(rs.getString("course"));%>"><%out.print(rs.getString("course"));%>This is the error message i get
    javax.servlet.ServletException: No data found
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:825)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:758)
         org.apache.jsp.courses_jsp._jspService(courses_jsp.java:243)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         servlet.AdminValidationServlet.doGet(AdminValidationServlet.java:78)
         servlet.AdminValidationServlet.doPost(AdminValidationServlet.java:93)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    java.sql.SQLException: No data found
         sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7139)
         sun.jdbc.odbc.JdbcOdbc.SQLGetDataString(JdbcOdbc.java:3908)
         sun.jdbc.odbc.JdbcOdbcResultSet.getDataString(JdbcOdbcResultSet.java:5702)
         sun.jdbc.odbc.JdbcOdbcResultSet.getString(JdbcOdbcResultSet.java:356)
         sun.jdbc.odbc.JdbcOdbcResultSet.getString(JdbcOdbcResultSet.java:413)
         org.apache.jsp.courses_jsp._jspService(courses_jsp.java:106)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         servlet.AdminValidationServlet.doGet(AdminValidationServlet.java:78)
         servlet.AdminValidationServlet.doPost(AdminValidationServlet.java:93)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)What could be the reason for this.It would be great if you can help me out.
    TIA
    AS

  • Checkboxes Issue

    Hello,
    I applicate the event onClick="alert('test');" in my checkbox, but doesn't works. I write in the Column Attributes on Element Attributes.
    Thanks

    Well, now I have another problem, do not appears the checkbox item, but the code, like
    <input type="checkbox" name="f30" value="1" onclick="If this.checked { test(); } else { test2(); }" id="f30_1" />My code for the report is
    select
    "ID" ID_DISPLAY,
    "PRODUTO_CODIGO",
    "COMPLEMENTO",
    apex_item.checkbox (30,
                               '#ROWNUM#',
                               'onclick="If this.checked { test(); } else { test2(); }"',
                               NULL,
                               'f30_' || '#ROWNUM#'
                              ) SELECIONADO,
    "QTD",
    "UM_SIGLA",
    from "PROPOSTA_ESPEC_GTB_ATM"
    where COMPONENTE_ID = :P25_COMPONENTE_IDI have another question, what is the '30', 'NULL', ':', 'f_30' attributes for the apex_item.checkbox?
    Can I write like this:
    DECODE (SELECIONADO,
                  'S',
                  '<input type="checkbox" name="f30" value="1" id="f30_1" />'
                  '<input type="checkbox" name="f30" value="0" id="f30_1" />'); and the onClick event I could write in the element column attribute?
    Thanks & Regards
    Raul Welter
    Edited by: RaulWelter on 27/07/2011 08:15
    Edited by: RaulWelter on 27/07/2011 08:15

  • HR P&F: Checkbox Issue on mouse over

    Hi experts
    I'm currently facing a big issue in production with check box UI element in form.
    When an employee try to click check-box in form, its flickering.(Please find an attachmen)
    We didn't had an issue in development instance but it's happening in Prod. system. Does anyone face similar problem before?.. Please advice, how to resolve the issue. I'm still searching for SAP Notes.. Any input, really appreciate
    Thanks
    Babu

    did you check with other browser? also this is a known issue, refer here for the fix http://scn.sap.com/thread/3467244 check your theme being used? is it a customised one?

  • Htmldb_item.checkbox : multiple attributes

    Hi,
    I was wondering if there is a way to specify multiple attributes for a checkbox using htmldb_item.checkbox
    I would like the checkbx to be checked and disabled.
    In the sttribute param. I can specify 'CHECKED" or 'DISABLED'. I would like to specify both
    any help

    Hi Tyler,
    Here is the example:
    Table 1.
    Issues Table:
    issue id, issue_Description
    Projects:
    project id, Description
    Project_issues:
    project id, issue id, issue encountered(Y/N)
    I want to display read only checkboxes.
    issues decription is stored in Issues Table, and values (Y/N) are stored in Project_issues
    So for a particular project I would like to see list of all issues(checkboxes)
    This is how it looks like
    For projectid: p1
    issues 1 (CB) (X)
    issue 2(CB)
    These are diisabled or read only.
    any idea how should i use check boxes in html db. I tried creating LOV
    select issue_description d, issue_id r
    from issuees;
    This lov display checkboxes. But How Can i get values of these checkboxes from table project _issues.
    thanks a lot for your help

  • ITunes 7.0.1.8 experiences - Here's what got fixed for me...

    After news of the iTunes 7.0.1.8 update broke out today, I downloaded it and have used it for a little while.
    I'd thought I'd share my experiences so far, but please take note that I did not do any CD burning/importing tests, nor do I own an iPod to sync content to or a 5.1 set of speakers to play songs with. I have heard that this update dramatically fixes the slow recognition and sync times for iPods and that there is better speaker recognition for surround sound systems, but I can't personally confirm this.
    My current audio settings in QuickTime are at 48kHz, 16-bit, QuickTime Music Synthesizer. Safe Mode is disabled. These have been my withstanding settings since iTunes 6. To my knowledge, all sound drivers and video drivers are up to date. Hardware acceleration is at full, and DirectX is also up to date.
    Some problems I noticed in iTunes 7.0.0.10, in no order - and whether they've been fixed or not in iTunes 7.0.1.8:
    Problem: Cover Flow view was slow to respond and had album art rendering issues. I didn't get the diagonal lines, but it definitely bogged down my system. Most likely a memory leak.
    With 7.0.1.8: Partially fixed. CPU usage doesn't skyrocket as much, but the flow animations still stutter and album art rendering still lags. Once the art is loaded into RAM, however, Cover Flow is as smooth as ever and does not max out at 100% CPU for me.
    Problem: Download manager was unresponsive. iTunes would crawl when playing a song and downloading something, as menu commands, pausing/unpausing, etc. was delayed by up to a minute. CPU usage at 100%.
    With 7.0.1.8: Mostly fixed.The download manager is now noticably speedier, and is responsive to user inputs with pausing downloads, scrubbing songs, etc. However, CPU usage is still at 95%-100% when a download is running.
    Problem: Gapless playback caused distortion.
    With 7.0.1.8: Fixed. Gapless playback now works correctly and seamlessly, without causing distortion in the first or last few seconds of a song or delaying playback.
    Problem: Audio playback became distorted and skipped when running any other applications, such as a web browser.
    With 7.0.1.8: Partially Fixed - Your results may vary. Audio no longer messes up horribly anymore -- even when the voume is less than 100% -- which is great. However, small skipping is still apparent when browsing in Firefox or even in the iTunes Store. This happens sporatically, however, as I'm browsing now and there is no studdering, though minutes ago browsing caused some skips. CPU usage spikes to 100% momentarily when this occurs. Nonetheless, it is still a MAJOR improvement from before, and now I believe that skipping exists due to my only having 256MB RAM in this PC. Your results may vary.
    Problem: Newly downloaded album art did not actually get embedded into the music file, and iTunes didn't find album artwork for tracks that were in the iTunes store.
    With 7.0.1.8: Not fixed. Downloaded album art from iTunes 7 is not embedded into the actual file, and needs to be copy-pasted back in the Artwork tab of the "Get Info" window. One non-related fix, though, is that album art can now be manually added in the album viewer on the bottom left of the window for multiple tracks at once. For downloading artwork (I did not set this as 'automatic' in my iTunes preferences but did it manually), I recommend matching the store listing 100% with track numbers, capitalizations, etc. and making sure the ID3 tags of MP3 files are v2.2 or higher.
    Problem: At random times, checkboxes did not actually check or uncheck when clicked on; this was especially true in the Podcast library. Only a manual right-click menu selection would check or uncheck an item.
    With 7.0.1.8: Fixed. No more checkboxing issues so far.
    Problem: Visualizer size setting in Preferences -> Advanced tab (Small, Medium, Large) did not actually take effect.
    With 7.0.1.8: Not fixed. The visualizer still plays in the "large" setting, no matter what the setting is; I believe this is a bug. In addition to this, when in Cover Flow view and changing to the visualizer, Cover Flow leaves an intrusive snapshot on top of the visualizer, which isn't fixed until switching out of the visualizer and changing back to the list or album view.
    Problem: Video playback stuttered when viewing on-screen controls, and the controls didn't appear when the mouse was over the video and iTunes was in mini player mode or minimized. Clicking on the video at that point stopped playback and closed the video window.
    With 7.0.1.8: Not fixed. While video playback is snappier in iTunes 7 in general, this little oversight hasn't been touched yet. I also believe part of it is because of a lack of RAM on my computer, but would've liked to see more smooth playback like what was found in the last revision of iTunes 6, in addition to the added controls.
    Problem: Adding ratings from within the library is a little hit-or-miss; I have to click on a certain edge of the star to select it.
    With 7.0.1.8: Not fixed. I have to click pretty firmly on the ratings column in my iTunes library, or just do it manually by right-clicking or doing it in the Get Info window.
    I think that covers most of what I personally found in the previous version of iTunes 7. I didn't previously have the importing problem or settings fail to save (sans the visualizer), however. (Feel free to add to this thread with your experiences if you'd like.)
    Dell Dimension 2400 Windows XP Intel Celeron 2.59GHz, 256MB RAM

    UPDATE/EDIT FROM PREVIOUS POST:
    Ok. The new 7.0.18 does repair the volume slider audio issue. HOWEVER, Simply installing the new update (at least for me) did **NOT** fix the problem. After posting my previous post, I tried to remove Quicktime and iTunes completely and try reinstalling.
    It turns out that when I uninstalled Quicktime from Add/Remove Programs, it didn't remove all the Quicktime files and it was not reinstalling Quicktime afterwards!!
    I only noticed when I downloaded the standalone version of Quicktime and tried running it and it said a "newer version" was on my computer, though it did not show up on my Add/Remove Programs file listing.
    So I looked in the usual places and found that I had a Quicktime folder remaining in the Program Files folder and one in the C:\Windows\system32 folder. I also had to manually remove the following files from the C:\Windows\system32 folder:
    Quicktime.qts, QuickTimeMusicalInstruments.qtx, the Quicktime.Resources folder, QuicktimeVR.qtx and the QuickTimeVR.Resources folder.
    The main problem is that iTunes didn't let me know there was an issue with the QuickTime installation. It just wouldn't run iTunes. There should have been a notification.
    Anyway, after all this, I reinstalled iTunes fresh and checked the volume slider and LO' And Behold! The volume slider issue was repaired.
    However, there is a LOT of skipping occurring that never happened before. Not sure what's up with that. CPU usage stays low and then I get a few skips per minute...UNACCEPTABLE!!! That didn't happen before and that issue will still need to be fixed. Until then, back to WinAmp. Thx a LOT Apple...you *#^@ing hosers!

  • Video too light

    If I tick the Final Cut Studio compatibility checkbox in QuickTime Pro preferences my H264 videos ( exported from Final Cut or Mpeg Streamclip or Compressor) look correct.
    If I then upload these videos to Vimeo or BlipTv they appear far too light, just as they do in QT on my computer if the box isn't checked.
    My question: how can I make it so that uploaded videos appear the way they do when the box IS checked?
    Curoiusly, the checkbox issue doesn't apply to video saved in Photo-Jpeg format but Photo-Jpeg videos are huge and far too big to upload anywhere.
    I suppose that what I'm looking for is a way to "bake in" the FCP compatibility setting somehow.
    Many thanks!

    Hi Fato,
    I am fighting with this problem as well since more than 6 month and came up with a solution that works ok for me (even though it would be nice if apple would put their heads together and give their prof customers a professional answer to that problem;))
    As i figured out there is only a two way answer to this problem. I am working for customers that distribute files to end customers on pc, mobiles macs and so on.
    So i decided to have besides my mac as well a pc standing here and that helped me figuring out the problem.
    Version 1: If i export to h264 and distribute the file as is.
    Version 2: I make a duplicate. I open it in QT and change the Transparency settings in the property window to "composite" and save the file.
    But now comes the Problem: The with "composite" mode saved file plays back perfectly a<s it is supposed to do on your mac (it doesnt matter if the little hook is switched on or not) and even over the web. The problem is that on PCs the colors might be displayed with higher contrast then wanted.
    On the other hand the picture on a PC or mobile phone looks fine if i do not do this little change.
    In the end i always have to decide for the less evil solution. If the picture on the PC looks just fine and the color shift on a mac browser is only small i will use the unchanged file.
    If the picture on the mac browser looks too bad i will use the changed file, giving me a perfect picture on mac and maybe a slight change on the PC.
    As i worked with a lot of footage having totally different image (some movies are very light some very dark) i figured that it changes from clip to clip which of the both versions looks better on which platform.
    If anybody by today might have figured out a reliable way of how to solve this problem i would be more than thankfull as well
    Cheers
    Lobo

  • Invisible objects made visible revert to their invisible state after saving and opening

    I am working in LiveCycle Designer ES2 creating a decision tree that is highlighted in red as you click the Yes and No checkboxes in the document. I duplicated the arrows and made the copies red and then invisible. When the checkbox is checked, the red arrows become visible, when unchecked, invisible. The problem I have encountered is that because the default state of the red arrows is invisible, they do not stay visible if you fill out the form, save it, then open it again. When the saved form is opened, all the correct checkboxes are checked, but all the red has gone back to being invsible. I am creating and saving the pdfs as dynamic XML forms and using them in Acrobat X. It was all done with the action builder (yes, I know, stop using action builder, but I had to teach myself LiveCycle last week to get this far and havn't made it to scripting).
    I read through a post with a similar question but it involved a master drop down list not checkboxes, and I did not see how I could apply the solution in that post to my checkbox issue.
    Any thoughts on how to get the red lines to stay visible when saved and reopened?

    Hi,
    check your form properties.
    You need to activate the option to preserve script changes.
    http://forums.adobe.com/message/3835967#3835967

  • Seprating select options in two view containers.

    Hi Gurus,
    I have 4 fields which are select option based.
    I want 2 fields in one view_container_ui element.
    Other 2 fields in other view_container_ui element.
    Presenlty  when i am creating 4 select option fields by coding it is appearing in one view_container_uielement.
    Does neone have any idea about this..?
    Best Regards,
    Navin Fernandes.

    Hi lekha,
    My lead selection issue is solved... I changed the cardinality and selection.
    Also the singleton property had to be unchecked as i came to know from SAP document.
    Checkbox issue is also solved since the default value was not set to the right variable.
    Thanks very much..
    Hi Anurag..
    Thanks for the help.
    Best Regards,
    navin fernandes.

  • About Check Mark

    Hi, All:
    I encountered a strange problem of display by Adobe Reader.
    The checkBox issue, I set the check style to a Check Mark.
    In normal, It is Okay to show at Adobe reader.
    But, something wrong happened ,the Check Mark changed to a number "4" at reader.
    Did anyone ever see that? Any idea?

    It could be a result of font substitution which is influenced by a number of factors including:
    1. OS
    2. OS language
    3. OS code page
    4. character encoding associated with the code page
    5. fonts on the host
    6. Designer font definition for the CheckBox value
    7. Designer font and character mapping definition
    8. Designer font substitution rules
    Take a look at
    1. Validate font embedding is enabled in Designer (see File > Form Properties > Save Options > Embed Font)
    2. The font used in the CheckBox value (as opposed to the caption).
    3. Check font substitution rule for that font. Go to Tools > Options and see 'Modify Font Substitutions'
    4. Enable 'Show Missing Fonts dialog box...'
    5. Test the form on the host where the issue occurred.
    If the font is not available on the host, you could change the CheckBox value font to a font distributed with the host. On Windows, Arial is probably a good choice.
    Steve

  • ADF Table with CheckBox - Select/deselect issue

    I have seen couple of threads and blogs for ADF table with check box . but none of them exactly matching with my requirement . My Database table does not have any field for check box .
    Here is my DB Table
    tableA_
    A_Id
    A_Name
    tableB*
    B_Id
    Requirements :*
    1. Display the above tables data with Checkbox . ( if A_Id = B_Id then the checkbox will be checked , else unchecked ) .
    2. Select / deselect the check box and save the data . Saving the data , will update only tableB . i,e when a new check box is selected then A_Id value will be inserted to tableB . Similarly , deselecting a checked in data will remove the entry from tableB.
    Development :
    1. Created a VO where tableB has marked as updateable .
    2. Created a transient Boolean variable for checkBox . and modified the getter method of checkbox for returning true/false based on the below condition in the ViewRowImpl Class .
    if ( A_Id = B_Id )
    return true;
    else false ;
    3. I have not modified the setter method .
    Using the above concept i can view the data with selected checkbox . but the problem is to save the data . because , when I select a checkbox the above coding in the getter method will return false .
    Therefore , though i am selecting the checkbox but value of the checkbox has been set as false .
    While saving the Data , I am iterating through the VOIterator and observed that a newly selected checkbox value is false . and realized its because of the getter method condition .
    Can you please suggest how can I overcome this issue or shall I need to take any other approach ?
    Jdev version 11.1.1.5
    Regards,
    Amitava
    Edited by: Amitava on Mar 17, 2012 3:48 PM

    You need to go through the ADF page life cycle concepts. In simple words the boolean value in the model is not set while in valueChangeListener. Try adding valueChangeEvent.getComponent().processUpdates(FacesContext.getCurrentInstance()); on top in your listener method and see the effect.
    Reference:
    http://docs.oracle.com/cd/E15051_01/web.1111/b31974/adf_lifecycle.htm

  • Datagrid Checkbox item renderer Issue.

    Hi There
    Recently I faced a  requirement to have a checkbox inside a datagrid where I need to develop a music module with playlist management for ADOBE AIR based application.
    For this I have searched and found a source to use Datagrid and Checkbox components which overrides some inbuild methods to give the required result..
    But Finally I ended with one strange issue
    When the check box is placed in the datagrid at 0 column index it works firne but if we place at any index ( I need it to be last colum ) the checkbox is not updating the display.
    Source Flex Air project attached.
    From the sample... While clicking on a row the left column checkbox is getting updated but Right remains same... when you scroll the Datagrid then the checkboxes are getting update when they are redrawn. I didn't found where to call the redraw for the right checkbox column.
    Cany any one faced this strange issue. and found any solution ?????
    If the Logic what I am following for a Playlist module is not good one then suggest if you guys know any other mechanism to develop a playlist management with datagrid and Checkboxes.
    Message was edited by: ChintuBabu

    Hi There
    Recently I faced a  requirement to have a checkbox inside a datagrid where I need to develop a music module with playlist management for ADOBE AIR based application.
    For this I have searched and found a source to use Datagrid and Checkbox components which overrides some inbuild methods to give the required result..
    But Finally I ended with one strange issue
    When the check box is placed in the datagrid at 0 column index it works firne but if we place at any index ( I need it to be last colum ) the checkbox is not updating the display.
    Source Flex Air project attached.
    From the sample... While clicking on a row the left column checkbox is getting updated but Right remains same... when you scroll the Datagrid then the checkboxes are getting update when they are redrawn. I didn't found where to call the redraw for the right checkbox column.
    Cany any one faced this strange issue. and found any solution ?????
    If the Logic what I am following for a Playlist module is not good one then suggest if you guys know any other mechanism to develop a playlist management with datagrid and Checkboxes.
    Message was edited by: ChintuBabu

Maybe you are looking for

  • I-photo trouble

    I am having a problem, I-photo will not do anything except give me the color wheel when I try to work with it.  This just happened and the trouble report shows at least 10 pages of repeat kernal errors.  I have shut down everything and restarted nume

  • HT4539 how do i download iso 5.0 to my ipod

    I have an ipod touch 3rd generation om trying to install games for my daughter and it keeps saying i need to download iso 5.0 and i dont know how to do it

  • Windows Server Active Directory services

    Hi, We have installed Windows server 2008 R2 as a primary domain controller. the domain controller "xxxxxxx" (2008R2 SP1) gets freeze intermittently and at the time of issue we are not able to ping and take RDP session of this server from any other s

  • ABAP Add-On Assembly Kit

    Hi all, How to use ABAP Add-on Assembly Kit in SAP R3 (or MiniSAP). I want package code in ABAP and then install for other system. Pls help me. Thanks so much.

  • HP x720w 64GB Pen Driver Does not detect on Windows 7 Laptop

    HP x720w 64GB Pen Driver Does not detect on Windows 7 Laptop. While it detects on my PC. Same OS. Pls advise.