You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
showMessageDialog("You asked to edit the record" + 0 + "Edit Record");
Summary
The message dialog for the "Edit" button displays an incorrect message due to a missing reference to the record's number in the code.
Steps
Navigate to the table page.
Click the "Edit" button for any row in the table.
Observe the message displayed in the dialog.
Expected Result:
The dialog should display the correct record number, e.g., "You asked to edit the record 000001 Edit Record".
Actual Result:
The dialog displays the message: "You asked to edit the record0Edit Record", where the record number is missing due to improper concatenation in the code.
Suggestion
Use showMessageDialog("You asked to edit the record " + e.getItem().getNumber() + " Edit Record");
The text was updated successfully, but these errors were encountered:
webforj-docs-samples/src/main/java/com/webforj/samples/views/table/TableColumnPinningView.java
Line 34 in 51f74d9
Summary
The message dialog for the "Edit" button displays an incorrect message due to a missing reference to the record's number in the code.
Steps
Expected Result:
The dialog should display the correct record number, e.g., "You asked to edit the record 000001 Edit Record".
Actual Result:
The dialog displays the message: "You asked to edit the record0Edit Record", where the record number is missing due to improper concatenation in the code.
Suggestion
Use
showMessageDialog("You asked to edit the record " + e.getItem().getNumber() + " Edit Record");
The text was updated successfully, but these errors were encountered: