I have a livegrid using the right-click "Add new record" menu and form popup. The DB table I'm using has 2 columns that aren't editable to the user (and really should be hidden in the grid). How do I get these into the INSERT statement with data that I will supply from code? Either prepopulate 2 uneditable form fields in that form popup? or add the values somehow to the "parms" variable in function TESubmit()? In any case, I'm not sure how to go about it. I would know the values I want to add while in the .aspx page in VB. thx, AirPierre
on 14.12.2007 19:16
on 15.12.2007 16:39
Set the EntryType to "H" and make sure ColData is set the value to be stored. Matt
on 17.12.2007 14:43
Thx so much Matt. It's working great.
and to follow up for anyone else... this is how I set the column
dynamically:
Grid.columns(5).ColData = Request.QueryString("ID")


