IPhone: textview content disappears on table scrolling

Hi,
I have the following problem, if anyone can help: I'm creating a table with textviews inside the cells. When the user scrolls up/down, some of the visible cells loose the textview's content, so no text is displayed for them. This happens randomly, some cells contain the text, some not. The text of the textview is set upon cell creation, so even if the cell is created again after scrolling, the text information exists but is not displayed. This happens only for textviews and not for tetfields or labels. Is this happening to anyone else out there? Any clue?
Thanks in advance,
George

Here is a better, working solution, hope this helps:
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
NSMutableSet *visibleViewsSet = [NSMutableSet setWithArray:\[self.tableview visibleCells]];
NSMutableSet *originalVsibleSet = \[visibleViewsSet mutableCopy];
NSMutableSet *cachedSet = self.cachedCells;
//Remove old cached views we already fixed or not currently visible
//We only need to update new cells that are now just visible
\[visibleViewsSet minusSet:cachedSet];
//Reset the cache to contain all current visible cells
self.cachedCells = originalVsibleSet;
for (UITableViewCell *cell in visibleViewsSet) {
\[self workaroundbug:cell];
#pragma mark Workaround
- (void)workaroundbug:(UITableViewCell *)cell {
if (nil != cell) {
UITextView *textView = (UITextView *)\[cell viewWithTag:SNARKYTEXTVIEW];
if (!textView.hidden) {
for (UIView *subview in textView.subviews) {
CGRect bounds = subview.frame;
CGRect cellBounds = cell.bounds;
// subview.backgroundColor = \[UIColor redColor];
if (cell.bounds.size.height > bounds.size.height) {
bounds.size.height = cellBounds.size.height;
subview.frame = bounds;
\[textView setNeedsDisplay];
The reason this works is because, inside of the text view's scroll view lies the REAL text view which may or may not extend to cover the whole area of its enclosing scrollview... its really wierd.... uncomment the line in workaroundbug: to see what I'm talking about...... in any case this solved it for me, hope it works for you.

Similar Messages

  • Disappearing content in a table

    Hello All,
    I have been adding to a course syllabus week by week in
    Dreamweaver 8. The syllabus is in a table, centered, with a
    repeating background image. Recently the bottom part of the
    syllabus, along with the table including it, fluctuates between
    being visible and invisible when in 100% design view. If I run the
    mouse over the edge of the table, it will sometimes reveal content,
    sometimes not. If I scroll up, the content reveals again, only to
    disappear if I scroll back down. (If I jump up to 150% view,
    everything shows as it regularly should.) It also appears fine in
    several different browsers, both when I preview and when I upload
    to my server and view live. I have tried cleaning up Word HTML, yet
    the problem remains. It is WAY weird, particularly since the code
    is all there, intact, yet you can't see all the content at 100%
    view. I have tried copying and pasting into a new table in a new
    file, without the repeating image, yet the bottom content is still
    invisible in 100% view.
    Any ideas?
    -confused in Honolulu, and much appreciative of any insight .
    . .

    You are on a Mac, and your page is VERY long?
    Try making your design view zoom setting 99% or 101% and see
    what happens.
    Better - break your very long page into several shorter ones.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Kaimuki Kimo" <[email protected]> wrote in
    message
    news:eh1s8c$8c3$[email protected]..
    > Hello All,
    > I have been adding to a course syllabus week by week in
    Dreamweaver 8.
    > The
    > syllabus is in a table, centered, with a repeating
    background image.
    > Recently
    > the bottom part of the syllabus, along with the table
    including it,
    > fluctuates
    > between being visible and invisible when in 100% design
    view. If I run the
    > mouse over the edge of the table, it will sometimes
    reveal content,
    > sometimes
    > not. If I scroll up, the content reveals again, only to
    disappear if I
    > scroll
    > back down. (If I jump up to 150% view, everything shows
    as it regularly
    > should.) It also appears fine in several different
    browsers, both when I
    > preview and when I upload to my server and view live. I
    have tried
    > cleaning up
    > Word HTML, yet the problem remains. It is WAY weird,
    particularly since
    > the
    > code is all there, intact, yet you can't see all the
    content at 100% view.
    > I
    > have tried copying and pasting into a new table in a new
    file, without the
    > repeating image, yet the bottom content is still
    invisible in 100% view.
    > Any ideas?
    > -confused in Honolulu, and much appreciative of any
    insight . . .
    >

  • Jdeveloper - af:table scroll bar disappearing/truncating

    Hello,
    I'm having some issues with an af:table bound to a view object. The table is displaying questions to be administered to students applying for a scholarship. New questions can be created via a popup.. new questions are committed when the user clicks a save button on the popup, and the table is refreshed.
    The edit question popup uses af:inputText components to record most of the information for the new question being created. In particular, there is a field called "Question Text" - the display text for the question - which we put a 1000 character limit on. When typing in characters, at a certain point a scroll bar appears on the inputText component. I've noticed that after adding a few questions with the max # of characters, if I add a question, the question text of which doesn't have the max # of characters (and thus has a smaller scroll bar on the inputText component of my edit question popup) when I return to the main table, I lose functionality on my table scroll bar!
    For example, any time I make 2 questions with 1000 characters, and then a 3rd question with only two lines of Question Text, the scroll bar on the main table disappears completely until refreshed.
    Another time, I made 4 questions with a couple lines of Question Text, then 5 questions (#'s 5-9) with 1000 characters in the question text, then 3 questions that had just enough text to trigger a scroll bar in the inputText component of the Edit Question popup. When I would return to the table after creating questions 10-12, the most recent question would be in view... but if I scrolled to the top of the table and back down, I could only scroll down to question #9.
    All of my created data IS there, and a refresh restores the functionality of the table scroll bar. But has anyone seen behavior like this or have any suggestions of table settings, or how to best return from the edit question pop up (maybe I should re-execute the table's VO and NOT try to maintain currency on the newly created row..?) that might fix this?
    I'm including the code for my table and popup below just so you can see their settings. Of course, the components involved in this issue are part of a much larger system, so if there isn't enough information in this post to address the issue and you need any specific information (code from a backing bean/action listener method, etc..) just let me know!
    Thanks for looking.
    <af:panelCollection featuresOff="detach"
    id="stuQPc"
    partialTriggers=":::delQBtn :::appQCSave :::appQCCancel :::appQuestionSaveBtn :::appQuestionCancelBtn">
    <f:facet name="menus"/>
    <f:facet name="toolbar">
    <af:toolbar id="t2">
    <af:outputText value="#{pageFlowScope.mtnAppBean.currentAppName}"
    id="ot20"/>
    <af:spacer width="10"
    height="10" id="s2"/>
    <af:commandToolbarButton text="Create Student Question"
    partialTriggers="stuQTbl"
    clientComponent="true"
    icon="/images/add-16x16.png"
    disabled="#{ pageFlowScope.mtnAppBean.currentAppId==null}"
    id="ctb3">
    <af:showPopupBehavior popupId=":::appQuestionsPopup"/>
    <af:clientAttribute name="csaIsMultiChoice"
    value="No"/>
    <af:clientAttribute name="csaIteratorBindingName"
    value="AppQuestionStudentRefVO1Iterator"/>
    <af:clientListener method="handleEvent"
    type="click"/>
    <af:serverListener type="csaCustomEvent"
    method="#{schlrAppRequestBean.createEntity}"/>
    </af:commandToolbarButton>
    <af:commandToolbarButton text="Reorder Questions"
    partialTriggers="stuQTbl"
    clientComponent="true"
    icon="/images/add-16x16.png"
    disabled="#{pageFlowScope.mtnAppBean.currentAppId==null}"
    id="studReorder">
    <af:showPopupBehavior popupId=":::studentReorderPopup"/>
    </af:commandToolbarButton>
    </af:toolbar>
    </f:facet>
    <f:facet name="statusbar"/>
    <af:table value="#{bindings.AppQuestionStudentRefVO1.collectionModel}"
    var="row"
    rows="#{bindings.AppQuestionStudentRefVO1.rangeSize}"
    emptyText="#{bindings.AppQuestionStudentRefVO1.viewable ? 'No rows yet.' : 'Access Denied.'}"
    fetchSize="#{bindings.AppQuestionStudentRefVO1.rangeSize}"
    selectedRowKeys="#{bindings.AppQuestionStudentRefVO1.collectionModel.selectedRow}"
    selectionListener="#{bindings.AppQuestionStudentRefVO1.collectionModel.makeCurrent}"
    rowSelection="single"
    id="stuQTbl"
    columnStretching="last"
    displayRow="selected">
    <af:column sortProperty="CsaAppQuestionId" sortable="true"
    headerText="#{bindings.AppQuestionStudentRefVO1.hints.CsaAppQuestionId.label}"
    id="c6"
    inlineStyle="vertical-align:top;">
    <af:outputText value="#{row.bindings.CsaAppQuestionId.inputValue}"
    id="ot21"
    inlineStyle="vertical-align:top;">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.AppQuestionStudentRefVO1.hints.CsaAppQuestionId.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="QuestionSeqNumber" sortable="true"
    headerText="#{bindings.AppQuestionStudentRefVO1.hints.QuestionSeqNumber.label}"
    id="c7"
    inlineStyle="vertical-align:top;">
    <af:outputText value="#{row.bindings.QuestionSeqNumber.inputValue}"
    id="ot22"
    inlineStyle="vertical-align:top;">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.AppQuestionStudentRefVO1.hints.QuestionSeqNumber.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="QuestionText" sortable="true"
    headerText="#{bindings.AppQuestionStudentRefVO1.hints.QuestionText.label}"
    noWrap="false"
    width="210"
    headerNoWrap="false"
    id="c8"
    inlineStyle="vertical-align:top;">
    <af:outputText value="#{row.bindings.QuestionText.inputValue}"
    escape="false" converter="hyperlinkConverter"
    id="ot23"
    inlineStyle="vertical-align:top;"/>
    </af:column>
    <af:column sortProperty="NumberWordsInResponse" sortable="true"
    headerText="#{bindings.AppQuestionStudentRefVO1.hints.NumberWordsInResponse.label}"
    id="c9"
    inlineStyle="vertical-align:top;">
    <af:outputText value="#{row.bindings.NumberWordsInResponse.inputValue}"
    rendered="#{row.bindings.QuestionType.attribute == '2017'}"
    id="ot24"
    inlineStyle="vertical-align:top;">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.AppQuestionStudentRefVO1.hints.NumberWordsInResponse.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="ResponseRequireDisplayText"
    sortable="true"
    headerText="#{bindings.AppQuestionStudentRefVO1.hints.ResponseRequireDisplayText.label}"
    id="c10"
    inlineStyle="vertical-align:top;">
    <af:outputText value="#{row.bindings.ResponseRequireDisplayText.inputValue}"
    id="ot25"
    inlineStyle="vertical-align:top;"/>
    </af:column>
    <af:column headerText="" id="c11"
    inlineStyle="vertical-align:top;">
    <af:panelGroupLayout layout="horizontal"
    id="pgl2"
    valign="top">
    <af:commandButton text="Edit"
    icon="/images/edit-16x16.png" id="editQ">
    <af:showPopupBehavior popupId="::::appQuestionsPopup"/>
    <af:clientAttribute name="csaIteratorBindingName"
    value="AppQuestionStudentRefVO1Iterator"/>
    <af:clientListener type="click" method="handleEvent"/>
    <af:serverListener method="#{schlrAppRequestBean.editClicked}"
    type="csaCustomEvent"/>
    </af:commandButton>
    <af:commandButton text="Delete"
    icon="/images/delete-16x16.png"
    id="cb6">
    <af:showPopupBehavior
    triggerType="action"
    popupId="::::qdelpu"/>
    <af:clientAttribute value="AppQuestionStudentRefVO1Iterator"
    name="csaIteratorBindingName"/>
    <af:clientListener method="handleEvent" type="click"/>
    <af:serverListener method="#{schlrAppRequestBean.prepareForDelete}"
    type="csaCustomEvent"/>
    </af:commandButton>
    <af:commandButton text=" Edit Choices "
    rendered="#{row.QuestionType != '2017'}"
    id="cb7">
    <af:showPopupBehavior popupId="::::appQuestionChoice"/>
    <af:clientAttribute name="csaIteratorBindingName"
    value="AppQuestionStudentRefVO1Iterator"/>
    <af:clientListener type="click" method="handleEvent"/>
    <af:serverListener method="#{schlrAppRequestBean.editClicked}"
    type="csaCustomEvent"/>
    </af:commandButton>
    </af:panelGroupLayout>
    </af:column>
    </af:table>
    </af:panelCollection>
    <af:popup id="appQuestionsPopup"
    partialTriggers="tmplt:stuQPc"
    contentDelivery="lazyUncached">
    <af:dialog title="Student Question" type="none"
    partialTriggers="appQuestionCancelBtn"
    closeIconVisible="false" id="d8">
    <f:facet name="buttonBar">
    <af:panelGroupLayout layout="horizontal" halign="center"
    id="pgl16">
    <af:commandButton text="Save"
    actionListener="#{schlrAppRequestBean.saveAppQuestion}"
    id="appQuestionSaveBtn"
    partialSubmit="true"/>
    <af:commandButton text="Cancel"
    id="appQuestionCancelBtn"
    actionListener="#{schlrAppRequestBean.cancelPopup}"
    immediate="true"
    clientComponent="true"
    partialSubmit="true">
    <af:resetActionListener/>
    </af:commandButton>
    </af:panelGroupLayout>
    </f:facet>
    <af:panelFormLayout id="pfl2">
    <af:inputText value="#{bindings.AppName.inputValue}"
    label="#{bindings.AppName.hints.label}"
    required="#{bindings.AppName.hints.mandatory}"
    columns="#{bindings.AppName.hints.displayWidth}"
    maximumLength="#{bindings.AppName.hints.precision}"
    shortDesc="#{bindings.AppName.hints.tooltip}"
    id="it11">
    <f:validator binding="#{bindings.AppName.validator}"/>
    </af:inputText>
    <af:inputText value="#{bindings.CsaAppQuestionId.inputValue}"
    label="#{bindings.CsaAppQuestionId.hints.label}"
    required="#{bindings.CsaAppQuestionId.hints.mandatory}"
    columns="#{bindings.CsaAppQuestionId.hints.displayWidth}"
    maximumLength="#{bindings.CsaAppQuestionId.hints.precision}"
    shortDesc="#{bindings.CsaAppQuestionId.hints.tooltip}"
    readOnly="true" id="it12">
    <f:validator binding="#{bindings.CsaAppQuestionId.validator}"/>
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.CsaAppQuestionId.format}"/>
    </af:inputText>
    <af:inputText value="#{bindings.QuestionSeqNumber.inputValue}"
    label="#{bindings.QuestionSeqNumber.hints.label}"
    required="#{bindings.QuestionSeqNumber.hints.mandatory}"
    columns="#{bindings.QuestionSeqNumber.hints.displayWidth}"
    maximumLength="#{bindings.QuestionSeqNumber.hints.precision}"
    shortDesc="Order in which question will be displayed to applicant "
    id="it13">
    <f:validator binding="#{bindings.QuestionSeqNumber.validator}"/>
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.QuestionSeqNumber.format}"/>
    </af:inputText>
    <af:inputText value="#{bindings.NumberWordsInResponse.inputValue}"
    label="#{bindings.NumberWordsInResponse.hints.label}"
    required="#{bindings.NumberWordsInResponse.hints.mandatory}"
    columns="#{bindings.NumberWordsInResponse.hints.displayWidth}"
    maximumLength="#{bindings.NumberWordsInResponse.hints.precision}"
    shortDesc="Maximum number of words allowed in the response "
    disabled="#{bindings.QuestionType.attribute != '2017'}"
    partialTriggers="questionTypeId" id="it14">
    <f:validator binding="#{bindings.NumberWordsInResponse.validator}"/>
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.NumberWordsInResponse.format}"/>
    </af:inputText>
    <af:inputText value="#{bindings.QuestionText.inputValue}"
    label="#{bindings.QuestionText.hints.label}"
    required="#{bindings.QuestionText.hints.mandatory}"
    columns="60"
    maximumLength="#{bindings.QuestionText.hints.precision}"
    shortDesc="Verbiage of question " rows="6"
    id="it15">
    <f:validator binding="#{bindings.QuestionText.validator}"/>
    </af:inputText>
    <af:panelLabelAndMessage label="#{bindings.ResponseRequire.label}"
    showRequired="false" id="plam22">
    <af:panelGroupLayout layout="horizontal"
    shortDesc="Checkbox indicates a response is required "
    id="pgl17">
    <af:selectBooleanCheckbox label="#{bindings.ResponseRequire.label}"
    id="responseRequire"
    value="#{bindings.ResponseRequire.inputValue}"
    simple="true"
    autoSubmit="true"
    shortDesc="Checkbox indicates a response is required "/>
    <af:spacer width="5" height="10" id="s9"/>
    <af:outputText value="(#{bindings.ResponseRequireDisplayText.inputValue})"
    partialTriggers="responseRequire"
    id="ot49"/>
    </af:panelGroupLayout>
    </af:panelLabelAndMessage>
    <af:selectOneChoice value="#{bindings.QuestionType.inputValue}"
    label="#{bindings.QuestionType.label}"
    required="#{bindings.QuestionType.hints.mandatory}"
    shortDesc="#{bindings.QuestionType.hints.tooltip}"
    id="questionTypeId"
    autoSubmit="true">
    <f:selectItems value="#{bindings.QuestionType.items}"
    id="si4"/>
    </af:selectOneChoice>
    <af:inputText value="#{bindings.AddedBy.inputValue}"
    label="#{bindings.AddedBy.hints.label}"
    required="#{bindings.AddedBy.hints.mandatory}"
    columns="#{bindings.AddedBy.hints.displayWidth}"
    maximumLength="#{bindings.AddedBy.hints.precision}"
    shortDesc="#{bindings.AddedBy.hints.tooltip}"
    id="it16">
    <f:validator binding="#{bindings.AddedBy.validator}"/>
    </af:inputText>
    <af:inputDate value="#{bindings.AddedOn.inputValue}"
    label="#{bindings.AddedOn.hints.label}"
    required="#{bindings.AddedOn.hints.mandatory}"
    shortDesc="#{bindings.AddedOn.hints.tooltip}"
    id="id5">
    <f:validator binding="#{bindings.AddedOn.validator}"/>
    <af:convertDateTime pattern="#{bindings.AddedOn.format}"/>
    </af:inputDate>
    <af:inputText value="#{bindings.UpdatedBy.inputValue}"
    label="#{bindings.UpdatedBy.hints.label}"
    required="#{bindings.UpdatedBy.hints.mandatory}"
    columns="#{bindings.UpdatedBy.hints.displayWidth}"
    maximumLength="#{bindings.UpdatedBy.hints.precision}"
    shortDesc="#{bindings.UpdatedBy.hints.tooltip}"
    id="it17">
    <f:validator binding="#{bindings.UpdatedBy.validator}"/>
    </af:inputText>
    <af:inputDate value="#{bindings.UpdatedOn.inputValue}"
    label="#{bindings.UpdatedOn.hints.label}"
    required="#{bindings.UpdatedOn.hints.mandatory}"
    shortDesc="#{bindings.UpdatedOn.hints.tooltip}"
    id="id6">
    <f:validator binding="#{bindings.UpdatedOn.validator}"/>
    <af:convertDateTime pattern="#{bindings.UpdatedOn.format}"/>
    </af:inputDate>
    </af:panelFormLayout>
    </af:dialog>
    </af:popup>

    Thanks Mohammad
    I tried this but doesn't work. Also I save the getRangeStart return value before Rollback and tried to set with scrollRange(range) or scrollToRangePage(range) methods after Rollback but nothing changes, the scrollbar resets to the top position. The getCurrentRow and getRangeStart methods return the original values before rollback, but the scrollbar continue moving at the top position of the table...
    Any suggestions?

  • How to scroll the contents of the table without scrolling tab/colmn headers

    how to scroll the contents of the table without scrolling table and column headers in WebDynPro.
    I have set the table properties as
    footer visible = false;
    Visible row count = -1;
    and have put the table into scroll container with some specified height.
    I dont want to use the footer as I have used many tables in the container in same row and with same <b>Data node</b>.
    I have used many tables in same row and with same context node to differentiate it with two different colors for that specific columns.
    I am using <b>NW 04</b> and not NW04s.
    Please help me regarding this.

    To print the whole data of your table you have to do it yourself. The showPrintablePageBehavior only print what you actually see on the page. It does not traverse the data.
    The normal way to handle tis is to use a report generator (like itext, jasper report, fop ...).
    Timo

  • Table content disappearing when PDF'ing in FrameMaker 10

    Recently when I've pdf'd a book in FrameMaker 10, some of the content in the tables is missing. It can be either text or graphics and usually occurrs towards the start of the book, but it won't be throughout the book. This doesn't happen with every book, only the odd one, but is very frustrating.
    If I pdf the individual Frame file, it works perfectly, some of these files have been used in previous books and the books pdf'd OK with no problems. The computer is running Windows 7 with 12 GB of RAM.
    Any ideas?

    Actually, I had similar issue, but it was FM.  Occasionally, when I did a Save as PDF or Save as with HTML, FM went on for a few moment then stoped saving with an error message along the line: Cannot create <some file name>...  It kept doing the same thing for several tries until I deleted the previously generated files, then all would be well for a while, until the next time...  I don't know it had anything to do with the generated files (PDF or HTML) being opened on a web-browser at the moment.  Yet, as I remembered prior to that and verified afterward, in those times that went without such error, those files were being opened as well.  Thanks!
    PS: I'm using FrameMaker 11

  • Decision table rules manager content disappearing

    Hi Experts,
    We have BRM decision table deployed . I can access that from Portal and Rules manager . I can modify the content of that table . No Problem till now .
    The problem is :
    Every time transport happens to P  for any thing (not related to table ), that content of table is removed automatically .And i have to do the entries again Manually .
    this is very difficult and unreliable . Please suggest how we can make that content persistent even we deploy something .or how can i upload content fast after deployment . say from some excel or file .

    Hi Govind,
    Well it could be a real problem but I suspect you are missing a couple of steps... to check...
    Before making any changes in your NWDS, you should be downloading the current active version of the Rules Project and importing that into your NWDS.  Suggest you read the SAP Library help on this one and you'll need to get security to give you BRM Download access - there's a security action for this that they need to add to your security role in the production environment.
    This is the link you need:
    http://help.sap.com/saphelp_nw73/helpdata/en/4d/9d62f71ede478e9496a29fe1533976/frameset.htm
    As for how to upload the decision tables content en masse... that's that the export/import (to/from MS Excel) buttons are for in the decision table section of Rules Manager and where you, or better still your business user (these are business rules after all ), should be doing this.
    Hope that helps,
    Jocelyn

  • Problem in transporting contents of a table

    Hi All,
    I want to transport the contents of a table from development server to quality server.
    I used transaction SE16 and clicked on display entries. It gave a menu called transport entries where it gave a prompt for a workbench request. I created the workbench request for the table entries.
    When I was transporting the request, I checked the task under the request.  The request was in the modifiable task. It contained the entry for table contents namely R3TR TABU TABLENAME . After I released the task, I found that this entry for table contents namely R3TR TABU TABLENAME disappeared. Please could someone tell me why this is happening.
    Please could someone tell me if we should create a workbench request or a customizing request for  transporting the contents of a table.
    Apart fom SE16, which other method can we use to transport contents of a table ?
    Regards,
    Sushanth H.S.

    Hello Sushant
    >But even after doing so, when I clicked on SE16 and clicked on transport entries in the display menu of the >table, it was asking me for a workbench request and not a customizing request. Please could you tell me >the reason for the same.
    Based on this description your scenario looks like this:
    You have a z-table (now client-dependent) and maintain this table using a maintenance or table view.
    The only explanation I have for the behaviour of the system is that your client-dependent z-table has NOT delivery class = 'C' (Customizing) but probably 'A' (Application table instead).
    That's ok because I usually do define z-tables having delivery class = 'A' even if the table contents is used for some kind of customizing.
    Reason: I do no want to encounter all the restrictions for C-class tables in productive system.
    However, if your z-table contains very sensitive data you may explicitly choose delivery class = 'C'.
    Regards
       Uwe

  • AdvancedDataGrid content disappearing when setting rendererProviders..

    Hi All,
    Thanks for the community support, really useful.
    I am using the SDK 4.1.
    Here is the explanation of my problem.I am using a detail renderer inside a ADG, which appears when clicking on a certain column.
    This is done is AS3 (I mean not with mxlm tags), using the ADG rendererProviders property with an item renderer passed to a ClassFactory.
    This is working ok, until a certain point..
    Indeed, the grid contains many columns, with images item renderers and when I am horizontally scrolling through the column, a display bug make all the ADG content disappear.. Headers remain but all the data are gone. A user action that may update the data has to be done to make the data come back of course.
    This bug seems to be known by a few, but unfortunately all the solutions are useless in my case (setting the property horizontalScrollPolicy = 'auto' for each column for instance).
    After some research it appears that the line responsible for making the whole thing vanishing is the update of the variable rendererProviders:
    ie this.rendererProviders.push(_detailRendererProvider);
    In the AdvancedDataGrid.as class, the property setter, after updating its value of course make 2 other intructions :
    invalidateSize();
    invalidateDisplayList();
    It seems this is a bit too much for the DG to handle (note that I call this.validateNow(); after the rendererProviders update in my code).
    Note as well that if I do not set :
    this.variableRowHeight = true;
    An error pops up from the class AdvancedDataGridBaseEx in the configureScrollBars method, doing :
    var headerPosX:int =  lastHeaderInfo.headerItem.x;
    (headerItem is null)
    So, end of the day, I am stuck..
    Many thanks for your help, hoping it will arouse some lights..
    Benjamin

    hi, katrina S
    I don't know how but for the past three days iTunes has been functioning correctly.
    I removed al my music files from the library and put them back to their original folder; reinstalled iTunes and let it go from there. I've decided not to copy my music folder to iTunes as it's now working "correctly." I haven't made any playlists or made any online purchases since reinstalling as I'm wary of it all going haywire again. Thanks for your help. I'll keep you updated on this matter.
    take care,
    az

  • Handling a table scroll event

    Hi experts,
    I have a table with several columns. In one column there is a small image thumbnail. After the content (JSONModel) has rendered in the table, a javascript is triggered, which searches for the thumbnails and generates on mouseover bigger preview of that image. However, if I scroll down the table, then the preview is not generated and I would like to re-run that script again. Therefore I would like to handle a table scroll event.
    How could a listener to the scroll event of a sapui5 table be handeled?
    Regards
    Stefan

    HI Stefan
    Here is an example. But it is not officially supported.
    Example
    -D

  • IPhone "No Content" bug - A Huge Error

    I've enjoyed having my iPhone for years now but I keep getting bitten by this incredibly fatal flaw in the iPod portion of the device. Occasionally, when I sync my iPhone up to my computer and try to listen to the latest podcasts I've or videos that I downloaded and just synced to my iPhone, the iPhone tells me that there is "No Content" on the device, yet when I hook it up to my computer and look at its library through iTunes I can see all the music, video, and podcasts and play them from the device. Whenever I try to access them on the iPhone itself, however, I get the "Nope, there's no content here". THIS HAS HAPPENED ON FOUR (4) SEPARATE OCCASIONS. I was able to resolve the issue twice, once by renaming some incredibly long video filenames to shorter ones, and another time by re-authorizing my computer to my iTunes account (the same computer is authorized twice now). The two latest occasions of this annoying and poorly-handled bug I was unable to recover from without doing a full restore of my iPhone. The most recent incident occurred right after I tried placing only five (5) iTunes U videos onto my iPhone. I tried unsyncing the files and taking them off the phone, but the "No Content" bug still remained.
    Does anyone have any idea why this is happening to quite a large number of iPhones? I have a theory that if too much media content is placed on the iPhone, the index of the file system somehow gets corrupted on the iPhone and it can no longer recognize the content that is on the device. I'm basing this off of previous experience with when I synced a television series with incredibly long filenames and received the "No Content" bug and most recently with the iTunes U videos (which had fairly long filenames themselves).
    It seems like quite the engineering flaw if the iPhone is touted as a multimedia device with so much storage if you can't use most of the storage to actually go towards the use of media.
    Does anyone know how to remedy this "No Content" bug WITHOUT having to do a full restore of the iPhone? I shouldn't have to restore my phone every time I want to put new videos on it.

    Graham Outterside wrote:
    I will be annoyed but I wouldn't put on my acting outfit and run around the plane like a Prima Donna claiming the world is at an end for certain.
    People generally get help more easily when their posts are short and to the point like yours. Longer rambling, hand wringing posts such as the OP tend to put the helpers off.
    And "helpers" like yourself tend to put off those seeking help by making condescending remarks, insulting them by calling them names, and coming off as an arrogant, sarcastic jerk. The "rambling" post was to help give the different situations in which I encountered the same problem, hoping it would somehow help diagnose the root issue (much like describing symptoms to an illness) and help those that have a similar issue in the future.
    "incredibly fatal flaw" - its a minor bug on a few machines and hardly the end of life as we know it ?
    "Minor bug" and "incredibly fatal flaw" are subjective to the person's viewpoint. An error in some spreadsheet program that adds several cells together incorrectly can be seen as a minor bug to someone who doesn't use spreadsheets all that often, but can be viewed as a "fatal flaw" to an accountant that works with numbers every day.
    Occasionally, when I sync my iPhone up to my computer
    So its not doing it all the time then ?
    No, it is not all the time because I don't sync videos to my iPhone all the time. Audio content is the primary thing that I change out on my iPhone on a regular basis and this "No Content" issue only presents itself when I either add movies or TV shows.
    THIS HAS HAPPENED ON FOUR (4) SEPARATE OCCASIONS.
    So thats the sum total of times in how many years you have had it ?
    I used the collective "my iPhone" in my OP when stating that I enjoyed it for many years. I've had both the iPhone 2G and 3G without this issue ever coming up, but with the 3GS I've had this issue come up 4 times. That's 4 times in less than a year. Note that these 4 times are for the total times in which a simple re-sync could not resolve the issue, otherwise the "No Content" bug count would be much higher.
    Does anyone have any idea why this is happening to quite a large number of iPhones?
    There are ten million or more iPhones and three of you on the thread. That is NOT 'quite a large number of iPhones' no matter how dramatic you try to make it sound.
    Just because only three posted in this thread does not mean that there are only three other users that have the problem. Apple's forums aren't the only source for troubleshooting (and with your "help" I'm not surprised more people are not using these forums). Try putting "iphone no content" into Google and I'm sure you'll see many more people like the four in this thread having very similar issues. No matter how much you downplay or how insignificant you try to make it sound does not mean this is an isolated incident.
    I have a theory that if too much media content is placed on the iPhone, the index of the file system somehow gets corrupted on the iPhone and it can no longer recognize the content that is on the device.
    Wrong - I have a full 32Gig of video, TV, music and have never had a problem like your, and I'd bet millions of others haven't either. You are probably correct though that its a file corruption and the way to solve that is with a Restore.
    The reason why I called it a theory is because I have been able to sometimes un-corrupt the file system by unsyncing the video content I put on, which I would think one would not be able to do with a corrupt filesystem. This issue may also be something different such as filenames with excessive periods or very long filenames that could confuse the iPod software.
    It seems like quite the engineering flaw if the iPhone is touted as a multimedia device with so much storage if you can't use most of the storage to actually go towards the use of media.
    Please stop being a drama queen - extrapolating your issue and suggesting the entire iPhone is flawed is ridiculous. The vast majority of people with iPhones use the device to its capacity without fault. To suggest otherwise is a bit naive.
    Your statement has merit, but the constant condescending tone of your post and now resulting to name-calling is a bit childish.
    Do a Restore, not a reset and see how much 'Other" memory resides on the machine.
    If you genuinely have to do a full Restore (which can take hours) then you probably have faulty iPhone in which case Applecare is your friend.
    We actually get to a part where you try to contribute to the conversation, granted we had to scroll down quite a ways to find out your simple answer is "Do a restore or go to Apple." You probably would have saved everyone a lot of time by just writing the one short sentence instead of breaking down my entire post line by line, insulting me, and then giving virtually no help to resolve the problem whatsoever. Now I have probably wasted just as much time responding to your brazen and inconsiderate post.
    I do like to help but do get pretty irritated when people overexaggerate their problems and act as if the world is ending.
    Welcome to the world of technical support. Everyone expresses their problems in their own way. Not everyone can see their problems your way and break them down into words that are pleasing to you, so you shouldn't expect them to and then get irritated at them for reaching out for help in the only way they know how.
    You would probably be better off not helping if this is how you contribute whenever you post a response on these forums. People that get irritated, treat people like excrement, and try to make them feel dumb are not for a support forum or any technical help of any kind. Please do us a favor and stay out of this thread if you're not going to actually help solve the issue or give any kind of helpful information that could lead to a solution.
    Thanks.

  • Help! Event content disappears, but still remains in Finder package

    Hi guys,
    I'm totally stumped here. It seems FCP 10.1.1 has some sort of bug that makes content disappear. Here is what has been happening:
    I upgraded back when 10.1 was released, and everything seemed fine. Around 10.1.1 I decided I wanted to move some things around. So I would click on an event inside of a Library, and I would drag it into another Library. Sometimes it would work great. Sometimes FCP would freeze, beachball, and fail. Sometimes I would leave it for 30 minutes or so just in case it was just doing something. I would eventually have to Force Quit.
    The problem? The events that were to be moved didn't show up in the libraries they were supposed to go to. Not in FCP, and not in the Finder. Instead, they stayed where they were coming from. In FCP, these events no longer had any content in them. Also, they lost the purple star that would be next to events. If I went to that same event inside of the Library (Show Package Contents) ALL content was there. All the clips, the transcodes, the originals...everything. Yet, FCP wouldn't "see" it or display it.
    I thought I had a workaround - copy the original files in those events to the desktop, then reimport them into a new event. Well, that does work IF it was an event that was waiting to be edited. But if it was mid-edit, of course, now all I have is the original clips, but no access to the project or edits.
    And now, it seems to just "happen." I will quit FCP and then relaunch it again when I need it, and I will see another event or two in a library has lost its purple star and no longer has content in it! No idea why or what's causing it. I'm on a new Mac Pro, plenty of RAM (64GB), plenty of space, etc.
    Additionally, when I quit FCP it's normally because the browser window stops updating. What I mean is, I am clicking around between events or libraries looking for clips to add to a project. Then, at some point (and this is random, haven't seen a patterns of it always occurring on any particular event) the browser gets "stuck" on an event. I can click on another event and it will be highlighted as active, but the browser window is still displaying the last event I was in. It isn't frozen, as I can still scroll, look at the clips, etc. At this point, no matter what other event I click on, I am "stuck" with the event browser displaying the contents of that event. So, then I have to quit the app and restart it...and I might find that another event has randomly lost all of its clips and projects.
    Again - in the Finder if I go into the Library package and look in that event folder, EVERYTHING is still in there, nearly organized in the folder structure - yet there is nothing I can do (that I know of) to get FCP to see and display it.
    Totally lost now, and scared to keep firing up FCP for fear or losing even more work...but yet, I have to because this is my job! Any help?

    This kind of problem seems to indicate that somehow the changes you made were not correctly registered in the library's database. This is stored inside the library in a file with .flexolibrary extension.
    A possible solution is to force FCP X to rebuild it. This method has worked on several occasions, but of course there is no guarantee. You may want to make a copy of the affected library before attempting the following.
    Locate the library in the Finder (control-click, Reveal in Finder);
    Quit FCP X;
    (At this point, you may want to make a duplicate of the library, just in case)
    Control-click the library and "Show Package Contents"
    Locate the .flexolibrary file and drag it out of the library
    Restart FCP X.
    If all goes well, FCP X will reconstruct the database from the contents of the library package.

  • Iphone app icons disappeared

    All my iphone app icons disappeared when I downloaded the new OS system.  I can find the apps under "purchased" in Apps, but I am only allowed to open them.  There is no cloud icon indicating that I can reinstall them.  What should I do?

    Scroll your home screen from right to left a couple of times.

  • Mail content disappears...

    Hi,
    i have a problem with Mail.App on my mac..
    Some mails contents disappears !! I can read them on my iPhone, or on my mobile me account, but not on my macbookpro..
    I try to repair premission, delete caches files, etc. Check font book, rebuild mail boxes
    Nothing change
    Have you an idea ??
    Thanks
    Carl

    Thanks Chris,
    However I only have the files that I copied from XP (on USB stick) and I copied them onto the PC which is now running Linux Mint. I made an account in Thunderbird (same email address/password). It created a new folder. I browsed until I found the folder where I had copied the contents and pointed to this folder. When I then opened TB it started by saying it was making a summary. It then showed an empty inbox. Moreover, When I then check the folder, the original files now show 0 bytes. So this does not work for me.
    M.

  • Flex 3 project, all visible content disappears

    This is a bit hard to describe.  It's a complex Flex app for a realtime multiplayer game using socket connections.  Previously, everything worked fine, but after some recent changes there is a point where all visible content disappears.
    What is REALLY odd is that this ONLY happens when the SWF is embedded in an HTML page.  If the SWF is loaded directly by the browser, either locally using file:/// or served by a webserver (i.e. http://localhost:8080/swfs/MySwf.swf) then the SWF works as expected and transitions to the next state without a problem.
    Also of note is that no error is thrown and, yes, I have the debug version of flash installed and can see popup errors by intentionally causing them to test.
    I'm at a loss for how to debug this.  I started by commenting out all sections of the code that had recently changed, but the problem persisted.  Since then, I'm shooting in the dark, commenting out sections and testing.  For a bit, I thought the problem might be with the embed code itself, but I'm using the default generated by Flex Builder and it has not changed in the past 10 months that the last version of this SWF was working.  I've tried using every alternate window mode, but that didn't change anything.
    I've been testing mainly in Safari 4 (OS X), but tried Firefox 3.5 to confirm that the problem wasn't mac-browser specific, and tried Firefox 3 (Ubuntu) to confirm it wasn't OS specific.
    Does anybody know, on a high level, what could cause this kind of problem?  Specifically...
    1)  What can cause the display to suddenly clear?
    2)  What differences are there between running the SWF directly (even loaded from a webserver, so it's not local content) that could affect rendering?
    3)  Any other advice on things to try?
    Attached are two images:
    (a) the one with content elements is the desired effect, and was the result of loading the swf directly, and
    (b) the one with just the plain background image is the result at the same step but embedded in an HTML page
    Thanks!

    Thanks for the suggestion Barna.  I've been doing that, though, and discovered that the code continues to run in the background, not having hit any error.  I literally had logging statements between every line of code in the function where the content disappears, and every logging statement was output as it should be. 
    So, I tried executing a different function that does nothing but change the current state instead, and the problem still occurred.
    The keys points thus far are:
    (1) no error messages thrown
    (2) no errors in the AS3 code
    (3) but a call to currentState = "lobby" (which is the next desired state) causes the contents of the display to vanish
    (4) again, only happens when embedded
    If there is an error, it seems to be in the state change... which is MXML, so I can't log output there, but I'll see if commenting out particular element(s) or changes will shed some light on where an error might be...

  • HT3228 Why is it that when I delete an email message from an account on my iPhone it instantly disappears from the same email account on my wife's iPhone?

    Why is it that when I delete an email message from an account on my iPhone it instantly disappears from the same email account on my wife's iPhone? We both have iOS7 and have imap email accounts.

    not all mail providers sync the send mail part of the mail box
    you can try to contact yahoo if this is the case with them

Maybe you are looking for

  • Macbook pro 10.6.8 slow internet

    Suddenly it is taking forever to load pages.  This is only happening with my computer (not the other 4 apple/mac devices in the house using other OS'). First, I have tried all suggested solutions related to IVP6 and here https://discussions.apple.com

  • Recovered video files that won't play!

    I have recently used a thrid party software to recover deleted video files from an external hard drive. The recovered files will now no longer play in quicktime, any suggestions on how to fix this?

  • Access to Outbound Emails in Interaction Center

    Hello All, In our CRM 2007 interaction centre users send emails to customers through the email component. We would like there to be a capability to view a history of these outbound emails just like there is with inbound emails in the inbox. What are

  • Can't read Raw files from EOS 700D in CS4

    How do I update CS4 and Bridge with ACR 5.0 to accept .CR2 files from EOS 700D? Have tried downloading and installing ACR 5.7 but bridge still opens using 5.0. Any assistance greatly aappreciated, thanks.

  • Invalidate navigation

    Hi, Situation: In our BSP framework to each generated page we add a piece of javascript wich will check the input value on specified inputfields. If the user fills in an exceptional amount we generate a popup (GetVBMessageBox) which warns him/her abo