Ticket T108126
Visible to All Users

An "Object doesn't support property or method 'indexOf'" exception is thrown on "Select All" checkbox click in IE11

created 11 years ago

[DX Support team: this ticket was cloned from How to implement "Select All" checkbox which selects only rows with a visible SelectCheckBox?]
OK, I just tested it the following script in all browsers, but I get "Error: Object doesn't support property or method 'indexOf' in Internet Explorer 11.  It works on my local machine when I run it in IE where I am using DevExpress 12.1.4.0

ASPx
<script type="text/javascript"> function OnAllCheckedChanged(s, e) { grid.PerformCallback(s.GetChecked()); } function OnPageCheckedChanged(s, e) { var indexes = grid.cpIndexesUnselected; var topVisibleIndex = grid.GetTopVisibleIndex(); if (s.GetChecked()) { //Select All Rows On Page(); for (var i = topVisibleIndex; i < topVisibleIndex + grid.cpPageSize; i++) { if (indexes.indexOf(i) == -1) //ERROR Happens HERE grid.SelectRowOnPage(i, true); } } else //Deselect All Rows On Page(); for (var i = topVisibleIndex; i < topVisibleIndex + grid.cpPageSize; i++) { if (indexes.indexOf(i) == -1) //ERROR Happens HERE grid.SelectRowOnPage(i, false); } } function setGridHeaderCheckboxes(s, e) { //cbAll var indexes = grid.cpIndexesSelected; cbAll.SetChecked(s.GetSelectedRowCount() == Object.size(indexes)); //cbPage var allEnabledRowsOnPageSelected = true; var indexes = grid.cpIndexesUnselected; var topVisibleIndex = grid.GetTopVisibleIndex(); for (var i = topVisibleIndex; i < topVisibleIndex + grid.cpPageSize; i++) { if (indexes.indexOf(i) == -1) if (!grid.IsRowSelectedOnPage(i)) allEnabledRowsOnPageSelected = false; } cbPage.SetChecked(allEnabledRowsOnPageSelected); } function OnGridEndCallback(s, e) { setGridHeaderCheckboxes(s, e); } function OnGridSelectionChanged(s, e) { setGridHeaderCheckboxes(s, e); } Object.size = function (obj) { var size = 0, key; for (key in obj) { if (obj.hasOwnProperty(key)) size++; } return size; }; </script>

Answers approved by DevExpress Support

created 11 years ago

Hello Saied,

The "indexOf" function is supported in IE starting from IE9. It seems that your page is loaded in Compatibility Mode and you don't use the approach from the How to adjust DevExpress ASP.NET controls when opening a page in the Internet Explorer Compatibility Mode article. That is why the browser shows the mentioned error. If this is so, please use the approach from the article. In not, provide us with the project that reproduces this issue in action so that we can debug it locally.

    Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

    Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.