Example #1
0
        public static LookUpEdit LookUpItemTxnIdAndName(LookUpEdit repLookUp)
        {
            ServiceCommon serviceCommon = new ServiceCommon();
            DataTable     dt            = serviceCommon.ListDataForTxnIdAndName();

            repLookUp.SetDataTable(dt, "TXN_ID", "TXN_ID_NAME", TextEditStyles.DisableTextEditor, "");
            repLookUp.EditValue = "";

            return(repLookUp);
        }
Example #2
0
        public static LookUpEdit LookUpItemUserIdAndName(LookUpEdit repLookUp)
        {
            ServiceCommon serviceCommon = new ServiceCommon();
            DataTable     dt            = serviceCommon.ListDataForUserIDAndUserName().Trim();

            repLookUp.SetDataTable(dt, "UPF_USER_ID", "UPF_USER_ID_NAME", TextEditStyles.DisableTextEditor, "");
            repLookUp.EditValue = "";

            return(repLookUp);
        }