View Issue Details

IDProjectCategoryView StatusLast Update
0004470JEDI VCL00 JVCL Componentspublic2008-09-22 23:42
Reporter_R_VitalAssigned Toobones 
PrioritynormalSeveritycrashReproducibilityalways
Status resolvedResolutionduplicate 
Product Version3.34 
Target VersionFixed in Version 
Summary0004470: TJVDBRadioPanel don´t show corretly information when EVENTS GET/SET text are present
DescriptionMy English is bad, so, i'll try to make myself clear!

When TJvDBRadioPanel is linked in a field, and this same field have a code in events GET and SET Text to translate the information from the database to user, ex: MALE = M, FEMALE = F, the radiopanel don´t show any radiobutton marked. I have tried with others radiobuttons (VLC radiogroup for example, InfoPower, VGLib...) and that problem don´t occours. The Itens property contains "Male,Female" and the Values Property contains "Male,Female". Both are the same! If I change Property values to "M" and "F" the radiopanel show the information corretly but don´t save in database. I hope to find a solution very soon with your´s helps and i hope make my explanation very clear as possible with my "lazy" english =)

Regards from Brasil;

RvMello
Additional Informationprocedure TdmD.tblMembersSEXGetText(Sender: TField; var Text: String; DisplayText: Boolean);
begin
 If Sender.AsString = 'M' then
  Text := 'Male';
 If Sender.AsString = 'F' then
  Text := 'Female';
end;

procedure TdmD.tblMembesSEXSetText(Sender: TField; const Text: String);
begin
 If Text = 'Male' then
  Sender.AsString := 'M';
 If Text = 'Female' then
  Sender.AsString := 'F';
end;
TagsNo tags attached.

Relationships

duplicate of 0004471 resolvedobones TJVDBRadioPanel don´t show corretly information when EVENTS GET/SET text are present 
has duplicate 0004469 resolvedobones TJVDBRadioPanel don´t show corretly information when EVENTS GET/SET text are present 

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2008-09-22 15:01 _R_Vital New Issue
2008-09-22 23:41 obones Relationship added has duplicate 0004469
2008-09-22 23:42 obones Relationship added duplicate of 0004471
2008-09-22 23:42 obones Duplicate ID 0 => 4471
2008-09-22 23:42 obones Status new => resolved
2008-09-22 23:42 obones Resolution open => duplicate
2008-09-22 23:42 obones Assigned To => obones