Not finding what you are looking for? Request a recipe!

  1. Avg. Rating 5.0

    LCDS: Creating a PDF form with localized captions

    Edit the XML source of the PDF form, add a <setProperty> tag to add data binding for the caption and add XML nodes to your data source for the captions.

  2. Avg. Rating 4.8
  3. Avg. Rating 4.5

    Time slicing

    The solution is to only use part of the frame time to process data and yield when processing time in the current method call exceeds a certain amount of time. Then carry on at the next frame until processing of all data items is over. For this, you need to use callLater().

  4. Avg. Rating 4.5

    Garbage collection

    Use the well-known LocalConnection hack to release memory on a regular basis using a timer.

  5. Avg. Rating 4.4
  6. Avg. Rating 4.3

    Displaying column header tooltips in an Advanced Datagrid

    Set showDataTips to true on the AdvancedDataGridColumn tags, set the dataTipFunction on the AdvancedDataGrid tag and write the corresponding function to return the tooltips.

  7. Avg. Rating 4.3

    Formatting tree data in an Advanced Datagrid

    Add a field to the entity of your dataprovider to hold the formatted data as a string in an extra property.

  8. Avg. Rating 4.3

    LCDS: Displaying a Datagrid in a generated PDF

    Create a PDF form with a table in Adobe LiveCycle Designer, in Flex loop through the data provider of your datagrid and create a XML node for each row, then send the XML data to the LCDS server for the document generation.

  9. Avg. Rating 4.3

    LCDS: Using the PDFResourceServlet to read the generated PDF

    Register the PDFResourceServlet in the web.xml file of your web application and call it, passing the same ID that was used to write the PDF in the session

  10. Avg. Rating 4.0

    Gradient Box

    Extend the Box component and override the updateDisplayList() method