Link to home
Start Free TrialLog in
Avatar of DistillingExperts
DistillingExperts

asked on

Error DevExpress

I am getting this error but I already added the referente to DevExpress.Data

Server Error in '/' Application.

Compilation Error

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: CS0012: The type 'DevExpress.Utils.IAssignableCollection' is defined in an assembly that is not referenced. You must add a reference to assembly 'DevExpress.Data.v9.2, Version=9.2.6.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a'.

Source Error:


Line 2418:        
Line 2419:        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
Line 2420:        private void @__BuildControl__control40(DevExpress.Web.ASPxTabControl.TabPageCollection @__ctrl) {
Line 2421:            global::DevExpress.Web.ASPxTabControl.TabPage @__ctrl1;
Avatar of AndyAinscow
AndyAinscow
Flag of Switzerland image

Add a reference to 'DevExpress.Data.v9.2' - project settings, references
Hi there,

You can try the modified function I have attached below...

hope it helps ^_^
function displayText(displayText)
    {
      var panel = document.getElementById("content");
     
       document.getElementById("display_content").innerHTML =  document.getElementById("Media" + displayText.id).innerHTML;
       document.getElementById("lblsubject").innerHTML =  displayText.innerHTML;
       document.getElementById("lbldate").innerHTML =  document.getElementById("date" + displayText.id).innerHTML;
                    //Clone the Div that contain data
                    var newContent = document.getElementById("du_content").cloneNode(true);
                    newContent.style.display="";
                    newContent.style.position="absolute";
                    newContent.style.width="200px";
                    newContent.style.height="300px";
                    newContent.style.top="200px";
                    newContent.style.left="200px";
                    
                    
                    if (panel.firstChild)
                        panel.removeChild(panel.firstChild);
                    panel.appendChild(newContent);
     
    }

Open in new window

Avatar of DistillingExperts
DistillingExperts

ASKER

Where should I include this function?
No No nO... ignore that... I do not how this happened, but I posted a answer in the wrong question. Just ignore It. My bad...
I fixed it by add the reference in the web.config
Doesn't adding the reference to the project cure it?
ASKER CERTIFIED SOLUTION
Avatar of DistillingExperts
DistillingExperts

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I fix it.