Uix hideshow tag use to hide a table on a page

I eventually will have several tables on the same page. I want to be able to collapse and expand those tables as needed to show their contents or hide or the whole table on just one line.
I try using the showhide tags and it will show or hide the table as specified in the disclosed attribute.
When I click on the icon on the screen to show or hide the table I get a oracle.cabo.servlet.event.UnhandledEventException
Below is a sample of the code I'm trying to make work.
Thanks, Steve
<?xml version="1.0" encoding="windows-1252"?>
<page xmlns="http://xmlns.oracle.com/uix/controller"
xmlns:ui="http://xmlns.oracle.com/uix/ui"
xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
xmlns:html="http://www.w3.org/TR/REC-html40"
xmlns:bc4j="http://xmlns.oracle.com/uix/bc4j"
               xmlns:uix="http://xmlns.oracle.com/uix/ui"
xmlns:myTemplate="http://www.example.org/demo/templates">
<templates xmlns="http://xmlns.oracle.com/uix/ui">
<templateImport source="base.uit"/>
</templates>
<bc4j:registryDef>
<bc4j:rootAppModuleDef name="EroUserDatebooksBrowseAppModule"
definition="smart.Smartbc4jModule"
releaseMode="stateful">
<bc4j:viewObjectDef name="EroUserDatebooksBrowse" rangeSize="5"/>
<bc4j:viewObjectDef name="EroUserToDoListsBrowse" rangeSize="5"/>
</bc4j:rootAppModuleDef>
</bc4j:registryDef>
<content> <!-- goes with the page tag above. -->
<dataScope xmlns="http://xmlns.oracle.com/uix/ui"
xmlns:data="http://xmlns.oracle.com/uix/ui">
<contents>
<document>
<metaContainer>
<head title="SMART"/>
</metaContainer>
<contents> <!-- goes with document tag -->
<myTemplate:smart_base selectedTab="0" linkText="SMART - Home"
helpPage="Home.htm"
data:studyText="Name@currentStudy@ctrl:httpSession"
data:frameworkText="Framework_Name@currentStudy@ctrl:httpSession">
<contents>
<bc4j:rootAppModuleScope name="EroUserDatebooksBrowseAppModule">
<contents>
<borderLayout >
<contents>
<header text="Event Calendar">
<contents>
<form name="viewCalenderForm" method="POST">
<contents>
                    <hideShow disclosed="true" id="hideEvents">
                    <contents>
<bc4j:viewObjectScope name="EroUserDatebooksBrowse">
<contents>
<table name="viewDatebookTable" width="80%" alternateText="No rows found">
</table>
</contents>
</bc4j:viewObjectScope>
                         </contents>
                         </hideShow>
</contents>
</form>
</contents>
</header>
</contents>
</borderLayout>
</contents>
</bc4j:rootAppModuleScope>
</contents>
<start>
<sideNav>
<contents>
<link text="Sites" destination="Sites_View.uix"/>
</contents>
</sideNav>
</start>
</myTemplate:smart_base>
</contents>
</document>
</contents>
</dataScope>
</content>
<handlers>
<event name="null">
<bc4j:findRootAppModule name="EroUserDatebooksBrowseAppModule">
<bc4j:findViewObject name="EroUserDatebooksBrowse">
<bc4j:setPageProperty name="TableName" value="EroUserDatebooks"/>
<method class="smart_package.FrmFilters" method="SetWhereUser"/>
</bc4j:findViewObject>
<bc4j:findViewObject name="EroUserToDoListsBrowse">
<bc4j:setPageProperty name="TableName" value="EroUserToDoLists"/>
<method class="smart_package.FrmFilters" method="SetWhereUser"/>
</bc4j:findViewObject>
</bc4j:findRootAppModule>
</event>
</handlers>
</page>

