我是新手C#程序员(大约6个月),我在目前的ASP.NET工作中使用DevExpress组件。
我不知道填充网格内的一个combox。 问题基本上是这样的: 对于网格中的每一行,我都有一个要显示的标题/方坯,在一列中我列出了这个标题/方坯的付款时间。 我需要至少显示一条存在的记录,或者当标题/方坯尚未支付时为空。
我在网站上查看了一些示例和帖子,我试图实现,但没有任何能给我带来有效结果。
aspx看起来像这样: `
<dx:ASPxGridView ID="devGridView" ClientInstanceName="devGridView" runat="server"
AutoGenerateColumns="False" EnableCallBacks="False" KeyFieldName="ID_TITULO"
Width="100%" DataSourceID="odsTitulosReceber">
<Settings ShowHeaderFilterButton="true" ShowGroupPanel="true" ShowFooter="true" ShowFilterRow="true" />
<SettingsBehavior AllowFocusedRow="true" />
<SettingsDetail ShowDetailRow="true" />
<SettingsPager PageSize="100">
</SettingsPager>
<ClientSideEvents RowClick="behavior.rowClick" />
<Columns>
<dx:GridViewDataTextColumn FieldName="ID_DOCUMENTO_FISCAL" Caption="Doc. Fiscal"
Width="70px">
</dx:GridViewDataTextColumn>
<dx:GridViewDataTextColumn FieldName="DS_PESSOA" Caption="Pessoa">
</dx:GridViewDataTextColumn>
<dx:GridViewDataTextColumn FieldName="ST_TITULO" Caption="Situação">
</dx:GridViewDataTextColumn>
<dx:GridViewDataTextColumn FieldName="DT_EMISSAO" Caption="Emissão">
<PropertiesTextEdit DisplayFormatString="dd/MM/yyyy">
</PropertiesTextEdit>
</dx:GridViewDataTextColumn>
<dx:GridViewDataTextColumn FieldName="DT_VENCIMENTO" Caption="Vencimento">
<PropertiesTextEdit DisplayFormatString="dd/MM/yyyy">
</PropertiesTextEdit>
</dx:GridViewDataTextColumn>
<dx:GridViewDataTextColumn FieldName="DT_PAGAMENTO" Caption="Pagamento">
<PropertiesTextEdit DisplayFormatString="dd/MM/yyyy">
</PropertiesTextEdit>
</dx:GridViewDataTextColumn>
<dx:GridViewDataTextColumn FieldName="VL_TITULO" Caption="Valor" Width="110px">
<PropertiesTextEdit DisplayFormatString="c">
</PropertiesTextEdit>
</dx:GridViewDataTextColumn>
<dx:GridViewDataTextColumn FieldName="VL_PAGO" Caption="Valor Pago" Width="110px">
<PropertiesTextEdit DisplayFormatString="c">
</PropertiesTextEdit>
</dx:GridViewDataTextColumn>
<dx:GridViewDataTextColumn FieldName="VL_SALDO" Caption="Valor Saldo" Width="110px">
<PropertiesTextEdit DisplayFormatString="c">
</PropertiesTextEdit>
</dx:GridViewDataTextColumn>
<bold><dx:GridViewDataComboBoxColumn Caption="Pagamento Realizado" FieldName="CONTAS" >
<PropertiesComboBox TextField="DESCRIPTION" ValueField="ID">
</PropertiesComboBox>
</dx:GridViewDataComboBoxColumn></bold>
<dx:GridViewDataTextColumn FieldName="ID_TITULO" Caption="Título">
</dx:GridViewDataTextColumn>
</Columns>
</dx:ASPxGridView>
`
要填写组合“Pagamento Realizado”,我有五个表来过滤数据以获取帐户。 架构:标题&gt; movement_title&lt; financial_movement&gt; content_movement&lt;银行账户 其中title和financial_movement将ID发送到movement_title,依此类推“&gt;” “&LT;”信号... 所以,我有一个重复的标题列表和重复的帐户。 在代码隐藏中,我可以执行此查询(使用linq)来获取与正确标题对应的指定帐户:
`
(...)
from ti in data.FINANCEIRO_TITULOs // TITULOS
join mt in data.FINANCEIRO_MOVIMENTOS_TITULOs on ti.NR_SEQ_TITULOS_FITI equals mt.NR_SEQ_TITULOS_FITI // MOVIMENTO_TITULOS
join mv in data.FINANCEIRO_MOVIMENTOs on mt.NR_SEQ_MOVIMENTO_FINANCEIRO_FIMF equals mv.NR_SEQ_MOVIMENTO_FINANCEIRO_FIMF // MOVIMENTOS
join cm in data.FINANCEIRO_CONTEUDO_MOVIMENTOs on mv.NR_SEQ_MOVIMENTO_FINANCEIRO_FIMF equals cm.NR_SEQ_MOVIMENTO_FINANCEIRO_FIMF // CONTEUDO_MOVIMENTOS
join co in data.FINANCEIRO_CONTAs on cm.NR_SEQ_CONTAS_FICO equals co.NR_SEQ_CONTAS_FICO // CONTAS
where
ti.TP_CREDITO_DEBITO_FITI == 2 && // credito
ti.ST_SITUACAO_FITI == 3 &&// baixado
ti.NR_SEQ_TITULOS_FITI.Equals(idTitulo)
select (...)
`
我需要一些帮助来填补。 如果有人可以帮助我,我来这里讨论...... 感谢。
答案 0 :(得分:1)
这是我的临时解决方案......
我在GridView列中添加了以下ASPx
<dx:GridViewDataColumn Caption="Pagamento Recebido" FieldName="CONTA">
<DataItemTemplate>
<asp:DropDownList DataTextField="Description" runat="server">
</asp:DropDownList>
</DataItemTemplate>
</dx:GridViewDataColumn>
如果我把查询作为数据源放到下拉列表中。 是一种糟糕的方式导致页面加载非常慢,每次咨询都需要花费很多时间。
protected void devGridView_HtmlRowCreated(object sender, ASPxGridViewTableRowEventArgs e)
{
if (e.KeyValue != null) // avoid header and column name
{
ControlFinder<DropDownList> finder = new ControlFinder<DropDownList>();
finder.FindChildControlsRecursive(e.Row);
int idTitulo = e.GetValue("ID_TITULO").ToString().ToInt(); // necessary param
using (ErpDataLinq data = new ErpDataLinq())
{
finder.FoundControls.Each(f =>
{
f.DataSource = (
from ti in data.FINANCEIRO_TITULOs // TITULOS
join mt in data.FINANCEIRO_MOVIMENTOS_TITULOs on ti.NR_SEQ_TITULOS_FITI equals mt.NR_SEQ_TITULOS_FITI // MOVIMENTO_TITULOS
join mv in data.FINANCEIRO_MOVIMENTOs on mt.NR_SEQ_MOVIMENTO_FINANCEIRO_FIMF equals mv.NR_SEQ_MOVIMENTO_FINANCEIRO_FIMF // MOVIMENTOS
join cm in data.FINANCEIRO_CONTEUDO_MOVIMENTOs on mv.NR_SEQ_MOVIMENTO_FINANCEIRO_FIMF equals cm.NR_SEQ_MOVIMENTO_FINANCEIRO_FIMF // CONTEUDO_MOVIMENTOS
join co in data.FINANCEIRO_CONTAs on cm.NR_SEQ_CONTAS_FICO equals co.NR_SEQ_CONTAS_FICO // CONTAS
where
ti.TP_CREDITO_DEBITO_FITI == (byte)FinancialBase.OperationType.Credit && // 2 - credito
ti.ST_SITUACAO_FITI == (byte)Securities.Status.Closed && // 3 - baixado
ti.NR_SEQ_TITULOS_FITI.Equals(idTitulo) // param
select new { Description = co.NM_CONTA_FICO }).Distinct(); // distinct - to avoid duplicated values
f.DataBind();
});
}
}
}
好吧,这解决了我的问题。设计/布局丢失了。我现在尝试让页面美丽。
感谢。
编辑
对于试图理解ControlFinder<T>
和方法的人来说,这里有一个确切行为的资源: