Documentation for Javascript Functions

Where do I find documentation for APEX provided javascript functions such as addRow();?

WaltK wrote:
Where do I find documentation for APEX provided javascript functions such as addRow();?
addRow is undocumented.
Documented JavaScript methods are described in the API Reference, other documentation for the current version is located on the APEX Documentation page. Documentation for previous versions is located in the documentation archive.

Similar Messages

  • Documentation for XQuery Functions?

    I have been looking for more information on the Aqualogic specific XQuery functions but have so far come up short. In particular I want to know the details for fn-bea:uuid(). I would like to be able to generate a unique identifier to use for correlating messages that come through ALSB in my log. Is there somewhere that I can find a description of what this function does?

    WaltK wrote:
    Where do I find documentation for APEX provided javascript functions such as addRow();?
    addRow is undocumented.
    Documented JavaScript methods are described in the API Reference, other documentation for the current version is located on the APEX Documentation page. Documentation for previous versions is located in the documentation archive.

  • Documentation for SAP function modules??

    Hello,
    is there any documentation for the SAP function modules available?
    I need documentation for SJ01 (SAP Objects). If I try to view the documentation in SE80, I get the error message: "Document OJ_XXX(whatever I selected) is not available in language DE"
    Where can I get this documentation?
    Is there an overview+documentation available somewhere of all SAP functions which may be used for own programs? Or how do I know what's already available and how to use it?
    Thanks
    Steffi

    Hi,
    Go thru this links
    http://sap.ittoolbox.com/topics/t.asp?t=303&p=449&h2=322&h1=303&h3=449
    http://www.erpgenie.com/abap/functions.htm
    Thanks
    Sunil

  • Documentation for JavaScript event handlers

    Hi!
    Can someone tell me where(link) could I find documentation or
    examples for JavaScript event handlers.
    THANK YOU!

    There are realy many javascript resources on the web. These are
    2 of them:
    http://www.webdevelopersjournal.com/JavaScriptWeenie.html
    http://www.tech.irt.org/articles/js058/
    Hi!
    Can someone tell me where(link) could I find documentation or
    examples for JavaScript event handlers.
    THANK YOU!

  • Documentation for V function

    Hi Folks,
    Sprinkled throughout lots of the documentation there is a reference to the "v()" function.
    Examples include "v('APP_USER')" and similar.
    Since this function doesn't appear to be part of a PL/SQL package, using it perturbs me slightly: I always
    like to have at least some sort of grasp of what I'm using and although I am grateful for all the folk that
    show examples of its use, there's nothing like having the fundamental definition to make a Developer sleep
    a little easier at night... :-)
    Can any kind soul give a URL for the place in the documentation where it describes this mysterious function
    please?
    Thanks in advance
    Mungo

    Thanks to (currently) the two respondents. Though I didn't state it, it was the API documentation that I
    was seeking, hence I marked "jarola" as Correct. The other respondent was most helpful too.
    Follow-on question: if I use "v(...)" in a database table trigger, that trigger runs in the database and (I think) only has
    access to the schema's code as well as the usual built-ins.
    Since this function belongs to Apex, how is it "attached" to my schema? When I specify a schema to be linked to a Workspace,
    is this where the linking occurs?
    Hoping you can see my question through the fog of feeble words I've used; thanks in advance.
    Mungo

  • Documentation for Acrobat X Javascript?

    Where is documentation for Javascript in Acrobat X?  The help file mentions:
    "For more information, see the JavaScript™ for Acrobat® API Reference on www.adobe.com/go/learn_acr_javascript_en (PDF, English only).", but the linked page does not contain any information for Acrobat X.

    I do not think there have been any changes to Acrobat JavaScript in Acrobat X, so all the documentation for Acrobat 9 should work. There is an SDK for Acrobat X Portfolios that might have some new JS objects.
    I still reference the version 8 reference and the version 5 reference.

  • Problem using javascript function?

    Hallo,
    i integrate a file for javascript functions with this code
    <afh:head title="#{res['pob.login']}">
    <meta http-equiv="Content-Type"
    content="text/html; charset=ISO-8859-15"/>
    <script type="text/javascript" src="../Javascript/Funktionen.js"></script>
    </afh:head>
    in the file Funktionen.js i have the following functions
    function deleteWarning()
    return confirm("Wollen Sie den ausgew" + String.fromCharCode(228) + "hlten Datensatz wirklich l" + String.fromCharCode(246) + "schen ?");
    function testFall()
    return confirm("Wollen Sie den ausgew" + String.fromCharCode(228) + "hlten Datensatz wirklich l" + String.fromCharCode(246) + "schen ?");
    the first function i can use, the second not. Why?

    Thank you for checking the code Frank. So i can look what is the problem.
    The reason is i/we using firefox and changes in the javascript definition only checked when the cache has been cleared!

  • Replacement  for a function module in  6.0

    Hi
       I  am in the process of upgrading from 4.7 to 6.0 . The function module SAPWL_STATREC_READ_FILE is flagged as obsolete . Am unable to find a documentation for this function module . So which is the replacement for this function module . ?
    Please help . .

    hi,
    the replacement is SAPWL_STATREC_DIRECT_READ
    next time check the source code of the FM, probably you'll find the answer...
    hope this helps
    ec

  • Parsing JSP values on to javascript functions

    HI
    Is it possible for Javascript functions to accept JSP variables?
    For instance:
    <script language="Javascript">
    function selectEdit(fileID) {
       document.forms[0].recordID.value = fileID;
       document.forms[0].submit();
         </script> and a button calls the method like this:
       <input type="submit" name="Submit" value="View" onClick="selectEdit('<%= Record %>'")> I tried but was unsuccessful, can someone help?
    Thanks
    Eugene

    Lets say you use your JSP to generate a set of links
    page1.jsp:
    <form target="targetPage.jsp">
    <input type="hidden name="recordId");
    <% for (int record=0; record<10; record++){  %>
      <input type="submit" name="Submit" value="View" onClick="selectEdit('<%= record %>')">
    <%  }  %>
    </form>This JSP code runs, and generates the following
    <form target="targetPage.jsp">
    <input type="hidden name="recordId");
    <input type="submit" name="Submit" value="View" onClick="selectEdit('0')">
    <input type="submit" name="Submit" value="View" onClick="selectEdit('1')">
    <input type="submit" name="Submit" value="View" onClick="selectEdit('2')">
    <input type="submit" name="Submit" value="View" onClick="selectEdit('3')">
    <input type="submit" name="Submit" value="View" onClick="selectEdit('4')">
    <input type="submit" name="Submit" value="View" onClick="selectEdit('5')">
    <input type="submit" name="Submit" value="View" onClick="selectEdit('6')">
    <input type="submit" name="Submit" value="View" onClick="selectEdit('7')">
    <input type="submit" name="Submit" value="View" onClick="selectEdit('8')">
    <input type="submit" name="Submit" value="View" onClick="selectEdit('9')">
    </form>This gets sent to your browser on displayed on screen
    When you click on the appropriate button, it calls your function selectEdit, which sets the value of the hidden field according to which button you pushed.
    It then submits the form, to targetPage.jsp
    targetPage.jsp retreives the value using request.getParameter("recordId");
    which is the name of the hidden field being submitted.
    JSP reacts to form submissions, and produces an HTML page.
    The HTML page can then run java script
    JSP gets run again when you submit the form.
    Hope this helps,
    evnafets

  • Trouble creating Variant format for ActiveX Function (MintMT Controller)

    Hello!
    I am creating a VI to control 2-axis motion using the MintMT activeX library and have run into a problem.  I was able to easily call and execute functions from Labview until I ran into one (VectorA) that requires an array of variant input.  I cannot format my input correctly and have exhausted myself trying different combinations of building this array and converting to variant type (To Variant). I also have wired Labview arrays directly (with no luck). The arrays are very small (only 2 elements). Finally I tried the OpenG library (Cluster to Varray and Array to Array of Vdata) without success.  The error code is: LabVIEW:  (Hex 0x80070057) One or more arguments are invalid.
    Any advice?
    Attached is the documentation for the function:
    VectorA
    Prototype:
    VB      VectorA(nNumberOfAxes As Integer, nAxesArray As Variant,
                    fPosArray As Variant)
    Delphi  VectorA : (nNumberOfAxes: Smallint; nAxesArray: OleVariant;
                       fPosArray: OleVariant)
    C++     void VectorA(short nNumberOfAxes, VARIANT nAxesArray, VARIANT fPosArray);
    C       void VectorA(__int16 nNumberOfAxes, __int16 *nAxesArray, float *fPosArray);

    Hi Mr. NiceGuy,
    The code from the manufacturer has a To Variant converter between the arrays and the Property Node. I'd recommend converting the arrays to variants in your code. You can find that To Variant VI on the Functions Palette » Programming » Cluster, Class, & Variant »Variant. Let us know if that works.
    Hillary
    Regards,
    Hillary E
    National Instruments

  • Page items are cleared when calling javascript function for a buton.

    Hello,
    Can anyone please help me out with this issue.
    I have a reports region with some editable items and in which I have a button enter errors which opens up an popup window, but for this button i also have save process which updates the report and also calls the javascript function popup window. The reason I am saving the report is because the values entered by user needs to be updated in the table or otherwise the page will be reloaded clearing all the values entered by the user when i click the button enter errors. One more thing is that I also have two hidden items (P1_LOAN and P1_HERITAGE) in the reports region.
    Below is the javascript function which i am calling for the button and also setting the items P2_LOAN_NUMBER,P2_HERITAGE with the values &P1_LOAN.,&P1_HERITAGE.
    function ErrorPopup()
    popUp2('f?p=&APP_ID.:2:&SESSION.::&DEBUG.::P2_LOAN_NUMBER,P2_HERITAGE:&P1_LOAN.,&P1_HERITAGE.','_blank','scrollbars=0,left=200,menubar=0,resizable=0,width=400,height=500,toolbar=0,location=0,directories=0');
    doSubmit('ENTER_ERRORS');
    }And below is my pl/sql update process
    BEGIN
    FOR i IN 1 .. apex_application.g_f01.COUNT
    LOOP
                 IF WWV_FLOW_ITEM.MD5(                                                      
                                           APEX_APPLICATION.G_f10 (i) ,
                                           APEX_APPLICATION.G_f11 (i) ,APEX_APPLICATION.G_f12 (i) ,APEX_APPLICATION.G_f13 (i)) <> APEX_APPLICATION.G_F45 (i) THEN
    -- Update tbl
              UPDATE sampl_tbl
              SET  col1     =      APEX_APPLICATION.G_f10 (i) ,
                         col2     =      APEX_APPLICATION.G_f11 (i) ,
                         col3     =      APEX_APPLICATION.G_f12 (i) ,
                         col4     =      APEX_APPLICATION.G_f13 (i)
                   WHERE pkcol    =      APEX_APPLICATION.G_f04 (i)         
         END IF;
    END LOOP;
    COMMIT;
    END;The only problem I have is, when I open up the popup window the hidden item values P1_LOAN and P1_HERITAGE are lost. Is their a way to set these item values within the session.
    thanks,
    Orton
    Edited by: orton607 on Jul 14, 2010 10:38 AM

    It HELPS when you solve an issue and POST that YOU SOLVED it, to SHARE the solution so others can learn from you found..
    Thank you,
    Tony Miller
    Webster, TX

  • Get table ID for drill down (javascript functions)

    I want to implement some custom drill downs. When you click on a column to drill down, it uses the following javascript function: RTDr(saw_5_6,0,0) where in this case, "saw_5_6" is my current table. Since this is dynamically set and the table name can change, is there a property that i can get this table name from?
    I see where the object is created....(dynamically I might add)
    window.saw_5_6 = new Object();
    saw_5_6.sJSObjName = 'saw_5_6';
    Just wondering if there is a way / property that gives me this information so I can call RTDr() and supply it the correct table name.
    Thanks.
    Edited by: Derek on Nov 9, 2010 2:28 PM

    If there is only one table on the page then you can use my function as it is. I wrote it to implement custom writeback. Of course you can modify it to get all table objects.
    function getSawTableObject(){
         var ptrSawTableObjectName = /saw_.\d/;
         var obj = null;
         for (var propertyName in window){
              if ((ptrSawTableObjectName).exec(propertyName) && String(propertyName).charAt(0) == 's'){
                   obj = window[propertyName];
                   break;
         return obj
    }

  • Javascript Functions for 4.2?

    Does anyone know where to find a list of all the javascript functions in APEX 4.2?

    In the documentation:
    http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35127/javascript_api.htm#CDEEIGFH

  • Where can I find documentation for the HSP* Custom Functions

    I can see a number of HSP functions are registered in Essbase but cannot find any documentation for them. I am reluctant to use them for client development without some proper documentation. Does anyone know where it can be found?
    The functions are :
    @HspNthMbr
    @HspNumToString
    @HspDateToString
    @HspConcat
    @HspMbrIndex
    @HspMessage
    @HspGetMbrCount
    @HspCreateCDFSession
    @HspRemoveCDFSession
    @HspAddPageCombination
    @HspCreateEssbaseServerFile
    @HspWritePageCombinations
    @HspGetFileName
    Many of these look interesting. Some of them seem obvious, others might have a number of paramenters and options.
    Any help appreciated.
    Richard

    Here is the contents of essfunc.xml.  A little bit more information than what is available than in EAS; for example regarding function @HspGetMbrCount, it has a limited function prototype "@HspGetMbrCount(StringArray)" and purpose "Returns the member count of the range provided".  I got this from Oracle/Middleware/user_projects/essbase1/EssbaseServer/essbaseserver1/java.  You can view it more easily in Internet Explorer or vim.
      <?xml version="1.0" encoding="utf-8" ?>
    - <definitions version="6.2.0">
      <macros />
    - <functions>
    - <function name="@HspNthMbr" tssec="1377715749" tsmcs="202567" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.getNthMember(String[],int)">
    - <spec>
    - <![CDATA[ @HspNthMbr(memberRange, PosIndex)
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Returns nth member in the range provided
      ]]>
      </comment>
      </function>
    - <function name="@HspNumToString" tssec="1377715749" tsmcs="224917" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.numToString(int)">
    - <spec>
    - <![CDATA[ @HspNumToString(NumericInput)
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Returns String type value for the numeric value provided
      ]]>
      </comment>
      </function>
    - <function name="@HspDateToString" tssec="1377715749" tsmcs="246968" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.dateToString(int)">
    - <spec>
    - <![CDATA[ @HspDateToString(NumericDateInput)
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Returns String type date in DD/MM/YYYY format
      ]]>
      </comment>
      </function>
    - <function name="@HspConcat" tssec="1377715749" tsmcs="268969" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.makeAString(String[])">
    - <spec>
    - <![CDATA[ @HspConcat(StringArray)
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Returns a single string by concatenating all the values passed to it
      ]]>
      </comment>
      </function>
    - <function name="@HspMbrIndex" tssec="1377715749" tsmcs="291290" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.getMbrIndex(String[], String)">
    - <spec>
    - <![CDATA[ @HspGetMbrIndex(String[], String)
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Returns the member position in the dimension based on outline order.
      ]]>
      </comment>
      </function>
    - <function name="@HspMessage" tssec="1377715749" tsmcs="315045" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.getURL(String[])">
    - <spec>
    - <![CDATA[ @HspMessage(StringArray)
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Returns URL format of the message and parameters
      ]]>
      </comment>
      </function>
    - <function name="@HspGetMbrCount" tssec="1377715749" tsmcs="335521" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.getMbrCount (String[])">
    - <spec>
    - <![CDATA[ @HspGetMbrCount(StringArray)
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Returns the member count of the range provided
      ]]>
      </comment>
      </function>
    - <function name="@HspDateDiff" tssec="1377715749" tsmcs="357494" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.dateDiff(int,int)">
    - <spec>
    - <![CDATA[ @HspDateDiff(fromDate, toDate)
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Returns difference between two dates in days, inclusive of dates passed.
      ]]>
      </comment>
      </function>
    - <function name="@HspDateRoll" tssec="1377715749" tsmcs="379014" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.dateRoll(int,int,int)">
    - <spec>
    - <![CDATA[ @HspDateRoll(startDate, noOfPeriods, periodType)
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Returns the next date, resulting from adding noOfPeriods to StartDate.
      ]]>
      </comment>
      </function>
    - <function name="@HspOffsetIdx" tssec="1377715749" tsmcs="400720" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.getDataOffsetIdx(long[],long[],long[],int,int,int)">
    - <spec>
    - <![CDATA[ @HspOffsetIdx(DataList, StartDateList, EndDateList, BaseValue, OffSet, BaseDate)
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Returns the pointer to data which is nth distinct value, where n is the offset and for that data, gets relevant row based on date array.
      ]]>
      </comment>
      </function>
    - <function name="@HspMbrList" tssec="1377715749" tsmcs="422891" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.getMemberList(String[],long[],int)">
    - <spec>
    - <![CDATA[ @HspMbrList(MemberList, DataList, ChkValue)
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Returns the list of members, at positions corresponding to data same as ChkValue in DataList.
      ]]>
      </comment>
      </function>
    - <function name="@HspNextAllocIdx" tssec="1377715749" tsmcs="445933" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.getNextAllocIdx(long[],long[],int)">
    - <spec>
    - <![CDATA[ @HspNextAllocIdx(dataList,unspAcc,counter)
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Returns the pointer for the first row with no allocation or first row positive allocaction and not a modified row or total
      ]]>
      </comment>
      </function>
    - <function name="@HspStringCompare" tssec="1377715749" tsmcs="469322" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.stringcompare(String, String)">
    - <spec>
    - <![CDATA[ @HspStringCompare(srcstring, trgtstr)
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Does a string compare and Returns the true if sourcestring and target string are same.
      ]]>
      </comment>
      </function>
    - <function name="@JDebug" tssec="1377715749" tsmcs="493564" javaSpec="com.hyperion.calcmgr.common.cdf.DebugFunctions.debug (int , String, String[], double , String)">
      <flag value="RUNTIME" />
    - <spec>
    - <![CDATA[ @JDebug(action, returnAddr, str_array, dblInput, lineKey)
      ]]>
      </spec>
      </function>
    - <function name="@JSendDebug" tssec="1377715749" tsmcs="521638" javaSpec="com.hyperion.calcmgr.common.cdf.DebugFunctions.sendDebug(int , String , String[] , double[] , String )">
      <flag value="RUNTIME" />
    - <spec>
    - <![CDATA[ @JSendDebug(action, returnAddr, str_array,dblInput_array, lineKey)
      ]]>
      </spec>
      </function>
    - <function name="@HspCreateCDFSession" tssec="1377715749" tsmcs="548082" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.createCDFSession()">
    - <spec>
    - <![CDATA[ @HspCreateCDFSession()
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Creates and returns a unique session Id
      ]]>
      </comment>
      </function>
    - <function name="@HspRemoveCDFSession" tssec="1377715749" tsmcs="578942" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.removeCDFSession(long)">
    - <spec>
    - <![CDATA[ @HspRemoveCDFSession(sessionId)
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Removes the session with the provided sessionId
      ]]>
      </comment>
      </function>
    - <function name="@HspAddPageCombination" tssec="1377715749" tsmcs="610001" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.addPageCombination(long, String[])">
    - <spec>
    - <![CDATA[ @HspAddPageCombination(sessionId, pages)
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Adds a page combination
      ]]>
      </comment>
      </function>
    - <function name="@HspCreateEssbaseServerFile" tssec="1377715749" tsmcs="640601" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.createEssbaseServerFile(long,String,String)">
    - <spec>
    - <![CDATA[ @HspCreateEssbaseServerFile(sessionId, appName, cubeName)
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Creates a unique file on the Essbase server and returns the file path
      ]]>
      </comment>
      </function>
    - <function name="@HspWritePageCombinations" tssec="1377715749" tsmcs="669640" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.writePageCombinations(long, String)">
    - <spec>
    - <![CDATA[ @HspWritePageCombinations(sessionId, fileName)
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Writes all the page combinations with data to the file
      ]]>
      </comment>
      </function>
    - <function name="@HspGetFileName" tssec="1377715749" tsmcs="705211" javaSpec="com.hyperion.essbase.cdf.psb.HSPCDFUtils.getFileName(String)">
    - <spec>
    - <![CDATA[ @HspGetFileName(filePath)
      ]]>
      </spec>
    - <comment>
    - <![CDATA[ Returns the file name for the give path
      ]]>
      </comment>
      </function>
      </functions>
      </definitions>

  • Documentation for function

    While trying to modify a template I found
    the following code:
    htp.anchor('#OWNER#.wwv_ui_template.example_home_link'
    which is used to display the "home" link on the template page. I copied this template from a supplied Portal template. I want to use the template to display a form for my app.
    How to I change this reference to point to my default public home page? Is this Javascript? Is there a list of Javascript functions for Portal? Or is this PL/SQL?
    null

    Joseph,
    Basically, all #something# tags in the templates code are PLSQL "pseudo-tags" which will be replaced with some real values when you "run" a template, those tags are described in the docs & help. #OWNER# stands for Portal schema, but in this example you change this link to be anything, as long as it's a valid URL.
    Thanks,
    Dmitry
    null

Maybe you are looking for

  • Are there any Apps compatible with Aventail VPN?

    My corporate network uses Aventail VPN. I know the Macs are able to access my desktop, but so far I have not seen an iPhone App which does as well and my IS department is not very pro-Apple, or helpful. Are any of the VPN apps for the iPhone compatib

  • External HDD to 2T Time Capsule?

    My 2T TC has 824G available, not enuf to back up my big ol' MacPro. I want to add to the TC the 1.5T external HDD I was using for TM before I added drives to the MacPro. I would prefer not to lose the existing backups on the external HDD. Possible? S

  • HELP!  ipod will not reset

    I was listening to my ipod before i went to bed last night and everything was fine. When i unplugged it this morning and tried to play a song, the screen faded and the ipod shut down. I then plugged it in and it worked. When i unplugged it, it showed

  • 11g Production: Creating an artifact in the wrong project

    I have an application with multiple projects. I accidentally created a JSF page fragment in the wrong project which in turn created a Web Content folder and all the other usual suspects. However, I cannot 'undo' the fragment creation. I can delete th

  • How do i delete old imovie events videos

    I am trying to delete some old videos from imovie, I have moved the clips to rejected and have clicked the button that says move rejected to trash, but then nothing happens, the videos are not moved to trash to be deleted. what am I doing wrong?