Advertisement
Advertisement
| 03.11.2008 at 08:40AM PDT, ID: 23232120 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: |
<asp:TextBox runat="server" ID="txtLookup" Width="99%" autocomplete="off"
AutoPostBack="True"
OnTextChanged="txtLookup_TextChanged"
Tooltip="Start typeing to perform an autocomplete function"
ValidationGroup="Agreement"
/>
<ajaxToolkit:AutoCompleteExtender
runat="server"
ID="aceAddress"
TargetControlID="txtLookup"
ServicePath="AutoComplete.asmx"
ServiceMethod="GetAutoFillAddress"
MinimumPrefixLength="0"
CompletionInterval="1000"
EnableCaching="false"
CompletionSetCount="10"
UseContextKey="true"
ContextKey="Water"
BehaviorID="AutoCompleteEx2"
CompletionListCssClass="autocomplete_completionListElement"
CompletionListItemCssClass="autocomplete_listItem"
CompletionListHighlightedItemCssClass="autocomplete_highlightedListItem"
DelimiterCharacters=""
>
<Animations>
<OnShow>
<Sequence>
<OpacityAction Opacity="0" />
<HideAction Visible="true" />
<ScriptAction Script="
// Cache the size and setup the initial size
var behavior = $find('AutoCompleteEx2');
if (!behavior._height) {
var target = behavior.get_completionList();
behavior._height = target.offsetHeight - 2;
target.style.height = '0px';
}" />
<Parallel Duration=".4">
<FadeIn />
<Length PropertyKey="height" StartValue="0" EndValueScript="$find('AutoCompleteEx2')._height" />
</Parallel>
</Sequence>
</OnShow>
<OnHide>
<Sequence>
<ScriptAction Script="
showWorkingPopup(); //<---This is where I'm calling the popup
"
/>
<Parallel Duration=".4">
<FadeOut />
<Length PropertyKey="height" StartValueScript="$find('AutoCompleteEx2')._height" EndValue="0" />
</Parallel>
</Sequence>
</OnHide>
</Animations>
|