Dear All,
I am using a Ajax MultiHandleSliderExtender of version 3.03 . I wrote a javascript function to create the sliding behaviour like below.
$create(AjaxControlToolkit.MultiHandleSliderBehavior, { "ClientStateFieldID": "ctl00_ctl00_cphMain_cphStat_txtBeds", "cssClass": "slider", "handleAnimationDuration": 0.1, "id": "sliderBedsBehavior", "maximum": 7, "minimum": -1, "multiHandleSliderTargets": [{ "HandleCssClass": "handle_left", "ControlID": "hdnMinBeds", "Decimals": 0, "Offset": 0 }, { "HandleCssClass": "handle_right", "ControlID": "hdnMaxBeds", "Decimals": 0, "Offset": 0}], "showInnerRail": true }, { "valueChanged": function(e) { bedsChanged(e); } }, null, $get("ctl00_ctl00_cphMain_cphStat_txtBeds"));
I am showing an error like 'AjaxControlToolkit' is undefined.
<add tagPrefix="ajaxtoolkit" namespace="AjaxControlToolkit" assembly="AjaxControlToolkit"/> is the code i used in web.config to register the toolkit.
Pls help me to solve this error.
Regards,
Jayasankar