Search for a value in a field in a subform before allowing a user to add a new Instance

Configuration of the form:

Name of the page = page 1

1 subform in Page1 = Info (fixed to slur)

Objects in the subform Info: name (textfield) and Email (textfield)

I also have a 2nd subform within Page 1, which contains a button instance add

What I'm doing:


1. the user must enter their name and E-mail address, then click 'Add a button to the Instance' to create a new instance of the subform Info : _Info.addInstance (1);

2. If the user does not enter an e-mail address, I want there to be a message box this info the user address of e-mail is required before, he or she can create a new instance. Note: would be nice if the slider is set to foucs on the email in this particular instance of subform field.

3. as long as the user tries to add an instance, he or she will be refused if they are not an email in this case

4. If the user has an e-mail address in this instance, then the script will create adds a new instance

5. the process should continue in this way for each, each instance button click Add

I presume that it nees to be a loop and perhaps a scipt for somExpression, but I'm not sure.

Here's what I have so far (see below)... The script works for the first instance on the page, but this does not prevent instances to be created when the email in the 'current' instance field is empty. I want to prevent the user to add new instances if the email field is balnk in this "current instance. So, I guess I don't know how ot test a field in the current instance in a repeating subform.

var VNAME = Info.somExpression + ".email";

var vEmail = xfa.resolveNode (VNAME) .rawValue;

if (vEmail == null)

{

xfa.host.messageBox ("Please enter an email address.");

}

else {

Form._info.addInstance (1);

var i = Form._Info.count 1;

xfa.host.setFocus (xfa.resolveNode ("Info [" + i + "].")) Name')); This set is the focus of the cursor in the name field in the newly created subform

}

Please advise and thanks in advance!

Hello

Try something like;

var lastRow = Form.resolveNode ("Info [" +(_Info.count-1) + "]"); Get the last row

If (lastRow.Email.isNull) / / if the email field empty

{

xfa.host.messageBox ("Please enter an email address.");

}

on the other

{

newRow var = _Info.addInstance ();

xfa.host.setFocus (newRow.Name.somExpression); set the focus to the field name on the line has been added

}

Concerning

Bruce

Tags: Adobe LiveCycle

