protected void Page_Load(object sender, EventArgs e) { PXGroupBox gb = (PXGroupBox)form.FindControl("gbCOAOrder"); ((PXRadioButton)gb.FindControl("gbCOAOrder_op0")).Text = PX.Data.PXMessages.LocalizeNoPrefix(PX.Objects.GL.Messages.COAOrderOp0); ((PXRadioButton)gb.FindControl("gbCOAOrder_op1")).Text = PX.Data.PXMessages.LocalizeNoPrefix(PX.Objects.GL.Messages.COAOrderOp1); ((PXRadioButton)gb.FindControl("gbCOAOrder_op2")).Text = PX.Data.PXMessages.LocalizeNoPrefix(PX.Objects.GL.Messages.COAOrderOp2); ((PXRadioButton)gb.FindControl("gbCOAOrder_op3")).Text = PX.Data.PXMessages.LocalizeNoPrefix(PX.Objects.GL.Messages.COAOrderOp3); ((PXRadioButton)gb.FindControl("gb_COAOrder_op128")).Text = PX.Data.PXMessages.LocalizeNoPrefix(PX.Objects.GL.Messages.COAOrderOp128); }
protected void Page_Load(object sender, EventArgs e) { PXGroupBox gb = (PXGroupBox)form.FindControl("gbCOAOrder"); ((PXRadioButton)gb.FindControl("gbCOAOrder_op0")).Text = PX.Objects.GL.Messages.COAOrderOp0; ((PXRadioButton)gb.FindControl("gbCOAOrder_op1")).Text = PX.Objects.GL.Messages.COAOrderOp1; ((PXRadioButton)gb.FindControl("gbCOAOrder_op2")).Text = PX.Objects.GL.Messages.COAOrderOp2; ((PXRadioButton)gb.FindControl("gbCOAOrder_op3")).Text = PX.Objects.GL.Messages.COAOrderOp3; ((PXRadioButton)gb.FindControl("gb_COAOrder_op128")).Text = PX.Objects.GL.Messages.COAOrderOp128; }
protected void Page_Load(object sender, EventArgs e) { if (!this.IsCallback) { PXGroupBox box = this.form.FindControl("gbPeriodically") as PXGroupBox; if (box != null) { PXLabel lbl = box.FindControl("PXLabel1") as PXLabel; if (lbl != null) { lbl.Text = Messages.DocumentDateSelection; } } } }