Jeanne,
I'm not understanding something about your code snippet. I've tried to make it work a number of ways including typing it in exactly the way you entered it, just wrapping it around a simple <table> </table> pair.
It seems to be a problem with the event handlers themselves, I think.
I have tried setting up one event with the "hide show" parms as you showed. I also tried setting up two events, one with hide and one with show. No luck.
Below is the code I am trying to run. Can you spot what is wrong?
Also, I want the hidshow to be able to wrap a couple of headers and associated forms. Can I use the hideShowHeader for that or should I use hideShow?
Thanks very much, Steve.
<?xml version="1.0" encoding="windows-1252"?>
<page xmlns="http://xmlns.oracle.com/uix/controller"
xmlns:ui="http://xmlns.oracle.com/uix/ui"
xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
xmlns:html="http://www.w3.org/TR/REC-html40"
xmlns:bc4j="http://xmlns.oracle.com/uix/bc4j"
xmlns:myTemplate="http://www.example.org/demo/templates">
<content>
<dataScope xmlns="http://xmlns.oracle.com/uix/ui"
xmlns:data="http://xmlns.oracle.com/uix/ui">
<contents>
<document>
<contents>
<hideShowHeader text="Other HideShow Header" formSubmitted="true" id="hideShow-2">
<boundAttribute name="disclosed">
<comparison type="equals">
<defaulting>
<dataObject select="hideShow-2" source="${uix.pageState}" />
<fixed text="hide" />
</defaulting>
<fixed text="show" />
</comparison>
</boundAttribute>
<contents>
<header text="Event Calendar">
<contents>
<form name="viewCalenderForm" method="POST">
<contents>
<table name="viewDatebookTable" width="80%" alternateText="No rows found">
</table>
</contents>
</form>
</contents>
</header>
</contents>
</hideShowHeader>
</contents>
</document>
</contents>
</dataScope>
</content>
<handlers>
<event name="hide">
<set property="${param.source}" target="${uix.pageState}" value="${param.event}" />
</event>
<event name="show">
<set property="${param.source}" target="${uix.pageState}" value="${param.event}" />
</event>
</handlers>
</page>

