ASP.NET - problemas con control DropDownCheckBoxes

 
Vista:

problemas con control DropDownCheckBoxes

Publicado por alexis (27 intervenciones) el 11/02/2015 00:33:53
buenas tardes que tal, estaba intentando agregar el contro DropDownCheckBoxes l en un proyecto aspx en c #
me manda error en el java sct

en el encabezado tengo el siguiente codigo


<%@ Page Language="C#" MasterPageFile="~/pmLogistic.Master" AutoEventWireup="true" CodeBehind="frmNoBooked.aspx.cs" Inherits="po_logistic.frmNoBooked" Title ="PO's Booking" %>


<%@ Register assembly="DropDownCheckBoxes" namespace="Saplin.Controls" tagprefix="cc1" %>


<%@ Register TagPrefix="cc2" Namespace="ExtendedWebComboBox" Assembly="ExtendedWebComboBox" %>



<%@ Register src="DateSelector.ascx" tagname="DATESELECTOR" tagprefix="SCONTROLS" %>

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" Runat="Server">



cuando creo un proyecto nuevo no me da problema con ese control

ya lo referencie


en la parte de codigo en la cabecera tengo lo siguiente

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using po_logistic.adLogistic;
using po_logistic.lnLogistic;
using System.Data.SqlClient;
using System.Data.OleDb;
using System.Text;
using System.Globalization;
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

problemas con control DropDownCheckBoxes

Publicado por alexis (27 intervenciones) el 11/02/2015 15:22:41
el error que me envia es el siguiente

1
2
3
4
5
6
7
DropDownScript.prototype.initEvents = function () {
    if (!this.initialized)
        $(document).hitch(
            "click",
            this.documentClickHandler,
            this
        );
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar