DevExpress ASPxComboBox not filtering

你离开我真会死。 提交于 2019-12-25 01:42:48

问题


I have an ASPxComboBox from the DevExpress suite and am trying to get it filtered. If I click on the dropdown button of the combo box it will show the first few of the query as if the filter is empty.

If I try to populate the filter, or scroll down to see more, it will just provide a perpetual "Loading" state. The stored procedure returns the correct results when ran with appropriate parameters. What could be the problem?

EDIT: I have been following this tutorial on the DevExpress site: http://demos.devexpress.com/ASPxEditorsDemos/ASPxComboBox/LargeDataSource.aspx

EDIT (again): OK if I remove the line:

<ClientSideEvents BeginCallback="function(s, e) { OnBeginCallback(); }" EndCallback="function(s, e) { OnEndCallback(); } " />

from the combo box it will hit a break point in cboInstructor_OnItemsRequestedByFilterCondition_SQL, but on going to the DataBind() it will thorw the error:

Index (zero based) must be greater than or equal to zero and less than the size of the argument list.

ASP file

<form id="form1" runat="server">
<div>
    <dxe:ASPxComboBox ID="cboInstructor" runat="server" Width="100%"
        EnableCallbackMode="True" CallbackPageSize="10"
        IncrementalFilteringMode="Contains" ValueType="System.Int32" ValueField="employee_id"
        OnItemsRequestedByFilterCondition="cboInstructor_OnItemsRequestedByFilterCondition_SQL"
        OnItemRequestedByValue="cboInstructor_OnItemRequestedByValue_SQL" TextFormatString="{1} {2}"
        DropDownStyle="DropDown" DataSourceID="SqlDataSourceInstruct"
    >
        <Columns>
            <dxe:ListBoxColumn FieldName="display_forename" />
            <dxe:ListBoxColumn FieldName="display_surname" />
        </Columns>
        <ClientSideEvents BeginCallback="function(s, e) { OnBeginCallback(); }" EndCallback="function(s, e) { OnEndCallback(); } " />
    </dxe:ASPxComboBox>
    <asp:SqlDataSource ID="SqlDataSourceInstruct" runat="server" ConnectionString="Server=160.10.1.25;User ID=root;Password=password;Persist Security Info=True;Database=central" ProviderName="MySql.Data.MySqlClient" SelectCommand="GetUser" SelectCommandType="StoredProcedure">
        <SelectParameters>
            <asp:Parameter Name="filter" Type="String" />
            <asp:Parameter Name="startIndex" Type="Int32" />
            <asp:Parameter Name="endIndex" Type="Int32" />
        </SelectParameters>
    </asp:SqlDataSource>
</div>
</form>

CS file

public partial class TestComboBox : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }

    protected void cboInstructor_OnItemsRequestedByFilterCondition_SQL(object source, ListEditItemsRequestedByFilterConditionEventArgs e)
    {
        ASPxComboBox comboBox = (ASPxComboBox)source;
        //SqlDataSourceInstruct.SelectCommand =
        //       @"SELECT CONCAT(display_Forename, ' ', display_Surname) FROM (SELECT employee_id, display_forename , display_surname, @rownum:=@rownum+1 AS rn FROM central.user_record, (SELECT @rownum:=0) AS r WHERE CONCAT(display_forename, ' ', display_surname) LIKE @filter ORDER BY display_surname ASC) AS st where st.rn between @startIndex and @endIndex";

        SqlDataSourceInstruct.SelectParameters.Clear();
        SqlDataSourceInstruct.SelectParameters.Add("filter", TypeCode.String, string.Format("%{0}%", e.Filter));
        SqlDataSourceInstruct.SelectParameters.Add("startIndex", TypeCode.Int64, (e.BeginIndex + 1).ToString());
        SqlDataSourceInstruct.SelectParameters.Add("endIndex", TypeCode.Int64, (e.EndIndex + 1).ToString());
        //comboBox.DataSource = SqlDataSourceInstruct;
        comboBox.DataBind();
    }

    protected void cboInstructor_OnItemRequestedByValue_SQL(object source, ListEditItemRequestedByValueEventArgs e)
    {
        long value = 0;
        if (e.Value == null)
            return;
        if (!Int64.TryParse(e.Value.ToString(), out value))
            return;
        ASPxComboBox comboBox = (ASPxComboBox)source;
        SqlDataSourceInstruct.SelectCommand = @"SELECT employee_id, display_surname, display_forename FROM central.user_record WHERE (employee_id = @ID) ORDER BY display_forename";

        SqlDataSourceInstruct.SelectParameters.Clear();
        SqlDataSourceInstruct.SelectParameters.Add("ID", TypeCode.Int64, e.Value.ToString());
        comboBox.DataSource = SqlDataSourceInstruct;
        comboBox.DataBind();

    }
}

MySQL stored procedure

DELIMITER $$

USE `central`$$

DROP PROCEDURE IF EXISTS `GetUser`$$

CREATE DEFINER=`root`@`%` PROCEDURE `GetUser`(filter VARCHAR(50), startIndex INT, endIndex INT)
BEGIN
    SELECT employee_id, display_Forename, display_Surname
    FROM 
        (SELECT 
            employee_id
            , display_forename
            , display_surname
            , @rownum:=@rownum+1 AS rn  
        FROM central.user_record, 
            (SELECT @rownum:=0) AS r 
        WHERE CONCAT(display_forename, ' ', display_surname) LIKE filter
        ORDER BY display_surname ASC) AS st 
    WHERE st.rn BETWEEN startIndex AND endIndex;
    END$$

DELIMITER ;

回答1:


Why are these things always so simple?! I had TextFormatString="{1} {2}" in the ASPxComboBox and there are only 2 columns, I had a third before but removed it and forgot to change the TextFormatString I also just removed the ClientSideEvents as they were from the example I posted above, but I wasn't using them.

Everything working now!



来源:https://stackoverflow.com/questions/6305270/devexpress-aspxcombobox-not-filtering

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!