Is this client method not implemented in the current build? I have a client-side function like the following:
In the code snippet above, I tried the code in line 7 where it is shown, but I get a javascript exception that content_cell is null. If i place that same code after line 8, nothing happens.
Am I doing this wrong or is this function not yet implemented?
Thanks,
Larkin
| function DisplayUploadToolTip(targetControlId) | |
| { | |
| window.setTimeout(function() | |
| { | |
| var tooltip = $find('<%=FileUploadToolTipForm.ClientID %>'); | |
| tooltip.set_TargetControlID(targetControlId); | |
| tooltip.set_Content("<span>Testing</span>"); | |
| tooltip.show(); | |
| }, 10); | |
| } |
In the code snippet above, I tried the code in line 7 where it is shown, but I get a javascript exception that content_cell is null. If i place that same code after line 8, nothing happens.
Am I doing this wrong or is this function not yet implemented?
Thanks,
Larkin