Chris Ross
Posts: 0
Joined: Wed Feb 13, 2013 4:06 pm

Creating a search with 2 variables

The invoke service was supposed to be from my query page. The "grade" should be displayed on my results page, in the center of my sanitation grade sheet.( the individual restaurant grade), one time when i did it, it showed every grade, not the one from my query

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

Creating a search with 2 variables

Hello! On Results page:

1) Delete Invoke service action on mobilebutton1_14 click
2) Delete Invoke service action on Complete Result service event (
you get an infinite loop because of it)
3) On Results pageShow event add Invoke service action (Result service)

Chris Ross
Posts: 0
Joined: Wed Feb 13, 2013 4:06 pm

Creating a search with 2 variables

I did it. But, it's still not displaying the grade. I tried to set my grade in response to the mobile label on my result page. I don't know, it's not working.

Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

Creating a search with 2 variables

Hi Chris,
I'm searching for what caused it. I'll update.

Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

Creating a search with 2 variables

On "typeList" component, there is a JavaScript added on Value Change event.

In the following line:codedropDown&#46;append('<option value="' + (newData + i) + '">​' + newData + '<&#47;option>');/codebetween "value" and "=" there is an invisible Unicode symbol leads to breaking code.

You should delete "value=" and write "value=" again.

Chris Ross
Posts: 0
Joined: Wed Feb 13, 2013 4:06 pm

Creating a search with 2 variables

Okay, I did it............

Chris Ross
Posts: 0
Joined: Wed Feb 13, 2013 4:06 pm

Creating a search with 2 variables

still nothings changed though :(. Under settings, I even ran a test and "it" worked......I just don't get it

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

Creating a search with 2 variables

Hello! On "typeList" component on Value Change event instead of code

codedropDown&#46;append('<option value="' + (newData + i) + '">​' + newData + '<&#47;option>');/code

use next code

codedropDown&#46;append('<option value="' + newData + '">​' + newData + '<&#47;option>'); /code

Chris Ross
Posts: 0
Joined: Wed Feb 13, 2013 4:06 pm

Creating a search with 2 variables

OMG!!!! Marina Brodina, you are AWESOME!!!!!! Thank you guys for being SO patient!!!! You're the best

Return to “Issues”