| dbFldsNotes |
Allow user to add a rightmost column to the filter or edit display grid and place custom notes in it. Notes header can be set using "zNotes" UserLocalText.
| Property Syntax |
Obj.dbFldsNotes="(;,)Field1,Note1; Field2,Note2"
| Parameters |
|
Parameters |
Default Value |
Description |
| (;,) | (;,) | Group-Field delimiter |
| Fieldx | Field names or numbers | |
| Notex | Notes for the field |
| Example |
| <!-- #include File=AspDB.Inc --> <% Set X=Server.CreateObject("ASP.DB") X.dbQuickProps="1;NWIND;orders;Both;;;;ACCESS;5" X.dbNavigationItem="Top,bottom,next,prev,filter,edit" X.dbEditParams="Tablename=orders, bookmarkFlds=0" X.dbEditFlds="0,1,2,3,4" X.dbFilterFlds="0,1,2,3" X.dbFldsNotes="0,Note 0; 1, Note 1; 2, Note 2; 3, Note 3;" s = s & zField & ",My Field;" s = s & zNewRec & ",My New Record;" s = s & zCurrentRec & ",My Current Record;" s = s & zNotes & ",My Notes" X.dbUserLocalText=s X.ASPDB %> |
| Output |
![]() |
| dbFldsNotes can also be used in Filter screen
|