Working with JTable in intelliJ  in forms

hi,
iam trying to create a JTable using forms,can anyone pls tell me how to add rows and columns to it ?

Hi Alice,
I really don't think the problem is using LC Designer 8. We have several forms that were developed in LC Designer 8 (with FormCalc and Javascript), that still function in Acrobat/Reader 9.3.1.
There are two potential issues. The first is the most likely.
In the new installation of Reader 9.3.1, JavaScript is turned off. See this blog and sample: http://blogs.adobe.com/livecycle/2009/02/adobe_reader_disabled_javascri.html
If you send the sample to the agency, a warning will appear if they open it and Javascript is turned off. When they turn javascript back on in the preferences, then your form should work again.
The second issue can be a little more trouble. Adobe have introduced a new Javascript Blacklist Framework in Acrobat/Reader 9.3.1, which can disable FormCalc and JavaScript if it contravenes the framework. See these links:
http://kb2.adobe.com/cps/504/cpsid_50431.html
Managing JavaScript Execution in the Acrobat Family of Products
As I say, unless your FormCalc is trying to access external resources, I suspect that Javascript is turned off in Reader. I don't think you have to upgrade Acrobat/LC Designer.
Hope that helps,
Niall

Similar Messages

  • Mouselistner is not working with jtable in the browser

    Hi
    I am having a problem with jTable.
    I added a mouselistener to table header to sort table but when i run that applet from my netbean ide it works fine but when i run that applet in my browser it doesn't work, i have tested, its not even generate mouseclick event .Please help me guys.
    I call this function after calling initComponents() method of JApplet.
    public void setTableAction()
    //set mouselistener to sort table on click of table header
    final JTableHeader head= jTable1.getTableHeader();
    head.addMouseListener(new java.awt.event.MouseAdapter()
    public void mouseClicked(java.awt.event.MouseEvent evt)
    Vector data= ((DefaultTableModel)jTable1.getModel ()).getDataVector();
    sortTable(data, head.columnAtPoint(evt.getPoint()));
    //set action map to change the default action performed for enter key pressed
    InputMap imap = jTable1.getInputMap(JTable.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT);
    KeyStroke enterKey = KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0);
    KeyStroke tabKey = KeyStroke.getKeyStroke(KeyEvent.VK_TAB, 0);
    final Action oldAction= jTable1.getActionMap().get(imap.get(tabKey)); // get map to set enter key.
    imap.put(enterKey, "enter"); // set enter key
    Action newAction = new AbstractAction(){
    public void actionPerformed(ActionEvent e) {
    oldAction.actionPerformed(e);
    JTable table= (JTable)e.getSource();
    table.changeSelection(0,0,false,false);
    if(table.isCellEditable(0,0))
    String sTemp= (String)table.getValueAt(0,0);
    if(sTemp.length()>0) {
    if(bRenewItem)
    retrieveRcodeDetails("",sTemp);
    else
    processRCodeDetails(sTemp, e);
    }else
    table.editCellAt(0,0);
    jTable1.getActionMap().put("enter", newAction);
    jTable1.setPreferredScrollableViewportSize(jTable1.getPreferredSize());
    }

    Hi,
    I also am using the Bépo layout with an encrypted drive and encountered the same problem: the Return key does not work.
    It seems to work fine if you use the fr-bepo-latin9 keymap.
    # /etc/vconsole.conf
    KEYMAP=fr-bepo-latin9
    But I also looked at the files /usr/share/kbd/keymaps/i386/bepo/fr-bepo.map.gz and /usr/share/kbd/keymaps/i386/bepo/fr-bepo-latin9.map.gz (you can open gzipped files in vim directly). fr-bepo-latin9.map.gz defines keycode 28 (Return) but fr-bepo.map.gz does not.
    I modified fr-bepo.map.gz:
    # vim /usr/share/kbd/keymaps/i386/bepo/fr-bepo.map.gz # Append that line : "keycode 28 = Return".
    # mkinitcpio -p linux # Rebuild the initramfs.
    The Return key now works, but the Backspace (14, "Delete") and Shift (54) keys don’t work. I found that both the cf.map.gz (french canadian layout) and fr-bepo-latin9.map.gz files define those keycodes as well as other non-printing keys so I copied the following lines from fr-bepo-latin9.map.gz to fr-bepo.map.gz:
    keycode 1 = Escape Escape
    keycode 14 = Delete Delete
    keycode 15 = Tab Tab
    keycode 28 = Return
    keycode 29 = Control
    keycode 42 = Shift
    keycode 54 = Shift
    keycode 56 = Alt
    keycode 58 = Caps_Lock
    keycode 97 = Control
    It works! Don’t forget to rebuild the initramfs after you change the keymap file.
    # mkinitcpio -p linux
    I will send a message to the kbd and bépo projects mailing lists and report back.

  • Work with JTable cell (check input, set text color)

    I have a JTable with data
    The task is:
    User inputs some data into cell
    I want to check his input string for equatily with other values in column
    For example, I have these values in column:
    1.example
    2.exercise
    3.execute
    User inputs word "execution" in the same column
    until user inputs "executi" his input string should be red.
    What event I have to listen to if I want to get user input string?
    Also a question:
    Is there any opportunity to work with cell row (copy it to another JTable) ?
    Message was edited by:
    Holod

    i think you should use cell editor as textfield (although that is default for jtable) and then implements document listener and set text color in insert update method.
    try this out :-)

  • Reader 9.3.1 not working with FormCalc in LiveCycle 8 forms

    My agency has recently upgraded to Adobe Reader 9.3.1. I have a fillable form I created using Livecycle Designer 8 in Acrobat Professional 8 and distributed to agency staff using the "distribute" function in Acrobat Professional 8. The form includes formcalc scripts that use the DocReady and other events to create a unique identifier comprised of data from the form, and to calculate totals. The formcalc scripts work as long as the form is opened in Acrobat Professional 8 or Adobe Reader versions prior to 9.3.1, but don't seem to fire at all with Reader 9.3.1.
    I've been told by my agency IT staff that I need to upgrade, but before I go to that expense, I'd like to know whether this is necessary or guaranteed to fix the problem. I've also seen other posts that suggest that that Acrobat 9 handles exporting the data differently (no longer exporting to a .csv file) and that also concerns me, as I've set up automated processes using the .csv output. Upgrading may introduce new problems, for all I know.
    It seems unlikely that Adobe would intentionally make Reader 9.3.1 not backwards-compatible with forms created using older versions of LiveCycle, as that would cause hugh headaches for their customers, so I'm wondering if this is a bug that will be soon fixed?
    Thanks, Alice

    Hi Alice,
    I really don't think the problem is using LC Designer 8. We have several forms that were developed in LC Designer 8 (with FormCalc and Javascript), that still function in Acrobat/Reader 9.3.1.
    There are two potential issues. The first is the most likely.
    In the new installation of Reader 9.3.1, JavaScript is turned off. See this blog and sample: http://blogs.adobe.com/livecycle/2009/02/adobe_reader_disabled_javascri.html
    If you send the sample to the agency, a warning will appear if they open it and Javascript is turned off. When they turn javascript back on in the preferences, then your form should work again.
    The second issue can be a little more trouble. Adobe have introduced a new Javascript Blacklist Framework in Acrobat/Reader 9.3.1, which can disable FormCalc and JavaScript if it contravenes the framework. See these links:
    http://kb2.adobe.com/cps/504/cpsid_50431.html
    Managing JavaScript Execution in the Acrobat Family of Products
    As I say, unless your FormCalc is trying to access external resources, I suspect that Javascript is turned off in Reader. I don't think you have to upgrade Acrobat/LC Designer.
    Hope that helps,
    Niall

  • Working with Host built in in forms

    Hi everybody,
    I am working on form in which i created menu. That menu has submenu called 'Service desk. when user click on 'service desk' it take the user to weblink which is opened in mozilla firefox.. I used host built in to launch mozilla firefox. It works fine.
    The next functionality i want that is when firefox is not installed on system then it will populate message to user "Please install firefox". How can i check with oracle forms whether firefox is installed in system or not. Is there any way to do it?
    I am using solaris 9 and forms 6i.
    Please help me on this.

    Can you be more specific about your environment? You are using 6i and the host command, so I assume you are using 6i in client/server mode. Is that on Windows? What are you running on Solaris?
    If the client runs on Windows, you can check the registry for the default browser with Win_Api_Environment.Read_Registry. You will have to Google a bit to find out which key is used to specify the default browser.
    You can also check where Firefox is installed with registry path HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox\3.5.5 (en-US)\Main and registry key PathToExe.
    It should be something like this:
    declare
      v_firefox   varchar2(100);
    begin
         v_firefox := Win_Api_Environment.Read_Registry
           ('HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox\3.5.5 (en-US)\Main'
           ,'PathToExe'
           ,true);
      message('Firefox is installed on: '||v_firefox);      
    exception
         when no_data_found then
           message('Firefox is not installed');
    end;

  • Working with JTable

    Hello,
    I am java beginner and trying to write a Swing based application with an observer-pattern
    When the user clicks on the button named "showTable" after giving two Object rows values in Min and Max textfields (min < max all the time), the values of the table between Min and Max become yellow. This works properly.
    Now I need a help for the "showResults" button, this button need to work after giving four different Object rows values in textfields (with Min< Start < End < Max).
    I want the botton "showResults" panel to show the results of all values gave in textfields and the number of values between Start and End (both values including), Min and Start (only Min including), End and Max ( only Max including) and Min and Max (both values including) in the created panel as "TableModel.
    1st problem: I don't know exactly, if the implementation of my methods are okay.
    2nd problem: I try to implemente the method actionPerformed of my button "showResults" in order to get results in the new panel as tableModel, but in vain.
    Can anyone tell me, how can I do it correctly.
    Thanks in advance for your help.
    {code}
    /***********************************Main:******************************/
    Object rows[][] = {{"-1.02", "2.00", "-5.00"}, {"-2.98", "-4.10", "0.18"}, {"4.76", "-2.29", "-2.22"}};
    Object columns[] = {"A1", "A2", "A3"};
    final JTable table = new JTable(rows, columns) {
    @Override
    public Component prepareRenderer(TableCellRenderer renderer, int row, int column) {      
    Component c = super.prepareRenderer(renderer, row, column);
    c.setBackground(Color.WHITE);
    double value = 0;
    double min = 0;
    double max = 0;
    String val = getValueAt(row, column).toString();
    if (!val.equals("")) {
    value = Double.parseDouble(val);
    String minS = tf1.getText();
    if (!minS.equals("")) {
    min = Double.parseDouble(minS);
    String maxS = tf2.getText();
    if (!maxS.equals("")) {
    max = Double.parseDouble(maxS);
    if (value >= min && value <= max ){
         c.setBackground(Color.YELLOW);      
    return c;
    button1.addActionListener(new ActionListener() {
    @Override
    public void actionPerformed(ActionEvent e) {
    table.repaint();
    button2.addActionListener(new ActionListener() {
    @Override
    public void actionPerformed(ActionEvent e) {      
         updater.setMinValue(JTextField.getValue());
         updater.setMaxValue(JTextField.getvalue());
         updater.setStartvalue(JTextField.getvalue());
         updater.setEndvalue(JTextField.getvalue());
         updater.setNumberOfValues1();
         updater.setNumberOfValues2();
         updater.setNumberOfValues3();
         updater.setAllNumberOfValues();
    /**************************Updater:******************************************/
    import java.beans.PropertyChangeSupport;
         public class TableTest4Updater extends PropertyChangeSupport {          
              private TableTest4DataChanger ttdc;
              public TableTest4Updater(TableTest4DataChanger ttdc) {
                   super(ttdc);
                   this.ttdc = ttdc;
              public int getAllNumberOfValues(){
              return ttdc.getAllNumberOfValues();          
              public void setAllNumberOfValues(int allNumberValues){
                   super.firePropertyChange("AllNumber", ttdc.getAllNumberOfValues(), allNumberValues);
                   this.ttdc.setAllNumberOfValues(allNumberValues);          
    /**************** Listener: ************************************/
    import java.beans.PropertyChangeEvent;
    import java.beans.PropertyChangeListener;
    public class TableTest4Listener implements PropertyChangeListener{
         public void propertyChange(PropertyChangeEvent pce) {
    {code}

    No idea what is causing the problem. You can find working examples in the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/table.html]How to Use Tables.
    If that doesn't help then read this link before posting further replies:
    http://www.physci.org/codes/sscce.jsp

  • How to work with two blocks in one form

    i need help,i moved the control from block(abc) to another block(xyz) using go_block('xyz') and then i insert record to block(abc) but the record is not inserted to the table .
    i used previous_block but it is not working
    how to use it.

    Hi,
    You have written the code in when-window-activated? If yes then as soon as the window of xyz is activated the code starts running and populating the data (i.e. department code and its name) from table to the block, one by one. It seems that the block 'xyz' is like detail block. Am I right? U want the record row by row, isn't it?
    In this case, have you been able to populate your xyz block more than 1 records by the help of the code you have written ? If yes then use commit_form in the when-button-pressed trigger associated with the proposed button.
    I just can't understand how your code populates xyz block when you are writing :
    fetch DEPARTMENT into :DEPARTMENTS.DEP_CODE,:DEPARTMENTS.DEP_NAME;
    instead of fetch DEPARTMENT into :xyz.DEP_CODE,:xyz.DEP_NAME;
    Pls tell me the detail result you r getting.
    Regards,
    Pragati.

  • Working with radio groups in tabular forms

    Since this isn't documented properly in the help, I figured I'd drop the question here. I have a field in my table that I want populated based on a radio button. I can set up the radio button, but I cannot get it to display based on the value. this is the decode statement I am trying to use
    decode(da.isdefault,
    NULL,htmldb_item.RADIOGROUP(1,da.isdefault,'NULL','Open') ||
    htmldb_item.RADIOGROUP(2,da.isdefault,'0','Preferred') ||
    htmldb_item.RADIOGROUP(3,da.isdefault,'1','Default'),
    1,htmldb_item.RADIOGROUP(1,da.isdefault,'NULL','Open') ||
    htmldb_item.RADIOGROUP(2,da.isdefault,'0','Preferred') ||
    htmldb_item.RADIOGROUP(3,da.isdefault,'1','Default'),
    0,htmldb_item.RADIOGROUP(1,da.isdefault,'NULL','Open') ||
    htmldb_item.RADIOGROUP(2,da.isdefault,'0','Preferred') ||
    htmldb_item.RADIOGROUP(3,da.isdefault,'1','Default')) "Status"
    If NULL, I want "Open" selected, if 1 I want "Default" selected, and if 0 I want "Preferred" selected. Any suggestions on how to get this working properly?
    Thanks,
    Scott

    Anyone have a suggestion for this? My boss wants this set up ASAP. I set all the indexes to the same. My values are all coming up as NULL. Any help would be greatly appreciated.
    Thanks,
    Scott

  • JComboBox With JTable as Editor

    Hi everybody
    I'm working with JTable and having a ComboBox as first CellEditor. for that purpose i used following code
            cmbFeeType.setModel(new javax.swing.DefaultComboBoxModel(DefaultFee.FeeTypeItemList()));       
            DefaultCellEditor DCEFeeType = new DefaultCellEditor(cmbFeeType);
            DCEFeeType.setClickCountToStart(2);here DefaultFee.FeeTypeItemList is a vector returns array. This is working fine except that the ComboBox remains visible till I dobule clik on a column for editing. Then It becomes invisible and works fine.
    my JComboBox is a seperate Control on a JFrame I do not want to use
    Class FeeTypeEditor extends JComboBox implements TableCellEditoras a ComboBox editor for JTable
    Please Help Me.

    Hi
    I am giving u a sample code which simulate the error
    * TestJTable.java
    * Created on August 5, 2008, 11:05 AM
    package TestJTable;
    import javax.swing.DefaultCellEditor;
    import javax.swing.table.TableColumn;
    * @author  yogi
    public class TestJTable extends javax.swing.JFrame {
        /** Creates new form TestJTable */
        public TestJTable() {
            initComponents();
            DefaultCellEditor ColumnEditor = new DefaultCellEditor(jComboBox1);
            ColumnEditor.setClickCountToStart(2);
            TableColumn column = jTable1.getColumnModel().getColumn(0);
            column.setCellEditor(ColumnEditor);       
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
        private void initComponents() {
            jScrollPane1 = new javax.swing.JScrollPane();
            jTable1 = new javax.swing.JTable();
            jComboBox1 = new javax.swing.JComboBox();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            getContentPane().setLayout(null);
            jTable1.setModel(new javax.swing.table.DefaultTableModel(
                new Object [][] {
                    {null, null, null, null},
                    {null, null, null, null},
                    {null, null, null, null},
                    {null, null, null, null}
                new String [] {
                    "Title 1", "Title 2", "Title 3", "Title 4"
            jScrollPane1.setViewportView(jTable1);
            getContentPane().add(jScrollPane1);
            jScrollPane1.setBounds(10, 10, 340, 180);
            jComboBox1.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Item 1", "Item 2", "Item 3", "Item 4" }));
            getContentPane().add(jComboBox1);
            jComboBox1.setBounds(180, 220, 120, 20);
            pack();
        }// </editor-fold>//GEN-END:initComponents
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    TestJTable TJTable = new TestJTable();
                    TJTable.setExtendedState(MAXIMIZED_BOTH);               
                    TJTable.setVisible(true);
        // Variables declaration - do not modify//GEN-BEGIN:variables
        private javax.swing.JComboBox jComboBox1;
        private javax.swing.JScrollPane jScrollPane1;
        private javax.swing.JTable jTable1;
        // End of variables declaration//GEN-END:variables
    }Above code is generated by Netbeans IDE 6.0
    My promblem is that when you run the code the combobox JComboBox1 remains visible till i starts to edit the Table after once started editing it disappears.
    I want to avoid this
    thanks in advance

  • The sync doesn't work with the new version

    Hi, I have a Macbook version 10.4.11 I just to work with the  pocketmac for blackberry former version and It use to work great but since I did upgrade to the new version they system doesn't sync any contact, meeting....
    The system recognize my Blackberry  PIN and the status is "available" but nothing happens.
    Any suggestion?
    Thanks 

    I tried a whole slew of things and did manage to get it to sync by syncing each component one by one just to see if there was a problem area such as tasks or notes. That went fine but when I tried to do a full sync will all the components I need the sync would run and then then PocketMac would freeze and crash. Yesterday I decided I had spent more than enough time on this and bought MissingSync. So far it's great.

  • App Files Saved as XML and Working with New Versions

    We work with app data in the form of array of large clusters and use LV Anything to XML conversion VIs to save to disk.
    The problem is when new app versions are developed and changes are made to the cluster format; we want the customer to be able to open the old version saved XML file format.
    Usually the saved cluster (in XML) has be changed by adding/removing a field or even changing the options of a ring control for example.
    The app name and version is stored in the XML.
    Question: Is there a way of easily working with XML file formats with slightly different fields?
    In the past we have worked with the raw XML text by searching for fields which are different and modifying them accordingly so they are accepted by the new file format.
    Any tips would be greatly appreciated.

    battler. wrote:
    I have written a software name and version cluster to XML.  How do you read the version field in the XML?  Do you use string search?  Is there a better way?
    Yes, I use String Search (because it is near the beginning of the XML string).  Depending on your XML "flavor", you should be able to uniquely-identify the Version information.
    I'm interested in how best to work with XML.  It seems cumbersome and prone to error to use string functions.  Is there a way or best practice of reading the XML fields directly without converting to cluster?
    XML is, after all, text with specific "tag" information, also text, identifying it.  String functions are pretty much "the way to go", but except in rare circumstances, you shouldn't necessarily "roll your own", but should try to use the utilities that come with your XML package that "know" how to do the mapping between the XML representation of a LabVIEW variable (and its value) and the Variable itself.
    Can you elaborate on these "mapping" and "reading/conversion" routines you're using?  How do they work and what functions do they use?
    An excellent question.  There are at least three XML packages out there for LabVIEW -- the "native" LabVIEW package that NI provides, EasyXML from JKI Software (distributed using VIPM), and GXML, also on the LabVIEW Package network.  I'm afraid that I'm slightly "abusing" XML, and have made some modifications to how I use EasyXML and GXML. 
    If you simply view an XML file in a "smart" editor, you'll see a series of text lines with Begin/End tags (like HTML).  Depending on the XML "flavor", embedded between the tags are data that describe the LabVIEW variable type (e.g. Dbl, Cluster, Array, etc.) and also the value(s) of the Variable.  The "ReadXML" (or similarly-named) function takes this description and (usually) returns a Variant that you can "turn into" the chosen variable (because you know the data type).  [You may need to tell the Reader, in advance, the type of LabVIEW variable to expect so that it "knows when to stop reading"].
    As to how they work, they just do String pattern matching and processing, usually of a pretty sophisticated level, but then you don't have to do the hard work yourself!
    Why do you use Private Project library?  Is your project based on OO?
    The reason I used a Project Library with the "messy details" in the Private parts has nothing to do with OO, but rather with "data hiding".  I actually developed this for my data processing routines.  I had a set of routines that collected and analyzed the data (about 700 VIs).  Let's call this Project "Version 1".
    For Version 2, I basically added a dozen variables to the main  Data Cluster (having over a hundred elements) that characterized the response.  As this Cluster was in a Type Def, I didn't have to change my code very much to accomodate this new data format, so most of my VIs kept the same name, but were "different" because the underlying TypeDefs were different.
    So I have a Version 1 program that can analyze Version 1 data, and a Version 2 program for Version 2 data.  What I want is a Version-independent program that can look at the data, and then call for Version 1 or Version 2 analysis.  By burying the Version 1 and Version 2 code inside of a Project Library, and only exposing the top-level "Analyze My Data" VI, my Analysis routine, which didn't know (and didn't care) about the two different Data TypeDefs, just figures out (from the XML) which Version of data I have and then calls either Lib1:Analyze My Data or Lib2:Analyze My Data.  If I ever change the Version again, I just need to copy the code in the Library to a new Lib3 Library, modify the TypeDef and related version-specific code as needed, and I'm done.
    I may have made this sound easy -- trust me, it was a definite learning experience.  While trying this out, the first thing I did was to "break" my installations of LabVIEW 2012, 2013, and 2014 (curiously, LabVIEW 2011 wasn't broken).  It stayed "broken" for about a week, then "cured" itself (I'd done something illegal, or maybe just immoral, with my Library, and it took a while to purge the badness).
    BS

  • No scrollbar with JTable

    Hello!!
    I'm working with JTable, and that table is larger than the JFrame. I want to attach a scrollbar onto it so that entire table can be viewable...I used JScrollPane in NetBeans.. but it is not working....
    is there any way out???
    plz help!!!
    thanks in adv..

    There's a well known deficiency in JTable that prevents horizontal scrollbars from appearing depending on the specific display options indicated for the JTable instance.
    Some searching the bug database should provide information and a workaround.

  • Is there any form that works like Jtable that can be written into the html

    Is there any form that works like Jtable that can be written into the html or jsp format?
    <INPUT TYPE="SUBMIT" NAME="command" VALUE=""> refer to a Sumbit Button.
    There no such thing below "I think"but just dreaming
    Is there something like
    <INPUT TYPE="TABLESUBMIT" NAME="customer" VALUE={rowcolumn(1,3,"peter"),rowcolumn(last,"name","jane")}> ......

    Keep dreaming. As long as you are using HTML you are stuck with
    all of its limitations. Among these is the lack of a JTable.
    You have several options:
    1) Use an HTML <TABLE>. For plain text you just put the
    text between <td></td> tags. For input you put the input
    as <td><input...></td>.
    2) Extend #1 by creating your own object to draw the table.
    You can do this in either Java or JavaScript. There are several
    examples on the internet of how to do this. Some even include
    sorting by clicking the column headings.
    3) If you really want to use a JTable then you can write a JApplet
    and put it on your JSP page.

  • I am trying to us a form on a site that requires authentication and it won't work with Muse

    I called the provider and they sent me a bunch of code to insert in order to make the form work but is there anyway I can make it work from within Muse? https://solutions.hostmysite.com/index.php?/Knowledgebase/Article/View/8460/0/using-pear-m ail-to-create-a-php-mail-form-that-uses-authenticationauthentication-is-required-by-hostmy site
    I have no idea how to deploy any of that stuff or how to do a captcha without using Muse. 
    The website is question is http://www.kiddintl.com/work-with-us.html
    Should I have the domain point to an adobe business catalyst site in order to make everything in Muse work correctly?
    [email protected]

    Hi Peter,
    In the latest release of Muse the option of recaptcha was added to both Bc and non Bc hosted site. Please check the link below to know more on this.
    http://helpx.adobe.com/muse/using/form-widgets.html#Preventing spam using Google reCAPTCHA
    I am afraid that this is not possible in Muse, to generate captcha for a site that is not hosted via Bc, at this stage, I will recommend that you post this on our ideas section over here, https://forums.adobe.com/community/muse/ideas, and let our devs team know of this requirement.
    In the meantime, you will need to insert the captcha code manually on the Muse form once after you have exported the html of the site and this is something that you will need to every time the code is generated because Muse will overwrite the changes that you have made.
    - Abhishek Maurya

  • My web form is not working with PayPal

    Only seamless gateways such as the "Pro" version of PayPal, eWay or Authorize.net will work with form payments. Gateways that have the user leave BC, such as PayPal Standard, Google Checkout or Realex, only work with the online store.

    I did further testing:
    1. I turned off the IPN and I still received the Error page.
    2. Than I went and turned off the Payment Data Transfer, and now I got the blank page... /PaymentProcess.aspx?paypal=success. However, I still got the paypal transaction ID attached to the orders.
    3. I turned on the IPN and still got the blank  /PaymentProcess.aspx?paypal=success and I still got the paypal transaction ID attached to the orders.So the conclusion is that IPN has no bearing on payments made with PayPal Standard when it is used with custom forms.
    4. I chaged the URL in the Return URL to go to the secure home page instea of to /PaymentProcess.aspx. and...it still sent me to the PaymentProcess.aspx and I still got the paypal transaction ID attached to the orders.
    5. I made the purchase using shoping cart to ensure it works too and this time I even received the receipt on the /PaymentProcess.aspx. The Ref# and Auth Code were "Not Applicable" but it still worked and it was recorded in the orders with the paypal transaction ID
    So my conclusions are:
    1. IPN has no bearing on PayPal payments made from the custom web form
    2. Payment Data Transfer being on sends to the pafe that can't be processesd and it renders Error message
    3. Return URL always send you to the PaymentProcess/aspx regardless what secure url you put in there.
    4. Transcation ID is always passed to the orders as long as it can connect to PayPal. I guess ur will do it as long as the Payment Gateway has the proper informration in there.
    5. It works the same from the custom web form and from checkout form.
    I hope this sheds some light and serves some purpose to whoever is completely confused by this as I am.
    Mario and Liam, thanks for your help. Much appreciated.

Maybe you are looking for

  • Oracle 11g OLAP & SQL

    Hi All Our company is in the process of doing a POC warehouse where we are using Oracle OLAP extensively for summary management. I have been tasked with porting all our existing reports (Cognos) from using an Informix backend to start using Oracle. T

  • Refreshing an UIX page

    Does anybody know how to explicitly for an refresh on a UIX page. The problem that I have now is that only after I some where did a rollback, the page is displayed correctly. Before the rollback, the page shows one table updated and one table still i

  • Creating ADA compliant .pdfs in Illustrator

    Is it possible to create an ADA compliant (Section 508) .pdf from ILLUSTRATOR (not InDesign)? I can't find one mention of it in a search in Google or Adobe. A designer I work with gives me .pdfs of the ads she creates in Illustrator, and I pop them i

  • Sync different versions of firefox

    On all my Machines I use FFox 3.x with the Sync addon. After upgrading one machine to Firefox 5, all setting, Bookmarks and was gone on this machine. Using sync, I was able to get these settings back, but after that, all the machines don't sync anymo

  • Finder will not open after having to unplug the system.

    I suddenly had no access to the internet and was told to unplug everything and start again. When I did Finder says it cannot be opened and all the photos and files on my desktop have vanished. I get a number next to the finder symbol when I try to op