Similar Messages

  • Display Tag use with JSF Data Tables

    Has Anyone got to work the Display tag with JSF
    I have got soo far to display the table by using Display tag with JSF dataTables but unable to have a link or command button to navigate
    Theirs a online hack available for the same .....But i am unable to get to run it
    Has anybody got the solution for the same

    Hi ,
    I am trying to do the same but I have no success.
    My code is
    <html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
         xmlns:f="http://java.sun.com/jsf/core"
         xmlns:h="http://java.sun.com/jsf/html"
         xmlns:jsp="http://java.sun.com/JSP/Page"
         xmlns:c="urn:jsptld:http://java.sun.com/jstl/core"
         xmlns:display="urn:jsptld:http://displaytag.sf.net">
    <jsp:directive.page contentType="text/html; charset=UTF-8" />
    <jsp:directive.page import="fi.tavutaito.hibernate.User,java.util.*,org.displaytag.tags.TableTag" />
         <h:dataTable value="#{sessionScope.users}" var="user" style=""/>
         <display:table name="sessionScope.users" class="" id="user">
              <display:column property="username"/>
              </display:table>
    </html>
    where users is a List Obj in the session. In output I receive just this page.
    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:c="urn:jsptld:http://java.sun.com/jstl/core" xmlns:display="urn:jsptld:http://displaytag.sf.net">
    <jsp:directive.page contentType="text/html; charset=UTF-8"></jsp:directive.page>
    <jsp:directive.page import="fi.tavutaito.hibernate.User,java.util.*,org.displaytag.tags.TableTag"></jsp:directive.page><table style="">
    <tbody>
    <tr>
    </tr>
    <tr>
    </tr>
    </tbody>
    </table>
         <display:table name="sessionScope.users" id="user">
              <display:column property="username"></display:column>
              </display:table>
    </html>
    It seems to that display tags are not parsed...
    Do zou have an idea?
    Thanks a lot in advance
    beppoz

  • How to hide a table row in pdf  using javascript?

    How to hide a table row in pdf  using javascript?

    This is only possible with LiveCycle Designer forms, not PDF forms created
    in Acrobat.

  • How to get Hide/Show using details in advanced table

    Hi,
    I develeoped one custom page using advanced table region and i used detail from advanced table for getting hide/show functionaliy in one column in that table. It is showing hide/show properly..but if I click on Show it is not doing any action..pls let me need to write any code in CO for getting action..
    Thanks in advance,
    Hanimi......

    If you are using the same VO and you execute in on page load then it must populate all view attribute.
    Check in back end that is there any data in that VO attribute exists or not.
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to hide system tables when using the Oracle SQL Developer?

    Hi,
    I would like to know how can I show only the tables that I created under the Tables tree? I didnt find a way to create a separate database using the Oracle Sql Developer. I see all the tables together, and would like to differentiate between different databases.
    Can anyone explain to me how to do these things?
    Thanks,

    Hi,
    I would like to know how can I show only the tables that I created under the Tables tree? Your posting is not clear,again tell something more on tables tree,what u want to achieve with it.
    How to hide system tables when using the Oracle SQL Developer? if u connected with sys, system or user with dba role then u have a privilege to see these tables,so revoke the privilege/role from ur user to view this tables if ur connected other then sys,system,
    I didnt find a way to create a separate database using the Oracle Sql Developer. DBCA is a tool for creating the new database.
    Kuljeet

  • How to hide the table header if no data present

    Hi
    I need to hide the table header if no data present. Table has 5 column. if no any clolumn has data then this table section should not be display.
    i am using <?if:count(Installation_Event_S19)= 0?> but this is not work for me.
    Could you please help me out.
    Thanks
    Indrajeet Kumar

    Hi Priya,
    Thank you very much !!! its work fine.
    Thanks
    Indrajeet Kumar

  • How to hide the table control column in module pool

    Dear Experts,
    Please help me on this
    I have 2 screens 9000 and 9001 . In screen 9000 I have 2 radio buttons if I select the 2nd radiobutton then the screen  9001 should display inthat some column has to be hide inthe table control. I have used this code but still it is not hiding please help me on that
    I used this code in PBO of 9001 screen
    LOOP AT SCREEN.
        IF wopr = 'X'.
          IF screen-group2 = 'ABC'.
            IF screen-name = 'ZMMT_EKKO-MATNR' or screen-name = 'ZMMT_EKKO-BANFN'.
            screen-active = ''.
              screen-invisible = '1'.
              screen-input = ''.
              MODIFY SCREEN.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDLOOP.
    Even I tried this code also in the same screen 9001
    loop at tbl_rfq-cols into cols.
    IF wopr = 'X'.
    IF screen-group2 = 'ABC'.
    IF cols-screen-name = 'ZMMT_EKKO-MATNR' or cols-screen-name = 'ZMMT_EKKO-BANFN'.
    cols-screen-input = '0'.
    cols-invisible = '1'.
    endif.
    MODIFY tbl_rfq-cols FROM cols INDEX sy-tabix.
    endif.
    endif.
    endloop.

    Hi Balaji,
    To hide a column in a table control on screen.
    In the PBO of the screen, inside
    loop with control <tab_ctrl_name>.
    module modify_tab.
    endloop.
    Say for a column, you take group1 as 'ABC'.
    In this module you can use the group for the input/output fields and the display/hide them as per your requirements.
    if <condition>.
    loop at screen.
      if screen-group1 = 'ABC'. "say textbox (column for a table) has group1 as ABC
       screen-invisible = 'X'. "hide a column
       screen-active = ' '.
      endif.
      modify screen.
    elseif <condition>.
    loop at screen.
      if screen-group1 = 'ABC'. "say textbox (column for a table) has group1 as ABC
       screen-invisible = ' '. "display a column
       screen-active = 'X'.
      endif.
      modify screen.
    endif.
    Similarly, you can use this code for other columns also.
    Hope this solves your problem.
    Thanks & Regards,
    Tarun Gambhir

  • Adobe Form - Hide a table row if a condition met

    Hi Helper
    I am learning how to use Adobe Form - and I am trying to hide a table row if a condition is met by using Formcalc/Jave script - but I donot know how - I was told that I can use "....presence = 'hide'  " property in on of the event(?) but donot know how to write the qualified name for the varable row and what event to use. Could someone please show me how
    Points will be rewarded.
    Thanks

    Hi Liem,
    Here is some more information:
    1)
    Accessing data in Table Cell
    xfa.resolveNode("xfa.data.my_data.tableData[" + this.parent.index  + "].column1").value
    2)  Accessing data nodes in Context
    xfa.datasets.data.my_data.second_node.an_attribute.value == "3"
    I think you will find the WebLog below very useful for your requirements.
    /people/juergen.hauser2/blog/2007/09/03/accessing-data-nodes-in-sap-interactive-forms
    -regards,
    harman

  • Hide The Table in Table-Control Dialogue Programming

    Hi all,
    How to hide the TABLE itself (not the columns only but the whole table completely) in table-control in dialog-programming.can any one please help me.....
    Regards,
    Biswajit

    Hi,
    use the screen table.
    delclare as a "table" for the  group properties of that table element.
      LOOP AT SCREEN.
    if screen-goupt1 = "table"
       if the pushbutton = 'HIDE'  
            screen-required = 0.                            
            screen-invsible   = 0.                         
            screen-input    = 0.                          
            MODIFY SCREEN.
       ELSEIF  the pushbutton = 'SHOW'
            screen-required = 0.                           
            screen-invsible  = 1.                            
            screen-input    = 0.                           
            MODIFY SCREEN.
         ENDIF.
    endif.
        ENDLOOP.
    it solves your problme.
    Thanks

  • How do I Hide a Row in a Table in a Pages document?

    How do I hide a row or column? There is a command to "unhide" but not to hide. Because I cannot hide anything, the unhide command is greyed out - what did Apple do with the Hide Rows command for Tables in Pages? Hide it? lol!
    It does not show up in a search of Help - in fact, there isn't even a mention of "unhide" despite there being a command for it!
    Why do I want to hide a row? Because if I have an 8 row table in a Pages Template and I only need six of them, deleting the other two breaks all the formulae and inserts #Ref! errors across each formula, rather than automatically altering cell references as other spreadsheets do. In Numbers hiding the cells makes them disappear and does not break the formulae, but this behaviour seems to be missing from Pages.
    Or is it me that has missed somethng?

    I thought that the descriptions given in the Help are clear.
    The ADDRESS function constructs a cell address string from separate row, column, and table identifiers.
    ADDRESS(row, column, [type], [style], [table])
    row: The row number of the address.
    column: The column number of the address.
    I dropped the comments about type, style and table as I don't use them here.
    =IF(ISBLANK(INDIRECT(ADDRESS(ROW(),1))),"",INDIRECT(ADDRESS(ROW(),2))*INDIRECT(A DDRESS(ROW(),3)))
    INDIRECT(ADDRESS(ROW(),1))
    returns the contents of the cell whose row is the same than the one containing the formula \[the row number is given by ROW()] and whose column is the 1st one)
    INDIRECT(ADDRESS(ROW(),2))
    returns the contents of the cell whose row is the same than the one containing the formula \[the row number is given by ROW()] and whose column is the 2nd one)
    INDIRECT(ADDRESS(ROW(),3))
    returns the contents of the cell whose row is the same than the one containing the formula \[the row number is given by ROW()] and whose column is the 3rd one)
    In short, when the formula is applied in row 9 it behaves like:
    =IF(ISBLANK(A9),"",B9*C9)
    The long syntax is required to be able to enter it only once in the header cell as described in the Help and in the PDF User Guide in a chapter entitled "Applying a Formula Once to Cells in a Column or Row".
    As we want to use such a formula, it would be odd to destroy its ability using a different formula in a standard bottom row.
    More, in a footer row, we may use shorter formulas than in other rows.
    In a standard row 10 we would have to write =SUM(D2:D9)
    in a footer row we enter only =SUM(D) which add the contents of every standard cells of the column D.
    This feature is also described in the named resources.
    Yvan KOENIG (from FRANCE vendredi 3 octobre 2008 18:21:13)

  • How to hide this table if my record in display table =null?

    i create a list to display record inside the table. If i wanna hide my table in case the list no any record. What statement should i add on? i may using <c:choose> ?
    <tr>
    <td colspan="3">
    <fieldset>
    <legend>CSC Listing</legend>
    <table>
    <tr>
    <td colspan="4">
    <display:table name="CSC" pagesize="10" id="csc" sort="list" defaultsort="3" requestURI="/csc.do?submit=SEARCH" class="model" >
    <display:setProperty name="paging.banner.placement" value="both"/>
    <display:setProperty name="paging.banner.some_items_found" value=""/>
    <display:setProperty name="paging.banner.one_item_found" value=""/>
    <display:setProperty name="paging.banner.all_items_found" value=""/>
    <display:setProperty name="paging.banner.no_items_found" value=""/>
    <display:setProperty name="paging.banner.onepage" value=""/>
    <display:setProperty name="basic.msg.empty_list" ><center>No Record(s) was found.</center></display:setProperty>
    <display:column ><html:radio property="cid" value="${csc.id}" /></display:column>
    <display:column title="CSC ID" sortable="true"><cut value="${csc.merchantId}"/></display:column>
    <display:column title="CSC Number" sortable="true"><cut value="${csc.merchantNo}"/></display:column>
    <display:column title="CSC Name" sortable="true"><cut value="${csc.name}"/></display:column>
    </display:table>
    </td>
    </tr>

    You need to use an IF statement. I dont use jstl so youll have to find the syntax yourself.

  • Show or Hide empty table based on If condition

    I want to show or hide empty table based on condition. The table will be empty with 5 rows,2 cols and should display if <?Rout_Information1_id1?> is blank or null or when XML field is not present. Actually the JDEdwards report will generate XML file. In the XML file if <?Rout_Information1_id1?> is present it will have definitely value like 'PULL' or 'Cut' otherwise sometimes XML field itself will not be present. Need to display the empty table when the <?Rout_Information1_id1?> is not present. I am trying to do as below but the table is not displayed. Can someone tell me how to resolve this.
    <?if:Rout_Information1_id1=' '?>
    5 rows,2 cols table
    <?end if?>
    Thanks,
    Vijay Vattiprolu

    Ok. I used the below syntax from other post and it resolved displaying empty table issue.
    <?if:not(XML_TAG_NAME)?>
    <?end if?>
    Thanks,
    Vijay

  • Replacing HTML tags using HTMLEditorKit etc.

    Hi
    Not sure if this is the best place to ask this. I've searched without finding much.
    Basically I am trying to create a HTML template system for output. User's can change the templates to change the program output.
    The templates are basic HTML with custom tags inserted, that reside in a templates directory. For example, a simple template might be:
    <html><body>
    <table width="100%"><tr><td width="25%">Here is the output:</td>
    <td> <insertOutputHere> </td>
    </tr></table>
    </body></html>
    ^^ Users would be able to edit these template .htm files to affect the output .htm files. For instance, changing where the <insertOutputHere> tag is, or formatting the table it is output to.
    I am using the Swing HTMLDocument, HTMLWriter, HTMLEditorKit classes to load and parse the .htm files, iterate the tags and replace any custom tags (defined in code) with the program output. I have been able to locate these custom tags no problem, but I don't know how to replace this tag entirely with my output (Which will be formatted HTML string). I have been trying to use the insertBefore, insertAfter methods with limited success. In particular I have an 'include' custom tag which includes other files by recursion - it works except the <include> tag is not removed, and depending on which insert method I use, it usually goes into an infinite loop of parsing the <include> tag WITHOUT removing it, then picking it up again when its done.
    Basically I'm looking for any advice as to how to go about COMPLETELY REPLACING these tags with a well structured HTML string. I can post some code if need be but I barely comprehend what I've done, LOL.
    TIA

    I've looked over my mess of comments :)
    setOuterHTML is what I was previously using and it was quite unpredictable at times, as far as I could tell it is very strict with it's requirements for structured HTML (EG no floating line breaks, everything must be "paragraph-ised" which b0rks up the layout) and I can't rely on anyone using/extending these classes to write well structured HTML.
    I remember the problems being quite odd, such as the output for one custom tag being displayed twice for some and not at all for others, and while it isn't critical data, it was still displayed in a way that it could be interpreted as correct - I just knew it wasn't.
    So I dropped setOuterHTML to try insertAfterEnd - this leaves the tags in there and, like roughly explained above, it would pick up tags infinitely because they were not being replaced.
    Here is a relevant method to give a better idea of what I've done:
           public HTMLDocument parseHTMLfile(String filename, Custom_HTML_Tag tags[]) {
          //create a document
             HTMLDocument doc = (HTMLDocument)kit.createDefaultDocument();
             fileDepth++;
             try {
             //read in the file
                BufferedReader rd = new BufferedReader(new FileReader(filename));
                kit.read(rd, doc, 0);
                if (tags != null) {
                //replace tags with page content
                   ElementIterator it = new ElementIterator(doc);
                   Element e;
                   while ((e = it.next()) != null) {
                   //look for includes
                      if (e.getName().equals("include")) {
                         if (fileDepth >= 5){
                         //WARNING:
                            System.out.println("fileDepth has reached 5, include may be recursive. aborting.");
                            continue;
                         String href = (String)e.getAttributes().getAttribute(HTML.Attribute.HREF);
                      //grab parent of current file (IE the folder in which it sits)
                         File f = new File(filename);
                         String include = f.getParent() + sep + href;
                         f = new File(include);
                         if (f.exists()) {
                            HTMLDocument htmld = parseHTMLfile(include, tags);
                            StringWriter sw = new StringWriter();
                            HTMLWriter w = new HTMLWriter(sw, htmld);
                            w.write();
                            doc.setOuterHTML(e, sw.toString());
                         else {
                         //couldnt find include file - warning
                      for (int i=0; i < tags.length; i++) {
                         if (e.getName().equals(tags.getName())) {
    //doc.setOuterHTML(e, tags[i].getText());
    doc.insertAfterEnd(e, tags[i].getText());
    //System.out.println("found tag: " + tags[i].getName() + ": " + tags[i].getText());
    catch (BadLocationException ble) {// cant happen?
    System.err.println("ERROR (" + 999 + "): Could not parse document " + filename + "; BadLocationException");
    System.err.println(ble);
    catch (FileNotFoundException fnf) {
    System.err.println("ERROR (" + 999 + "): Could not parse document " + filename + "; File not found");
    //System.err.println(fnf);
    catch (IOException ioe) {
    System.err.println("ERROR (" + 999 + "): Could not parse document " + filename + "; I/O Error:");
    System.err.println(ioe);
    fileDepth--;
    return doc;
    setInnerHTML kills it with the 'Can not set inner HTML of a leaf' error
    Thanks

  • Question with uix:dateField tag

    hi,
    I am trying to use the dateField tag of uix. when we write the dateField tag as <uix:dateField /> it creates a calender. but when I click on the calender nothing shows up. In the tag Itself there are various attribs like the destination, minValue, maxValue etc probably the destination takes us to the calender!! I do have a script that opens up the calender but i suppose the dateField does that for us and If I want to validate the field a client side vadilation also is available
    http://otn.oracle.com/jdeveloper/help/ under <uix:date>
    but how do i use it in my context
    this is the normal HTML code with script that will show the calender and set the value of the datebox(the one I am using now)
    <input type="text" name="datebox" >
    <a href="javascript:show_calendar('protletForm.datebox');
    onmouseover="window.status='Date Picker';return true;"
    onmouseout="window.status='';
    return true; ">
    <img src="/avegaPortlets/cabo/images/cache/c-dp.gif" width=20 height=24 border=0>
    </a>
    how do i get to it with the <uix:datefield> tag along with the validation?? can anybody please help me on this !!!
    thanks,
    vasanth

    hi,
    thanks so much. ::::)
    It did work with the <uix:form name = "something"> tag.
    could you tell me what is the equivalant to the <form action = "something here"> in the <uix:form> tag???? like is it <uix:form destination = "some java class">?? will this work??
    when I hit submit I want to form to be submitted and the values in the form read by my "something here" java class.
    regards,
    vasanth

  • Please help me- hide the table in xml template

    Display the PDF output sum table not a return any data, I want to hide that table's
    Edited by: 991575 on Mar 4, 2013 1:12 AM
    Edited by: VEERUAPPS on Mar 31, 2013 10:05 PM

    Hi ,
    1.If bi is integrated with bo then you create YTD variable using customer exit as processing type in BEX report and use this variable in WEBI Report.
    2.You create one variable for start of the year by using concatenation function("1/1/2010") and create on variable for current date and use the between function in the prompt in the webi reports.
    Hope it will give some idea.
    Regards,
    Ramnaresh.P.

Maybe you are looking for

  • En_server_install_disc_windows_home_server_2011_x64_dvd_658487.iso

    I recently moved and lost my homeserver software, where can I download another ISO. I need to re-install. Thanks ahead of time, Hope all have a wonderful day. Michael Dreyling

  • Citrix Viewer Error in Yosemite but not Mavericks

    I connect to a corporate system through the web. The Citrix server is old and they will not make any updates to help. Currently, the method of connecting is through a website link that is an .ica file. In Safari, of course, it just opens a browser ta

  • Message Problem. Please help.

    Earlier this morning I encountered a problem. My girlfriend received a text message that I didn't even type. It wasn't even in the copy paste. It was different a message from what I replied to her. I didn't even see it my inbox, that I sent it. She f

  • DataGrid/ComboBox/ItemEditor

    Hi all, I've got a DataGrid, "dg", whose dataprovider is set to an array of "thing" objects. Each row then has several columns using a custom renderer, a canvas containing a combobox. The combobox's dataprovider is set to thing's array of "subthing"

  • [JS] Replace a slash in a file path

    Hi. I have got the path for a file which contains slashes "/" I need to use that path in my Javascript to load styles into my Application. The syntax for that part requires colons to separate the folders, so I need to replace the slashes in the path.