Page 6 of 7
Creating a search with 2 variables
Posted: Tue Mar 05, 2013 2:53 pm
by Chris Ross
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
Creating a search with 2 variables
Posted: Tue Mar 05, 2013 9:25 pm
by Maryna Brodina
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)
Creating a search with 2 variables
Posted: Tue Mar 05, 2013 11:24 pm
by Chris Ross
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.
Creating a search with 2 variables
Posted: Tue Mar 05, 2013 11:35 pm
by Chris Ross
Creating a search with 2 variables
Posted: Wed Mar 06, 2013 9:33 am
by Kateryna Grynko
Hi Chris,
I'm searching for what caused it. I'll update.
Creating a search with 2 variables
Posted: Wed Mar 06, 2013 2:59 pm
by Kateryna Grynko
On "typeList" component, there is a JavaScript added on Value Change event.
In the following line:codedropDown.append('<option value="' + (newData + i) + '">' + newData + '</option>');/codebetween "value" and "=" there is an invisible Unicode symbol leads to breaking code.
You should delete "value=" and write "value=" again.
Creating a search with 2 variables
Posted: Wed Mar 06, 2013 10:06 pm
by Chris Ross
Okay, I did it............
Creating a search with 2 variables
Posted: Wed Mar 06, 2013 10:42 pm
by Chris Ross
still nothings changed though
. Under settings, I even ran a test and "it" worked......I just don't get it
Creating a search with 2 variables
Posted: Thu Mar 07, 2013 12:33 pm
by Maryna Brodina
Hello! On "typeList" component on Value Change event instead of code
codedropDown.append('<option value="' + (newData + i) + '">' + newData + '</option>');/code
use next code
codedropDown.append('<option value="' + newData + '">' + newData + '</option>'); /code
Creating a search with 2 variables
Posted: Thu Mar 07, 2013 3:22 pm
by Chris Ross
OMG!!!! Marina Brodina, you are AWESOME!!!!!! Thank you guys for being SO patient!!!! You're the best