Job Traveler Report Default

I am looking for some assistance on setting default report options. Specifically, looking to create a customization that will check the “Shipping Schedule” checkbox for all job travelers. I am not entirely sure how that code should look. It looks like the checkbox is bound to the field ReportParam.ShpSchd.

Well, decided I would do a quick check over my code and turns out I just had a syntax error… For anyone that may come across this, here is the code that worked.

private void JobTravForm_Load(object sender, EventArgs args)
{
// Add Event Handler Code
EpiDataView epiDataView = (EpiDataView)oTrans.EpiDataViews[“ReportParam”];
epiDataView.dataView[epiDataView.Row][“ShpSchd”]=true;
}

2 Likes