Add the custom user field / Module URL + 1 case report

Hello

I'm trying to get this BC online form to work.

I have a content module support and this is a request for information form which can be seen here

http://www.eco-cabins.com.au/information-request?cabin=1%20Room%20with%20No%20Bath % 20Quee % 20Bed % 20and % 20Queen % 20Bunker % 20Bed n

As you can see, the {module_url, cabin} works well 1 room without bathroom, Queen bed and one bed Queen Size Bunker

on the page but is not his way to the record of the case.

This is the HTML code: http://pastebin.com/HVmRNpNm

When someone enters a case the cabin field ends up being empty as you can see in the following image. I would like to display what they are on the page. For example: 1 room with no bath, Queen bed and a Queen-size Bunker bed

SafariScreenSnapz002.png

Essentially, I would like to identify what page they are on to identify what cabin they are curious.

Any help would be appreciated. I had a look to the tutorials and videos but still questions. Thank you

Thank you, the information is displayed in the case... However,.

It appears on the page of people with a request for information:

That's what I used:

Too bad. I fixed it with

{module_url, cabin}

Tags: Business Catalyst

Similar Questions

  • view the json data in the custom list field

    Hi, I did analysis json and I created the custom list field. Now, I want to display only the data analyzed in my custom list field. I'll post my analyzed data from json and here is the code for my custom list field
    data analyzed.
    I have THREE channels of json and I want to show content tittle and date in the list filed. I'll post the screenshot of my list.

    JSONArray jsnarry = new JSONArray(responce);
                System.out.println("\n--length----- "+jsnarry.length());
                //System.out.println("....................................................=");
                for (int i = 0; i < jsnarry.length(); i++){
    
                    JSONArray inerarray = jsnarry.getJSONArray(i);
                        //System.out.println("\n-inerarray-values----- "+inerarray.getString(i1));
                        String TITTLE = inerarray.getString(1);
                        String CONTENT = inerarray.getString(2);
                        String DATE = inerarray.getString(3);
                                                           System.out.println("TITTLE= "+TITTLE);
                        System.out.println("CONTENT= "+CONTENT);
                        System.out.println("DATE= "+DATE);
    
    }
    

    output

    [0.0] --length----- 2
    [0.0]
    [0.0] -innerarray-length----- 6
    
    [0.0] TITTLE= BJP State President Sanjay Tandon's visit to Amita Shukla's Home
    [0.0] CONTENT=  BJP President Chandigarh Sanjay Tandon at Amita Shukla's Home
    [0.0] DATE= 2013-01-04
    [0.0] ................................................
    [0.0] TITTLE= Sanjay Tandon at mahasamadhi of Satya Shri Sai baba.
    [0.0] CONTENT= BJP Chandigarh President, Sanjay Tandon mahasmadhi of Sri Satya Sai Baba.(Andhra Pradesh)
    [0.0] DATE= 2013-01-13
    

    and my custom list field

           super(NO_VERTICAL_SCROLL);
    
             String TITTLE="TITTLE";
             String CONTENT = "CONTENT";
             String DATE = "DATE";
    
             v.addElement(new ListRander(listThumb, TITTLE, CONTENT,DATE, navBar));
    
             myListView = new CustomListField(v){
    
                 protected boolean navigationClick(int status, int time) {
                     //Dialog.alert(" time in milisec :" + time);
                     return true;
                 }
             };
    

    CustomListField.java

    public class CustomListField extends ListField implements ListFieldCallback {
    
        private Vector _listData;
        private int _MAX_ROW_HEIGHT = 100;
    
        public CustomListField (Vector data) {
    
            _listData = data;
            setSize(_listData.size());
            setSearchable(true);
            setCallback(this);
            setRowHeight(_MAX_ROW_HEIGHT);
    
        }
    
        public int moveFocus (int amount, int status, int time) {
    
            this.invalidate(this.getSelectedIndex());
            return super.moveFocus(amount, status, time);
    
        }
    
        public void onFocus (int direction) {
    
            super.onFocus(direction);
    
        }
    
        protected void onUnFocus () {
    
            this.invalidate(this.getSelectedIndex());
    
        }
    
        public void refresh () {
    
            this.getManager().invalidate();
    
        }
    
        public void drawListRow (ListField listField, Graphics graphics, int index, int y, int w) {
    
            ListRander listRander = (ListRander)_listData.elementAt(index);
            graphics.setGlobalAlpha(255);
            graphics.setFont(Font.getDefault().getFontFamily().getFont(Font.PLAIN, 24));
            final int margin =5;
    
            final Bitmap thumb= listRander.getListThumb();
            final String listHeading = listRander.getListTitle();
            final String listDesc= listRander.getListDesc();
            final String listDesc2= listRander.getListDesc2();
            final Bitmap nevBar = listRander.getNavBar();
    
            //list border
            graphics.setColor(Color.BLACK);
            graphics.drawRect(0, y, w, _MAX_ROW_HEIGHT);
    
            graphics.drawBitmap(margin, y+margin+10, thumb.getWidth(), thumb.getHeight(), thumb, 0, 0);
    
            graphics.drawText(listHeading, 3*margin+thumb.getWidth(), y+margin);
            graphics.setColor(Color.BLACK);
    
            graphics.drawText(listDesc, 3*margin+thumb.getWidth(), y+ margin+30);
            graphics.drawText(listDesc2, 3*margin+thumb.getWidth(), y+ margin+60);
    
        }
    
        public Object get(ListField listField, int index) {
    
            String rowString = (String) _listData.elementAt(index);
            return rowString;
    
        }
    
        public int indexOfList (ListField listField, String prefix, int start) {
    
            for (Enumeration e = _listData.elements(); e.hasMoreElements(); ) {
    
                String rowString = (String) e.nextElement();
                if (rowString.startsWith(prefix)) {
    
                    return _listData.indexOf(rowString);
    
                }
    
            }
    
            return 0;
    
        }
    
        public int getPreferredWidth(ListField listField) {
    
            return 3 * listField.getRowHeight();
    
        }
    
    }
    

    Listrander.Java

    public class ListRander {}

    private bitmap listThumb = null;
    incognito bar Bitmap = null;
    private String listTitle = null;
    private String listDesc = null;
    private String listDesc2 = null;

    public ListRander (Bitmap listThumb, String listTitle, String listDesc, String listDesc2, Bitmap navBar) {}
    this.listDesc = listDesc;
    this.listDesc2 = listDesc2;
    this.listThumb = listThumb;
    this.listTitle = listTitle;
    this.navBar = bar navigation;
    }
    public getListThumb() {Bitmap image
    Return listThumb;
    }
    {} public void setListThumb (listThumb Bitmap)
    this.listThumb = listThumb;
    }
    public getNavBar() {Bitmap image
    return the navigation bar;
    }
    {} public void setNavBar (navigation bar of the Bitmap)
    this.navBar = bar navigation;
    }
    public String getListTitle() {}
    Return listTitle;
    }
    {} public void setListTitle (String listTitle)
    this.listTitle = listTitle;
    }
    public String getListDesc() {}
    Return listDesc;
    }
    {} public void setListDesc (String listDesc)
    this.listDesc = listDesc;
    }
    public String getListDesc2() {}
    Return listDesc2;
    }
    public void setListDesc2 (String listDesc2) {}
    this.listDesc2 = listDesc2;
    }
    }

    You seem to have two problems here and are confusing them.  You must break the problem into two parts

    (1) extract the data from the entry and create the objects you want to display

    2) display in a list, a set of objects.

    Let's get the sorted first premiera.

    I will suggest what to do here, but in practice, you might actually think about this yourself as part of the design phase of your application.  You should do this, not me, because then you will have all the information available.  At the present time, I have just what you said, which is not much.  So maybe what I'm telling you is not correct for your application.  Only you can decide that.  And be blunt here, you should have decided this before you start coding.  Do you want you could lead down the wrong path.  You must think of your application as a home - as the architect must design all the rooms, and how they will be built, before you start building the House.  You do not, then we are building the rooms on the fly.  Who knows if they will be fit at home?

    In this case, I think you need to create an object that represents each of the elements in the internal array of new data.  call this object

    NewsItem

    This object will have attributes, such as its title, content, date, the linked image and so on, each of whom have will get and set methods.  While you treat each inner element fetch you the associated entry and update the object.

    When you have finished the inner loop of processing, you now have a complete

    NewsItem

    Object, so you will add it to a collection, an array of NewsItem objects, call this _newsItems.  You will create it at the beginning - you know how many entries it takes because it is the number of entries in your outdoor table.

    So before you start to deal with JSON, create your table and the 'index' value of 0.

    Once you have created your Newsitem, add this in the table to the position 'index' and increment "index".

    And once you have analyzed all the JSON, you will have a complete picture.  This is part 1 finished!

    And note in your drawListRow, you are given a clue - that is the index in your tables in _newsItems.  So you can easily find which entry to view and display it correctly.  But it is part 2 and is a separate issue.

  • The location of the custom metadata fields

    I'm trying to locate the custom metadata fields. Consider a custom metadata field where his dname = xPracticeWork and dCaption = practical work.

    I am trying to locate it using the old way.

    When to activate the settings regional french user and see this metadata field appears in English.When I turn on the location in the information system Audit, it is said

    unable to find string 'fr.Practice Work'

    So I tried including < @fr. The practice of work =Work practice@ >

    but he throws and error message saying unknown resource definition tag

    If I do the dCaption as PracticeWork and try to < @fr. PracticeWork =Work practice@ > it works absolutely well.

    It seems that the practical work being two letter word definition tag allows no space.

    Can someone please help me on this.


    Thank you

    Vanina

    It's very simple, you write a string that you want to display in the form of legend (I use this trick in the profiles, if I want to rename a metadata custom field exist for the type having a different meaning), or write you a string Id cannot contain spaces, which solved somewhere, usually a custom - component see what thread change location String for details how to create a resource exploitation translations.

  • Shared "Top N" gets access denied - the custom user interface

    I shared some dashboards for a standard user to vCops the custom user interface, and the "Top N" widgets do not work.

    So far, everything has been fine.

    I shared a dashboard home, as well as a vCops of the box and a pak of SAP management dashboard.

    All widgets 'Top N' display 'access denied to the requested page.

    Other parts of the same work of dashboard (home).

    Any thoughts?

    There is a permission that you add to the group to which you share the dashboard. There are permissions to a 'Top - N analysis' you must give to this group. In the contrary case, the refusal of access will appear when users in this group are attempting to access the dashboard in question.

  • Determine the maximum use of the processor for a virtual computer in the custom user interface

    I want to determine the maximum use of the processor for a virtual computer in the custom user interface.  How can I do this?

    If I use a supermetric, there is no kind of attribute under CPU called "maximum use.

    Certainly, you get points for a long question! Although to be fair, it's probably my fault to feed you so much information to digest at once.

    1. I would say you can do two ways visually. Use the operations > detail view for 'normal ranges' use the upper limit of the normal range as your typical max. You want an absolute peak, add the metric of a graph or observe that highlight high and low watermarks.

    2. There are a lot of ways to display data, but if you want to display a single metric over a period of time, we could use the following widgets [on top of my head]:

    Top - N analysis

    Weather map

    Analysis of distribution of data

    Among these, I think of your desire for a "peak". Who you want real value, which eliminates the weather map. Then, I think that the concept of a 'Summit' and what is the best thing, I think that the 95th percentile... then I came with the widget of data distribution. The decision is ultimately yours given your particular use case.

    3. you can have it apply to several virtual machines - it's just a widget capable of being an independent provider or receiving widget (metrics, DO NOT choose to select resources). Each resource/metric will add to the widget and you can remove them if you like after it is added. You can certainly all the time you visit... It is date and time standard options you have in all the other widgets chart. With the widget data distribution, you want as much time as possible to get an accurate histogram of the cycles of workload.

    4. This is similar to the question above. You can certainly add parameters of individual resource or a DM that summarizes or AVG groups of resources. And as above, the delay is configurable, along with the other graph widgets.

    5. it's part of Q4 - you can sumN or avgN up to any number of resources with a SM, then discovers that SM in the widget of data distribution. When I said container, I mean an application, group resource pool... all that acts as a container parent within the vCOps.

    6. that's correct, SMs calc using data collected last points... aka single period of time. When you are referring to the longest period, I gave you a few examples of the attributes that are composed of several periods of time which are calculated and created by the adapter for VMware vCenter behvaior. In this case, you have the GVA 15 min CPU 1.5; These specific simple mobile GVA can be specific OR a copy using SMs. Next, you will have the chance is to find a way to distribute what you need through a widget [at that time].

    7. the distribution of data is not for export, it is for Visual functions. If you want the data in CSV, just use a typical chart of metrics and export to a csv and calc your own pics, avg, 95th, whatever.

    8. This is a bit of a mix of all your questions, put in place.

    You are right, if you added those 3 VMs, then calc was the 95th of the AVG. Like Q7, you would not export the data of the distribution of data because the raw data points are not - you do not pass the metric to a metric graphics standard and export via csv.

    Take advantage of...

  • How close/hide dashboard appearance "pinned" in the custom user interface

    There is a dashboard in the custom user interface that is not a small "x" in the upper right tab that would be closed/hidden. Is anyway, in the interface user or cmdline that let me close/hide this dashboard? Screenshot attached. 5.8.2 running


    Never mind. A dashboard that would not close was marked as "default" dashboard. If you want to close a dashboard that is marked as 'failure', a different dashboard by default and it then you can close the dashboard that you couldn't close before.

  • Do you know if the assessment filter fields can be used for reports?

    Do you know if the assessment filter fields can be used for reports?
    I have a filter of assessment field in contacts that he use to capture information relavant contact. Because I thought that we could use it as another list of choice. But when I create a report I can find it in the list of available fields for the report.

    Thank you very much
    Catalina Valadez
    Concerning

    Catalina, the fields of the assessment filter is not available in reports. I suggest using a custom drop-down list, or among indexed lists. If this is going to be a key field you want to filter in reports, I suggest a list of indexed choices.

  • Add the short name field for specifications in the XSL file

    Hello

    I'm looking for help to see if it is possible to add the short name for the inputs and spare field in a specification of Formulation in the XSL file. If it is possible, how can I do this?

    Thanks in advance.

    Well, CSS is much more locked, by design. So it's a little (or maybe a lot) more complicated.

    Also remember that if you change the CSS schema, and you use the web service contract that we provide for the CSS message, then the approach will probably be different. This means that the web service contract would not support additional XML nodes, unless he expects them.

    If you do not use our web service contract, then you could make changes in the XML in a different way. Can you elaborate on how you receive the message in CSS?

    Basically, if you use the web service method, then you will probably need to use the ExportExtensions method, which is documented in the CSS guide. ExportExtensions allows you to include xml code in a node specific extensibility through managers, which are classes that you configure in the config\extensions\exportExtensions.xml configuration file. It is currently the custom how sections are included in syndication. So you can add your own XML nodes and call you a custom class to provide additional data that you need.

  • How to add the custom search engine?

    Hello
    Firefox is a great browser especially for those who care about freedom and privacy. I would like to know why it is not possible to specify the custom search engine that you were able to do in the latest version of Firefox. I want to use the search engine google with https://search.disconnect.me/ which offers the possibility of anonymous research. I know that there is a plugin https://disconnect.me/search, but is not very comfortable with respect to the standard search bar. Thank you

    I read the solution proposed here https://support.mozilla.org/en-US/kb/use-search-bar-firefox-and-manage-search-engines#w_add-a-search-engine but in 36 of Firefox does not work

    TypeError message probably explains why you could not add the page of Mycroft search engine initially.

    When I search this exact error in Google, only that rolled up from July 2013:

    As long as the 'Integration of office of Unity 2.4.6' plugin is enabled I couldn't add to Firefox search engines.
    https://bugs.Launchpad.NET/Ubuntu/+source/unity-Firefox-extension/+bug/1202383

    Note: this option is not a Plugin, this is an Extension and available on the page Add-ons with other extensions.

  • Failed to add the custom library group object?

    I recently upgraded computer and reinstalled Livecycle on my new computer. On the new computer, in Livecycle, when you try to add a custom library of objects, object I get the following message:

    "Cannot add the object"name"to the Group of the library."

    I checked and made sure that in the properties of the group, all items "allow objects...". "are checked. The location of the libraries are in my file C:\Program Files (x 86) \Adobe\Acrobat 10.0\Designer 9.0\EN\Objects\ . Any idea what's going on? It will be a huge setback for me! I have to update the custom very often my objects.

    Thanks in advance.

    All of a sudden it just started working. Don't know what happened.

  • Someone removed the custom attributes field

    Is it possible that PowerCLI can fire an event if someone removed the field of the custom in vCenter attributes?  I take more precisely on the class in Administration > custom attributes in vSphere client 5.x.  For some reason a field that he had to show VM assignments is missing, and I'll try to find what happened to her.

    Course, use the CustomFieldRemovedEvent.

    You can use the Get-VIEvent or my Get-VIEventPlus cmdlet to retrieve the events.

    BTW use my Event-O-Matic to easily find event names.

    Special Edition, it will still generate code to extract the events

  • Add the custom properties to the standard UI element

    Hello

    is it possible to add custom properties similar to id or objectName to a standard user interface elements such as textfield and radiogroup?

    Best regards

    Wildcat

    You can use
    string myValue property: "myValue".
    (or the value later to access it as name.myValue = "123")

  • How can you change the name of the custom form fields?

    I made a form that required me to add a few custom fields.  When the form sends an email, custom fields appear as "Custom".  I need them to say what is the form field.  Can we achieve this by Muse?

    I tried to change the name of the script in DreamWeaver, but it caused the form to fail.

    Any ideas would be great.

    Thank you.

    You are not able to just type the new name in and on "Custom" label above it and see it changed in your email automatically?

  • Graph XY on the custom user Interface

    Hello.  I'm kinda stuck (or really stuck ).  In any case, I'm newbie.  That being said, I've had a few really good help on how to pass table through the postuimessage (xparamdata) of teststand to my user interface customized a few weeks ago.  It really helped.  Thanks again.  However, I'm still another question.  I'm moving a container of teststand.  The container or the cluster of table and table x of y in a XY Chart.  I pass to my custom IO and try to update a chart XY on my IO.  I tried to use the same code that I used for a table, but it does not work... of course.  I just need a little help to find out how to get this update on my graph XY on my IO.  The attached photo, this is what I have so far, but it is not close to work.  Can someone give me some advice?

    String of BTW - looking for you wouldn't array1 and array2.  It would be the names of the tables in your cluster.  In TestStand search strings are the relative path to the object of the referenced property.  In this case your container is referenced from which is the name of your berries.

    Hope that makes sense.

  • creating the table in the custom user interface

    Hello

    I am trying to create a table of revenue as part of my custom in VBAI user interface. I have attached a code example of the with few variables. I wonder if there is a way to do the same thing without VBAI throw an exception that it cannot have dependencies. Please throw your entries.

    Thank you.

    I have attached a few changes 2 Untitled. VI (updated the connector pane) and custom UI VI and a simple inspection (be sure to check the status of cleanup to see how ref VI is closed). I hope this helps.

