This one is driving me nuts at the moment...
We have Card page with a couple subform pages (ListPart). In a NAV 2009 SP1 database, the page works fine - you can edit the subform lines with no problems. We upgraded the database to R2 (just a technical upgrade -all objects and data moved forward with no changes) and there the subform pages are non-editable. The editable property has not been modified on any of the pages, groups or controls here...everything should be editable. I can't figure out why it's not...any suggestions for what could cause this behaviour? One subform uses a tempory recordset, but the other subform is a very straightforward one (comment lines) - nothing fancy.
0
Comments
http://www.epimatic.com
This page (the card page) is opened through code as there is some pre-processing and a temporary record is fed into the page. i.e.
TempRec.INIT;
//Setup the temprec field values
IF PAGE.RUNMODAL(PAGE::"Card Page Here",TempRec) = Action::LookupOK THEN BEGIN
//Logic here to process the data
END;
http://www.epimatic.com