Contents
Licensing
Installation and deployment
RadControls for ASP.NET AJAX Fundamentals
RadControls
RadAjax
RadAsyncUpload
RadBarcode
RadButton
RadCalendar
RadCaptcha
RadChart
RadColorPicker
RadComboBox
RadDataPager
RadDock
RadEditor
RadFileExplorer
RadFilter
RadFormDecorator
RadGrid
RadHtmlChart
RadImageEditor
RadInput
RadListBox
RadListView
RadMenu
RadNotification
RadODataDataSource
RadOrgChart
RadPanelBar
RadRating
RadRibbonBar
RadRotator
RadScheduler
RadScriptManager
RadSitemap
RadSlider
RadSocialShare
RadSpell
RadSplitter
RadStylesheetManager
RadTabStrip
RadTagCloud
RadToolBar
RadToolTip
RadTreeList
RadTreeView
RadUpload
RadWindow
RadXmlHttpPanel
Visual Studio Extensions
Integrating RadControls in ASPNET MVC
Integrating RadControls in DNN
Integrating RadControls in Mono
Integrating RadControls in SharePoint
API Reference
For More Help
|
|
        RadControls for ASP.NET AJAX PROBLEM The get_attributes().getAttribute(attributeName) method does not work. DESCRIPTION By design all custom attributes which are valid html attributes (such as "type", "onclick" etc) are rendered as html attributes and are not serialized in the attributes collection. You can still access them on the server-side though. If you need to access them on the client-side you can use this code: CopyJavaScript
var myValidHtmlCustomAttribute = node.get_textElement().getAttribute('type');
RECOMMENDATION Avoid using names of custom attributes which are valid html attributes. These include: "accesskey", "align", "class", "dir", "disabled", "id", "href", "hreflang", "lang", "language", "rel", "rev", "style", "tabindex", "target", "title", "type", "urn", "onactivate", "onafterupdate", "onbeforeactivate", "onbeforecopy", "onbeforecut", "onbeforedeactivate", "onbeforeeditfocus", "onbeforepaste", "onbeforeupdate", "onblur", "onclick", "oncontextmenu", "oncontrolselect", "oncopy", "oncut", "ondblclick", "ondeactivate", "ondrag", "ondragend", "ondragenter", "ondragleave", "ondragover", "ondragstart", "ondrop", "onerrorupdate", "onfilterchange", "onfocus", "onfocusin", "onfocusout", "onhelp", "onkeydown", "onkeypress", "onkeyup", "onlayoutcomplete", "onlosecapture", "onmousedown", "onmouseenter", "onmouseleave", "onmousemove", "onmouseout", "onmouseover", "onmouseup", "onmousewheel", "onmove", "onmoveend", "onmovestart", "onpaste", "onpropertychange", "onreadystatechange", "onresize", "onresizeend", "onresizestart", "onscroll", "onselectstart", "ontimeerror", "_designerregion" See Also
|