This is a migrated thread and some comments may be shown as answers.

Filtering and Expanding Causes jQuery Error

1 Answer 46 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Phil
Top achievements
Rank 1
Phil asked on 26 Jan 2011, 06:34 PM
  • ASP.NET version: 4.0
  • OS: Windows 7
  • exact browser version: FF 3.6.13 & IE 7,8, 9
  • exact version of the Telerik product: ASP.NET AJAX Q2 2010
  • preferred programming language: C#
I am using a third party jQuery script called qTip by Craig Thompson (http://craigsworks.com/projects/qtip/) and it has worked well in most uses but I am having a complication with using it along with a RadGrid.  Basically on the initial page load everything works fine, but if I filter a column or expand a nested view the qTip script stops working and I receive a javascript error: "Message: Unspecified error. URI: http://localhost:49894/webroot/javascript/jquery.js".

My jQuery script on the page is as follows:
(function ($, window, undefined) {
            $(document).ready(function () {              
                $.fn.qtip.styles.typeToolTip = {
                    width: 210,
                    background: '#FFF',
                    color: '#333',
                    border: {
                        width: 5,
                        radius: 0,
                        color: '#A7D11C'
                    }
                }
                $(".originalType").qtip({
                    content: {
                        url: 'help/OriginalTypeToolTip.html',
                        prerender: 'true'
                    },
                    style: {
                        name: 'typeToolTip'
                    },
                    position: {
                        corner: {
                            target: 'topRight',
                            tooltip: 'topLeft'
                        }
                    },
                    show: { delay: 1000,
                        effect: {
                            type: 'slide',
                            length: 200
                        }
                    }
                });
});
        } (jQuery, this));

Any ideas?

 

1 Answer, 1 is accepted

Sort by
0
Radoslav
Telerik team
answered on 01 Feb 2011, 10:38 AM
Hello Phil,

Based on the supplied information, it is hard to determine what is causing the unwanted behavior at your end. To further track the issue, it will be best if you open a formal support ticket, and send us small working project, demonstrating your logic, and showing the unwanted behavior. We will debug it locally, and get back to you with additional information on the matter.
Additionally please note that RadControls does not support using them with the external third party script libraries.

Regards,
Radoslav
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
Grid
Asked by
Phil
Top achievements
Rank 1
Answers by
Radoslav
Telerik team
Share this question
or