Esempio n. 1
0
    protected void gridProxies_DataBound(object sender, EventArgs e)
    {
        if (fullGridPager == null)
        {
            fullGridPager = new FullGridPager(gridProxies, MaxVisible, "Page", "of");
        }

        fullGridPager.CreateCustomPager(gridProxies.BottomPagerRow);
    }
Esempio n. 2
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            fullGridPager = new FullGridPager(gridProxies, MaxVisible, "Page", "of");
            fullGridPager.MaxVisiblePageNumbers = 16;
        }

        ltHeader.Text = "Profiles I can Edit";
        HideRightColumn();
        FillGrid();
    }