View Issue Details

IDProjectCategoryView StatusLast Update
0001543JEDI VCL00 JVCL Componentspublic2004-03-30 02:14
ReporterMarkus SpoettlAssigned Tomarcelb 
PrioritynormalSeverityfeatureReproducibilityalways
Status resolvedResolutionfixed 
Product Version 
Target VersionFixed in Version 
Summary0001543: JvInspector: Implement a new function
DescriptionHow about adding a function to TJvCustomInspector named "SaveValues" which does what you have set me. I have added it to my local version but you might want to add that because it comes in handy from time to time. This function is very similar to TJvCustomInspector.RefreshValues with the exception that it saves what is in the editor (if there is any) instead of throwing the change away.
Additional Informationprocedure TJvCustomInspector.SaveValues;
begin
  if (Selected <> nil) and Selected.Editing then
  begin
    Selected.DoneEdit(FALSE);
    Selected.InitEdit;
  end;
  Invalidate;
end;
TagsNo tags attached.

Activities

marcelb

2004-03-30 02:14

manager   ~0003510

Done.

Issue History

Date Modified Username Field Change
2004-03-29 05:33 Markus Spoettl New Issue
2004-03-29 23:55 marcelb Status new => acknowledged
2004-03-30 02:11 marcelb Status acknowledged => assigned
2004-03-30 02:11 marcelb Assigned To => marcelb
2004-03-30 02:14 marcelb Status assigned => resolved
2004-03-30 02:14 marcelb Resolution open => fixed
2004-03-30 02:14 marcelb Note Added: 0003510