Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
117 views

How to manage javascript Dependency for Ajax Extender controls

Does the Ajax Extender control base provide dependency management? I am creating a set of controls that uses a few base scripts used by the behaviors and from here Creating a Extender Control it sort ...
1
vote
0answers
113 views

Recommended Calculation Weightings for ASP.net PasswordStrength Extender

I've been fiddling around with this control and I think I have a decent set of weightings. I'm looking to see if others think this is a good combination. ...
1
vote
1answer
44 views

android's Activity extender

android.app.Activty | | | | com.mycompany.ActivityWrapper | <--------------------------------\ | \ | | | ...
1
vote
3answers
319 views

JavaScript - How do I call a function from a string name and pass an array object?

I've got a user control which lets users provided their own script names that are called by the control on specific events. I have the following code: initialize : function() { // Call the base ...
0
votes
0answers
2 views

Ajax Control Toolkit HTMLEditorExtender on iphone

Has anyone used the Ajax Control Toolkit HTML Editor Extender on iphone successfully? I'm having problems with postback when it loads rich html content in the editor. If Ajax Control Toolkit Editor ...
0
votes
0answers
45 views

Calendar Extender not rendering or working properly in Placeholder Control asp.net

I am trying to create calender extender on runtime and i am getting it but css or background of calender dispalying transparent. Here is my code Table t = new Table(); ...
0
votes
0answers
54 views

activate Ajax Animation Extender from javascript ONLY

i want to activate the animation extender from the javascript only - without the event of the extender working. for example: i have this animation extender: <asp:AnimationExtender ...
0
votes
1answer
329 views

Hide/Show ajax cloud BalloonPopupExtender

I'm using the BalloonPopupExtender on a text box in order to say : "Unknown input" because its the only one that allows me to have a panel in which i can insert whatever controls i want. i want from ...
0
votes
0answers
186 views

AJAX HTMLEditorExtender on postback tables don't display

I am currently using an Ajax tool; HTMLEditorExtender to turn a textbox into a WYSIWYG editor, in a C# ASP.NET project. On the initial page load I place a large amount of formated text and tables into ...
0
votes
0answers
317 views

Ajax calendar extender fires onChange event of target textbox control repeatedly in IE7

i have a calendar extender on my page which is bind with a textbox, i am tracking the change event of the textbox so that whenever a value is changed or selected from the date picker page gets ...
0
votes
1answer
34 views

Confusion on creating custom extender controls

I got 2 questions which are tightly coupled here. When you look into the documentation on msdn about creating extender controls they preach that the new control must inherit from ExtenderControl ...
0
votes
1answer
611 views

auto complete textbox using jquery UI in vb.net

I am using two autocomplete extenders in my form using jQuery. I want to pass the value of one autocomplete extender to another autocomplete extender. Please let me know how can I pass value using ...
0
votes
2answers
454 views

Extender controls may not be registered after PreRender. Occurs on GridView DataBind()

On our ASP.Net 4.0 C# web app I get the error above in the subject line during debug. I'm not really doing anything funky with dynamic controls on the page as some search results indicated could have ...
0
votes
2answers
1k views

ASP.NET Textbox DropDownExtender

How to get the value from the dropdown to return to the TextBox? The following does not work. You can select the item from list though. <body> <form id="form1" runat="server"> <script ...
0
votes
0answers
301 views

AJAX Calendar Extender Server Event?

I am using an ajax calendar extender I want to bind the records to a gridview on the selected date but i am not getting on which event shall I write the code that too on server side please help me its ...
0
votes
1answer
740 views

Ajax Control Toolkit custom Tab extender to close tabs client-side

I'm attempting to write an AJAX control extender that can modify an AJAX Control Toolkit TabPanel so that the TabPanel's header has an image after the text that, when clicked, hides the tab header ...
0
votes
1answer
52 views

Custom Ajax Extender - Collection Property

I have written a custom ajax extender for use with ASP panels and JQuery dialogs. The problem I face is that I need multiple buttons to trigger the dialog, therefore attributes aren't really a viable ...
0
votes
1answer
2k views

AutoCompleteExtender OnClientItemSelected raised after validation

I have an AutoCompleteExtender which is working, the OnClientItemSelected event is raised. Now, I added a validator that validates my control (the AutoCompleteExtender is a part of that control). My ...