コード例 #1
0
    //Select view to generate grid columns
    protected void OnGridLayoutLoad(object sender, PXGridLayoutEventArgs e)
    {
        PXGrid  grid  = sender as PXGrid;
        PXGraph graph = grid.DataGraph;

        int startRow    = 0;
        int maximumRows = 0;
        int totalRows   = 0;

        graph.ExecuteSelect("Changes", new object[0], new object[0], new string[0], new bool[0], new PXFilterRow[0], ref startRow, maximumRows, ref totalRows);
    }
コード例 #2
0
	//Select view to generate grid columns
	protected void OnGridLayoutLoad(object sender, PXGridLayoutEventArgs e)
	{
		PXGrid grid = sender as PXGrid;
		PXGraph graph = grid.DataGraph;

		int startRow = 0;
		int maximumRows = 0;
		int totalRows = 0;

		graph.ExecuteSelect("Changes", new object[0], new object[0], new string[0], new bool[0], new PXFilterRow[0], ref startRow, maximumRows, ref totalRows);
	}