protected void Page_Load(object sender, EventArgs e) { ScriptManager sm = ScriptManager.GetCurrent(this); if (sm != null) { sm.Scripts.Add(new ScriptReference(ArquivoJS.MsgConfirmExclusao)); } if (!IsPostBack) { string message = __SessionWEB.PostMessages; if (!String.IsNullOrEmpty(message)) { _lblMessage.Text = message; } _dgvGrupo.PageSize = ApplicationWEB._Paginacao; UCComboSistemas1.Inicialize("Sistema *"); UCComboSistemas1._ShowSelectMessage = true; UCComboSistemas1._Load(); UCComboSistemas1._ValidationGroup = "Pesquisa"; VerificaBusca(); Page.Form.DefaultButton = _btnPesquisa.UniqueID; Page.Form.DefaultFocus = UCComboSistemas1._Combo.ClientID; divPesquisa.Visible = __SessionWEB.__UsuarioWEB.GrupoPermissao.grp_consultar; _btnPesquisa.Visible = __SessionWEB.__UsuarioWEB.GrupoPermissao.grp_consultar; _btnNovo.Visible = __SessionWEB.__UsuarioWEB.GrupoPermissao.grp_inserir; } }
protected void Page_Load(object sender, EventArgs e) { ScriptManager sm = ScriptManager.GetCurrent(this); if (sm != null) { sm.Scripts.Add(new ScriptReference(ArquivoJS.CamposData)); sm.Scripts.Add(new ScriptReference(ArquivoJS.UiAriaTabs)); sm.Scripts.Add(new ScriptReference(ArquivoJS.Tabs)); sm.Scripts.Add(new ScriptReference(ArquivoJS.PastaScriptRaiz + "Telas/jsModuloSeguranca.js")); } if (!IsPostBack) { _txtDtInicio.Text = DateTime.Now.ToString("dd/MM/yyyy"); _txtDtFinal.Text = DateTime.Now.ToString("dd/MM/yyyy"); _dgvLog.PageSize = ApplicationWEB._Paginacao; UCComboSistemas1.Inicialize("Sistema"); UCComboSistemas1._ShowSelectMessage = true; UCComboSistemas1._EnableValidator = false; UCComboSistemas1._Load(); _LoadTipoLog(); VerificaBusca(); Page.Form.DefaultButton = _btnPesquisa.UniqueID; } }
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { try { UCComboSistemas1._ShowSelectMessage = true; UCComboSistemas1.Inicialize("Sistema *"); UCComboSistemas1._Load(); UCComboVisao1._ShowSelectMessage = true; UCComboVisao1.Inicialize("Visão *"); UCComboGrupo1._ShowSelectMessage = true; UCComboGrupo1.Inicialize("Copiar permissões de outro grupo?"); UCComboGrupo1._EnableValidator = false; UCComboGrupo1._SelecionaAutomatico = false; UCComboGrupo1._Load(-1, -1); UCComboGrupo2._ShowSelectMessage = true; UCComboGrupo2.Inicialize("Associar usuários de outro grupo?"); UCComboGrupo2._EnableValidator = false; UCComboGrupo2._SelecionaAutomatico = false; UCComboGrupo2._Load(-1, -1); UCComboGrupo1._Combo.Enabled = false; UCComboGrupo2._Combo.Enabled = false; } catch (Exception ex) { ApplicationWEB._GravaErro(ex); _lblMessage.Text = UtilBO.GetErroMessage("Erro ao tentar carregar o sistema.", UtilBO.TipoMensagem.Erro); } if ((PreviousPage != null) && (PreviousPage.IsCrossPagePostBack)) { _LoadFromEntity(PreviousPage.EditItem); _chkBloqueado.Visible = true; } else { _chkBloqueado.Visible = false; _chkBloqueado.Checked = false; this._btnSalvar.Visible = __SessionWEB.__UsuarioWEB.GrupoPermissao.grp_inserir; } Page.Form.DefaultButton = _btnSalvar.UniqueID; Page.Form.DefaultFocus = UCComboSistemas1._Combo.ClientID; } UCComboSistemas1.OnSelectedIndexChange = UCComboSistemas1__IndexChanged; UCComboVisao1.OnSelectedIndexChange = UCComboVisao1__IndexChanged; }