Similar Questions

  • Use instr to search for multiple values

    Hello

    My version of Oracle DB is 10.2.0

    I have a file of text separated by delimiters. The text file has 14 columns, and in each column, I have to check the presence of the following
    RV, RV, RV, GV, GV, GV.

    The sample file contains the following

    51151111; 28.18.11; 14711119; 512-GV; 821949,39; 1223,21; 471,49; 821197,29; ABC; 1; 27.18.11; 13


    The following code is for the search for GV
     FUNCTION FUNC_FIND_GV   (p_str IN  VARCHAR2) RETURN NUMBER
       AS
             l_gv_pos NUMBER ;
             begin
             l_gv_pos := INSTR(p_str, 'GV') ;
             RETURN l_gv_pos ;
    
       EXCEPTION
          WHEN OTHERS THEN
           l_gv_pos := 0;
        RETURN l_gv_pos 
       END FUNC_FIND_GV ;
    How can I search for other cases?

    Hello

    You can use regular expresssions to find one a |-at the same time delimited list.
    For example:

    SELECT  REGEXP_INSTR ( p_str
                   , '(RV|RV-|RV/|GV|GV-|GV/)'
                   )          AS match_pos
    FROM     ...
    ;
    

    It is unnecessary to search for one of the 'RV', 'RV' - and ' RV /'; hot for just 'RV' will give the same results. However, it does no harm real, so if you build the list ' RV | RV | RV / | GV | GV | GV /' dynamically, so you don't have to check for duplicates.

    I hope that answers your question.
    If this isn't the case, post CREATE TABLE and INSERT statements for some examples of data and the results desired from these data.

  • Search for Null values in the result of the query

    I queries a database for modules. I want to display the e-mail address of users, if there is one, if there is an email address, I want to draw the attention of the user of the present and offer them the chance to enter one. I thought I'd use an if statement, but can understand how cod if 'e-mail eq null. If the statement is looking for the text null instead of a null value

    VR;

    or

    --

    Azadi Saryev
    SABAI - Dee.com
    http://www.SABAI-Dee.com

  • Search for multiple values in a single field

    Hello

    I have this request to get results when the user doing a search query:

    select * from (
    select 
    "ID",
    "ID" ID_DISPLAY,
    "SHIFT_DATE",
    "SHIFT",
    "OFFENSE_ID",
    "DESCRIPTION",
    "ANALYST",
    "STATUS",
    "SUBSTATUS"
    from "#OWNER#"."IDSIEM_OFFENSES") 
    where
    OFFENSE_ID IN(:P223_OFFENSES) AND
    
     (
     instr(upper("DESCRIPTION"),upper(nvl(:P223_DESCRIPTION,"DESCRIPTION"))) > 0 
    )
    AND
    (
     instr(upper("SHIFT"),upper(nvl(:P223_SHIFT,"SHIFT"))) > 0 
    )
    AND
    (
     instr(upper("SUBSTATUS"),upper(nvl(:P223_SUBSTATUS,"SUBSTATUS"))) > 0 
    )
    AND
    (
     instr(upper("ANALYST"),upper(nvl(:P223_ANALYST,"ANALYST"))) > 0 
    )
    AND
    (
     instr(upper("SHIFT_DATE"),upper(nvl(:P223_SHIFTDATE,"SHIFT_DATE"))) > 0 
    )
    AND
    (
     instr(upper("STATUS"),upper(nvl(:P223_STATUS,"STATUS"))) > 0 
    )
    
    ORDER BY OFFENSE_ID DESC
    

    The thing I want to do is to set multiple values in the P223_OFFENSES field when I search. For example, an offence is a number, so I want to put in the search box 1111, 3333, 4444, 5555 and the report shows me these 4 offences in the report. The search operation only works when I put only 1 offences, but when I put more than 1, separated by commas, it gives me this error: error report: ORA-01722: invalid number. That is why, because is a number and the character point is not allowed, how can I achieve this? Thank you in advance.

    Best regards, Bernardo

    I solved a problem like this a few times with a utility function of pipeline for extracting the values from the list:

    CREATE or REPLACE TYPE split_tbl AS TABLE OF VARCHAR2 (32767).

    /

    FUNCTION to CREATE or REPLACE split_list

    (

    p_list VARCHAR2

    p_delimiter VARCHAR2: = ', '.

    ) Split_tbl RETURN

    PIPELINED IS

    l_idx PLS_INTEGER;

    l_list VARCHAR2 (32767): = p_list;

    BEGIN

    LOOP

    l_idx: = instr (l_list, p_delimiter);

    IF l_idx > 0

    THEN

    LINE of CONDUCT (substr (l_list, 1, l_idx - 1));

    l_list: = substr (l_list, l_idx + length (p_delimiter));

    ELSIF TRIM (l_list) IS NOT NULL

    THEN

    PIPE ROW (l_list);

    EXIT;

    ON THE OTHER

    EXIT;

    END IF;

    END LOOP;

    RETURN;

    END split_list;

    /

    In this way, you can define SQL like:

    SELECT to_number (column_value) FROM TABLE (split_list (' 1, 3, 99', ','))

    Or for this specific case: replace the condition

    OFFENSE_ID IN(:P223_OFFENSES)

    with

    OFFENSE_ID IN (SELECT to_number (column_value) FROM TABLE (split_list (: P223_OFFENSES, ',')))

    The advantage over using instr or regex is that you can usually always benefit index on OFFENSE_ID

    Better also to restrict entry to only numbers and ', ' or you will always get invalid numbers errors if a user enters "1234, 567, ABC"in the field of P233_OFFENSES.

    Kind regards

    Thierry

  • Address book crashes when searching for any value to AddressBook OSX 10.11.1

    Hi, opening address book without problems. Research or an opening speech crashes the application on the MacMini.

    Action 1 failed: delete cache of the application in the user library, then restart the application.

    Q: should I remove my icloud and restore the account or it is not a serious question?

    CrashLog below:

    ###############

    Process: Contacts [98477]

    Path: /Applications/Contacts.app/Contents/MacOS/Contacts

    ID: com.apple.AddressBook

    Version: 9.0 (1679)

    Generation information: AddressBook_executables-1679000000000000 ~ 6

    Code type: X 86-64 (Native)

    Parent process:? [1]

    Officials: Contacts [98477]

    User ID: 502

    Date/time: 21:22:52.215 2015-11-27 + 0100

    OS version: Mac OS X 10.11.1 (B 15, 42)

    Report Version: 11

    Anonymous UUID: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Sleep/wake UUID: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Time since started awake: 97000 seconds

    Integrity of system protection: enabled

    Crashed thread: 5 dispatch queue: com.apple.root.default - qos

    Exception type: EXC_CRASH (SIGABRT)

    Exception codes: 0 x 0000000000000000, 0 x 0000000000000000

    Note the exception: EXC_CORPSE_NOTIFY

    Request for clarification:

    Closing the app due to uncaught exception ", reason: '-[ABRecord setValue: forKey ' # #MyFirstNameDisplayedHere # ': 'First'] invalid value ' ending with an exception uncaught called abort() print type

    Specific application Backtrace 1:

    0 CoreFoundation 0x00007fff987dee32 __exceptionPreprocess + 178

    1 libobjc. A.dylib 0x00007fff937484fa objc_exception_throw + 48

    2 CoreFoundation 0x00007fff9884565d + [print raise: format:] + 205

    3 AddressBook 0x00007fffa071c0fd-[ABSuggestedEntriesFetcher personFromContact:] + 128

    Address book 0x00007fffa071bfc4 4 __53-[ABSuggestedEntriesFetcher entriesByUIDForContacts:] + 41 _block_invoke

    5 address book 0x00007fffa06614a8 __44-[NSArray (ABArrayAdditions) _abMapNoFilter:] + 20 _block_invoke

    6 CoreFoundation 0x00007fff9875b41d __53-[__NSArrayI enumerateObjectsWithOptions:usingBlock:] + 77 _block_invoke

    7 CoreFoundation 0x00007fff9875b2e9-[__NSArrayI enumerateObjectsWithOptions:usingBlock:] + 201

    8 AddressBook 0x00007fffa0646819-[NSArray (ABArrayAdditions) _ab_each:] + 91

    9 AddressBook 0x00007fffa0661484-[NSArray (ABArrayAdditions) _abMapNoFilter:] + 136

    AddressBook 10 0x00007fffa071bf60-[ABSuggestedEntriesFetcher entriesByUIDForContacts:] + 175

    Address book 11 0x00007fffa071bcf3-[ABSuggestedEntriesFetcher fetchEntries] + 43

    Address book 12 0x00007fffa07bb18e-[ABPersonListSearchHelper fetchSuggestedEntriesByUID] + 202

    Address book 13 0x00007fffa07baf40-[ABPersonListSearchHelper performSuggestionSearch:] + 27

    14 ContactsFoundation 0x00007fff9b48286c-[_CNThrottledObservable _sendResultToObserver:withIdentifier:] + 77

    15 ContactsFoundation 0x00007fff9b4840d1 __45-[_CNQueueScheduler afterDelay: performBlock:] + 16 _block_invoke

    16 libdispatch.dylib 0x00007fff8df203c3 _dispatch_client_callout + 8

    17 libdispatch.dylib 0x00007fff8df30674 _dispatch_source_latch_and_call + 2235

    18 libdispatch.dylib 0x00007fff8df24a3b _dispatch_source_invoke + 983

    19 libdispatch.dylib 0x00007fff8df23d0b _dispatch_root_queue_drain + 538

    20 0x00007fff8df23ab8 _dispatch_worker_thread3 + 91 libdispatch.dylib

    21 libsystem_pthread.dylib 0x00007fffa0aa34f2 _pthread_wqthread + 1129

    22 libsystem_pthread.dylib 0x00007fffa0aa1375 start_wqthread + 13

    Binary images:

    0x10584a000 - com.apple.AddressBook (9.0 - 1679) <15886374-2D34-3849-9F68-9B448AC50496>0x1058e3fff /Applications/Contacts.app/Contents/MacOS/Contacts

    0x1085b8000 - 0x1085b9fff com.apple.AddressBook.LocalSourceBundle (9.0 - 1679) <4285734E-D30E-377B-A7EB-D40E0C541F0C>System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource

    0x108a8e000 - 0x108a92fff com.apple.DirectoryServicesSource (9.0 - 1679) System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices

    0x108a99000 - 0x108ae7fff com.apple.AddressBook.CardDAVPlugin (10: 9-512) System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin

    # #MyFirstNameDisplayedHere #.

    If you know that you have a card with this text in the first name field, I suggest that you change or delete. Back up all data before making any changes.

  • Creation of the logic group - no limitation for the value of criteria field?

    I am trying to create simple logical groups in FDM (11.1.1.3 and 11.1.2.1 version). However, an error message is displayed in the information bar.

    : Error adding the new record.
    Detail: data access error.

    I clicked on the button "Add" and created a logical group that contains * 1 520 * accounts not sequential sources in the field of value of criteria (with operator).
    I separated these accounts from source with a comma and no space between them. (Note: operator = x, value/Exp = 1, Seq = 0) I've updated the grid. Then the error message was displayed and the logical group create failed.

    And then, I created a new group of logic that contains only * 100 * accounts not sequential sources in the field of value of criteria (with operator).
    I also separated a comma, no spaces and the same setting. I've updated the grid. And the logical group has been successfully added.

    The account of each source contains 10 characters (alphabet and number).

    I want to ask:
    1. is there a limitation by specifying accounts sources (i.e.. more than number of accounts for each group of logic source) in the criteria value field when creating simple logical group?

    2. I'm adding these logical groups by clicking on the button 'Add' one by one, is it faster way to do (i.e. transfer an excel or csv source file specified accounts)?

    Thank you very much!

    You perform the update the named range in the Excel file as the previous poster said? When you import an Excel file using the import XLS function, only the name family (s) starting with 'ups' are actually loaded in the system. Note that at least in versions 9.3 and 11.1.1.3 there was also some hidden lines had to be such that specify the header.

    JOINT TASK FORCE

  • Can not see the values for the value of the field Position Flex games

    Hello

    I want to see the values associated with the Position to flex fields segments set of values. The valueset is the section of Position Flex field of the HRMS.
    When I go on request > FlexField > key > values and look for the defined value, it does not appear in the list of value games. I am unable to find a game for any segment of values. The two sets of value are at table in function.
    Can someone tell me why I can't see them?

    Abdul Wahid

    Base table of values defined value, you can see until you go in application where this segment is used... you can still run the SQL derived from table according to value set where the conditions (if any) to see the values. I hope I understood your question

  • Internationalization of the search for the af:query component fields


    Hello

    I dropped a component af:query on my page. I have a requirement that when the browser is English, label of query components search fields must be in English, and if the browser is in Arabic that they must appear in the Arabic language. Please help me to know how this can be achieved.

    Thanks and greetings

    Rati

    Hello

    It's a simple matter to create local resource bundles.

    I guess you have indicators on the elements of the model installation check that the attributes of the View object. If so, you will see a ModelBundle.properties (if your model project called model). Create a copy based on the locale of this property file and customize the labels.

    Read more here: http://docs.oracle.com/cd/E41362_01/web.1111/b31974/bcquerying.htm#CEGBFHJC

  • Search for text in a text field and make the required field

    I have a text field if the user has entered a value, then the box that follows must be mandatory. I have this script that works (sort of), but I do not know what event to use to get the results I want. I want the message and the box mandatory if something is entered in the field.

    Here's the script:

    If ((this.rawValue! = "null") |) (this.rawValue! = ""))
    {
    CheckBox3.mandatory = 'error ';
    App.Alert ("Please indicate that you have reviewed the similar profile and agree with him");

    }

    else if ((this.rawValue == "null") |) (this.rawValue == ""))
    {
    CheckBox3.mandatory = "disabled";
    }

    Thank you

    MDawn

    You can put your script to output the text field event.

  • Best way to search for a value in the table

    Hello world

    Need help to decide which application should be used in the following scenario.
    Table  temp_a
    ( col_1 varchar2(20),
     status_flag varchar2(10)
    );
    col_1 is the primary key


    I want to know if a given value is present in "col_1" of the table "temp_a.

    So what query wud be faster:

    1.
     select count (*)
    from temp_a
    where col_1 = v_col_1   -- using variable to check for value
    and status_flag ='active' ;
    2.
     
     select count (*)
    from temp_a
    where col_1 = v_col_1   -- using variable to check for value
    and status_flag ='active' 
    and rownum =1 ;
    Here, I am not concerned about the number (*), I just need to check if the v_col_1 is present or not.

    1. then please let me know, if both are one and the same. or one of them is faster over another.

    2. also, is there a better way to check?

    Thank you
    Abhishek

    The two approaches are the same, because col_1 is a primary key.
    I think that there is a query then faster:

    select count (*)
    from temp_a
    where col_1 = v_col_1
    ;
    

    Max
    [My Italian blog Oracle | http://oracleitalia.wordpress.com/2010/02/07/aggiornare-una-tabella-con-listruzione-merge/]

  • Searches for a value in a table

    Hi guys' no lags,

    This should be a simple.

    I run an IF statement that needs to check the value of 5 in a pre-completed table.

    I find it difficult to find the right method of research in the table.

    If (myArray... == "0") {}

    do something

    }

    It's the... bit I'm stuck

    indexOf seems to come back just where the value is... but I already know where it is! I just want to know WHAT it is!

    There are also values that are exactly the same in other positions in the table. I have to focus more particularly on the value 5.

    Any help would be greatly appreciated!

    * past out *.

    myArray [4] == '0 '.

    The elements of an array starts with zero, so the fifth will be 4.

  • Validation of a field has content before allowing the user to move to the next field

    I posted the discussion for the completion of the validation before printing and that I thought more last night, I need to change because I need to allow for our stores print the blanks of the form in certain situations.

    Before continuing the validation before printing, I tried to display an error message if a required field is empty before you move to the next field.  I tried the following scripts:

    #1

    {if (!) Event.Target.valueAsString)}

    app.alert ("this field must be complete. (Please enter the name of the customer', 3);

    }

    This script worked as I used it with "The blur", but after displaying the error message, it went to the next field.  You try to save the field name, threw up the error message for the next field (I have several fields in a line that are needed).

    #2

    f = getField (Event.Target.Name)

    if(f.Value.Length==0)

    {

    f.setFocus)

    app.alert ("this field must be complete. Please enter the name of the customer')

    }

    I used this with "On Blur" too, but I was getting into a loop in which the error message go away, and I have to kill the application.

    #3

    if(Event.Value.Length<2)
    {
    Example of Message

    App.Alert ("this field must contain 9 digits.")
    Event.RC = false;
    }

    I tried this script with the validation feature.  It will not work with any value lower than 2.

    As I mentioned previously, I'm new to scripting, so any help would be greatly appreciated.

    Do you mean that you want to run if the user in a field empty then tablets out of it?

    For this, you can use something like this that the OnBlur event (of course, set the name of the field according to your):

    If ((this.getField("customerName").) Value == "")
    {
    App.Alert ("this field must be complete. Please enter the name of the customer');
    this.getField("CustomerName").setFocus ();
    }

  • searching for a column value

    Hello

    I need a little faovour... I need search a pariticular table column value... !! Whenever my superiors asking
    What table with that value... This value... etc... !!!

    For this I need a solution... (select query). If I give the value name and the column of the table... I can't what column having this perticular value? is this possible? I have many tables and each table has many columns. It takes a lot of time to search for a value of column for each table and columns. Please give me a nice solution.

    Thanks to the adv.


    Concerning
    Rekha

    for number

    SQL> select table_name, column_name
      2    from (select rownum,table_name, column_name,
      3                 dbms_xmlgen.getxml('select 1 from "'||table_name||'" where "'||column_name||'" =
    &val') x
      4            from user_tab_columns where data_type='NUMBER'
      5  ) where length(x)!=0
      6  /
    Enter value for val: 3000
    old   3:                dbms_xmlgen.getxml('select 1 from "'||table_name||'" where "'||column_name||'" =&val') x
    new   3:                dbms_xmlgen.getxml('select 1 from "'||table_name||'" where "'||column_name||'" =3000') x
    
    TABLE_NAME                     COLUMN_NAME
    ------------------------------ ------------------------------
    EMP                            SAL
    TID                            SAL
    
    7 rows selected.
    
    SQL> 
    

    for varchar2

    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    
    SQL> select table_name, column_name
      2    from (select rownum,table_name, column_name,
      3                 dbms_xmlgen.getxml('select 1 from "'||table_name||'" where "'||column_name||'" =
    ''&val''') x
      4            from user_tab_columns where data_type='VARCHAR2'
      5  ) where length(x)!=0
      6  /
    Enter value for val: OPERATIONS
    old   3:                dbms_xmlgen.getxml('select 1 from "'||table_name||'" where "'||column_name||'" =''&val''')
    new   3:                dbms_xmlgen.getxml('select 1 from "'||table_name||'" where "'||column_name||'" =''OPERATIO
    
    TABLE_NAME                     COLUMN_NAME
    ------------------------------ ------------------------------
    DEPT                           DNAME
    
    SQL> 
    
  • Reg: Search for nullable columns

    Hi all

    I have a DIAGNOSIS table that has a QDESC as a nullable column.
    DIAGCODE and SDESC columns are not nullable.

    I wrote a stored procedure to retrieve the records from the table of DIAGNOSIS based on the values of columns specified.

    P_ < nom_de_colonne > indicates that the parameter passed to the stored procedure

    Correspong SQL statement goes as follows.

    SELECT * DIAGNOSTIC
    WHERE
    UPPER (DIAGCODE) AS
    (CASE WHEN LENGTH (p_DIAGCODE) > 0 THEN '%' |) Upper (p_DIAGCODE) | '%' ELSE '%' END)

    AND UPPER (SDESC) AS
    (CASE WHEN LENGTH (p_SDESC) > 0 THEN '%' |) Upper (p_SDESC) | '%' ELSE '%' END)

    -QDESC is a nullable field; but the following logic doesn't :-(
    AND UPPER (QDESC) AS
    (CASE WHEN LENGTH (p_QDESC) > 0 THEN '%' |) Upper (p_QDESC) | '%' ELSE '%' END)


    Examples of data in the table is as follows.

    DIAGCODE SDESC QDESC
    --------------- ------------ ------------
    123 / / DESC 1 AAA
    123 / / DESC 2
    123 / / DESC 3 BBB
    123 / / DESC 4


    When I use the query above to search for records with DIAGCODE like 123, I get

    DIAGCODE SDESC QDESC
    --------------- ------------ ------------
    123 / / DESC 1 AAA
    123 / / DESC 3 BBB


    That is to say QDESC with null values are not displayed.

    How am I supposed to change the query to get the correct result?

    Any help would be much appreciated.

    Thank you best regards n,.
    Tanuja

    There are several illusions here.

    First of all: SQL has a logic to three values: TRUE, FALSE and NULL. The result of any operator is TRUE or FALSE and that you can only search for NULL values explicitly using IS NULL.
    Second: You need the dynamic SQL statements: immediate execution or dbms_SQL. Your variable is a column name, not a constant, if you need to build a string that contains the required SQL statement and present the use execute sql immediately or dynamics.
    This will reduce scalability.
    Third: < function name > < some constant > = (column) will ensure that any index on < column > is not used.
    Usually, this will result in catastrophic performance.

    -----
    Sybrand Bakker
    Senior Oracle DBA

  • pushState() and search for a product

    Hi all

    thought ways of tweaking of the browsepanel to do what I need, and it dawned on me that. pushState() might be the way to go.

    The idea is that browsepanel users to navigate in the catalogues, I basically strip some keys to search for products and use {module_url} and. pushState() to simply tweak the url to my needs - especially for the fly then, sorts including sort by price and by the search for products usual sortTypes.

    I had thought before including module product_results with sortType different values by default, but then I would need to get the ID of the catalog of the URL (right?) anyway, so maybe also try well pushState()?

    I was hoping that others may have experimented with this and be able to tell me if this is achievable in British Colombia. Furthermore, any ideas to other successful approaches would be good.

    Ideas, suggestions and experiences related to the foregoing, all appreciated very strongly (it is the last great problem to be solved before the launch).

    I will let you know that even if I'm pretty comfortable with the html and css, my js is pretty basic, but I'm happy to do the legwork to learn it. I'm not after a tutorial here, just hope to know if the approach is feasible before committing too much time to it. Oh, and I already have a menu set up for browsing catalog and products and quick searches in the appropriate places, just FYI.

    See you soon,.

    Jason

    Pushstate will trigger new pages and not what your after.

    You need to use the data of this kind of things with Ajax if your update but keeping the same page.

    Site not finished, but we have made for one person:

    http://lemonzebrakids.BusinessCatalyst.com/products/girls/accessories

    And made several variations of this, some more complicated then others.

Maybe you are looking for

  • Videos YouTube showing constantly circle loading and does not.

    So I'm watching videos on YouTube and all I get is the spinning loading circle and nothing more. I am running version 37.0.2 (latest) and the most basic add-ons that are up to date. I tried uninstalling and then reinstalling Flash, I uninstalled and

  • TestStand IVI read Test of numerical limit

    Hey all,. How to turn a DMM IVI reading in a test step pass / fail based on a test of numerical limit? I'm a novice TestStand so be gentle.  Search the Forum of TestStand IVI and success failure does not return anything useful. I can call the DMM thr

  • Office Jet 4680 and windows 8

    Please inform me if the office jet 4680 is compatiable with windows 8.  I looked for this printer information and sees no Windows 8.  I just bought a new HP Pavilion, and of course, you have no choice with the software, it comes with as well a person

  • BlackBerry Smartphones H - T

    Can someone tell me what the H - T at the top of my screen? I have the 8330 curve. Thank you.

  • Campus Solution 9.0 indicator Prompt SQL View Table service

    People,Hello. I'm creating 9.0 Solution on a University Campus. I work on the indicator of Service and face the question below:Set Up AWAR > definition > Service indicator > indicator Service Table in the page 'Service indicator of reasons', the quic