Maybe you are looking for

  • Is it possible to upgrade the processor of the Satellite A100-906?

    Is it true that I can change my CPU in Satellite A100-906? For example, with Intel Core 2 Duo 2.16 Ghz processor?

  • Support NI 9882 EDS

    Looking to design an application to talk to a peripheral part 3 on DeviceNet. I have a cRIO-9035 and LabVIEW 2015 SP1. The module NI 9882 does support loading EDS files?

  • Problem of M4 equal double flashlight

    Hello, I bought m4 double aqua a week ago. The phone works fine, but when I turn on the flashlight with the camera, it captures blurred images. The photos become very bluish and Misty. What should I do? give me a few suggestions

  • Prevent automatically reinstall it Vista drivers

    I need to uninstall the Nvidia drivers so I can install another. But... When I uninstall and restart my laptop, Vista automatically installs it again. How to prevent this? I searched the web, but the solutions did not help

  • 4.2 of the ACS and EAP - TLS with AD and prefix problem

    Hello We have the following situation: -2 X ACS (ACS SE 4.2 1 x and 1 x 4.2 ACS) for domain -2 x ACS (ACS SE 4.2 1 x and 1 x 4.2 ACS) for domain b. First of all, there is a problem to have an ACS SE and a CBS work together for an area, I do not? When