Questions tagged [extender]

37 questions
2
votes
1 answer

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 of looks i will have to include my base script in…
2
votes
0 answers

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. http://www.asp.net/ajax/ajaxcontroltoolkit/samples/passwordstrength/passwordstrength.aspx I'm…
Dan Doyon
  • 6,710
  • 2
  • 31
  • 40
2
votes
1 answer

Applying multiple extenders in knockout

I have the following javascript code function AppViewModel(){ this.myValue = ko.observable().extend({ minNumber: "5"}).extend({ maxNumber: "20" }); } ko.extenders.minNumber = function(target, minValue){ target.hasError = ko.observable(); …
Gary F
  • 360
  • 3
  • 12
1
vote
1 answer

ko.observable() trim ending whitespace

I have an HTML text input called hours that is verified as a number through a knockout extender. If the user entering the hours has any whitespace after the number they enter, I would like to simply have this trimmed without getting notified that…
1
vote
2 answers

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 been the source of the problem. The page has 2…
Liam
  • 1,267
  • 2
  • 17
  • 30
1
vote
1 answer

android's Activity extender

android.app.Activty | | | | com.mycompany.ActivityWrapper | <--------------------------------\ | \ | | | | | | | | …
davs
  • 9,226
  • 8
  • 41
  • 54
1
vote
1 answer

Ajax HTML editor extender -textbox on key down javascript calls another function

I have AJAX HTML editor extender and a textbox on the top of the page which is not the target control of HTML editor extender. On key-down there is a JavaScript method written for the above textbox, but whenever I write into the text box and press…
satya
  • 11
  • 3
1
vote
0 answers

photo album using ajax slideshow extender

I want to create a picture album in asp.net using c# in which user can directly view all the images or by clicking on specific category which will start from the selected category page but when user click on next or prev button he or she can view…
chaya
  • 11
  • 1
1
vote
2 answers

Knockout JS extender for validation in master-detail scenario

My web page uses this viewmodel for a master-detail scenario: ko.extenders.myrequired = function (target, overrideMessage) { //add some sub-observables to our observable target.hasError = ko.observable(); target.validationMessage =…
pepperav
  • 527
  • 6
  • 16
1
vote
1 answer

Observables initialized/attached to Observable in extender not initialized at page load

I I have created a text counter to tell the user how many characters of they have typed and how many they have remaining available. This should show when the text area has focus and disappear then the text area loses focus. I have created a…
1
vote
0 answers

Could not load type AjaxControlToolkit.Sanitizer.AntiXssSanitizerProvider

I want to use the htmleditorextender for my asp website, this is what I have in my .aspx file:
Swag
  • 2,090
  • 9
  • 33
  • 63
1
vote
3 answers

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 initialize method …
djdd87
  • 67,346
  • 27
  • 156
  • 195
1
vote
1 answer

Asp.Net: Scroll to Validation error of Validation Callout Extender?

Is it possible to Scroll to the Validation error of the ValidationCalloutExtender? I have a large page sometimes when I click on a button on the top of the page and If I forgot to enter something in one field located at the end of the page I can't…
Eric Bergman
  • 1,453
  • 11
  • 46
  • 84
1
vote
2 answers

webmethod call issue withing asp.net ajax extender control

I have an extender control and want a call to webmethod from within it. but neither Sys.net.webserviceproxy.invoke nor $.ajax working. $.ajax issues server timed out error. invoke works but does not call the web method. the code is below …
azam
  • 205
  • 4
  • 20
0
votes
1 answer

Code for Numericupdownextender event handler

i want to change image of an image control based on the value of textbox by clicking on the ajax numericupdownextender control.Please provide solution in c# and also tell me how we can write custom code for this.
1
2 3