Commit d8f17f2b by Cameron Hayes

fixed issues with User Page for 0.9.9 release

parent 94ed952a
...@@ -33,18 +33,6 @@ object FViewUsers: TFViewUsers ...@@ -33,18 +33,6 @@ object FViewUsers: TFViewUsers
WidthPercent = 100.000000000000000000 WidthPercent = 100.000000000000000000
OnClick = btnAddUserClick OnClick = btnAddUserClick
end end
object btnConfirmDelete: TWebButton
Left = 506
Top = 174
Width = 96
Height = 25
Caption = 'Confirm'
ChildOrder = 16
ElementID = 'btn_confirm_delete'
HeightPercent = 100.000000000000000000
WidthPercent = 100.000000000000000000
OnClick = btnConfirmDeleteClick
end
object XDataWebClient1: TXDataWebClient object XDataWebClient1: TXDataWebClient
Connection = DMConnection.ApiConnection Connection = DMConnection.ApiConnection
Left = 462 Left = 462
......
...@@ -15,7 +15,6 @@ type ...@@ -15,7 +15,6 @@ type
lblEntries: TWebLabel; lblEntries: TWebLabel;
btnAddUser: TWebButton; btnAddUser: TWebButton;
WebDataSource1: TWebDataSource; WebDataSource1: TWebDataSource;
btnConfirmDelete: TWebButton;
XDataWebDataSet1userID: TStringField; XDataWebDataSet1userID: TStringField;
XDataWebDataSet1username: TStringField; XDataWebDataSet1username: TStringField;
XDataWebDataSet1full_name: TStringField; XDataWebDataSet1full_name: TStringField;
...@@ -396,7 +395,7 @@ begin ...@@ -396,7 +395,7 @@ begin
// Password Cell // Password Cell
Cell := TJSHTMLElement(document.createElement('td')); Cell := TJSHTMLElement(document.createElement('td'));
Cell.setAttribute('data-label', 'Password'); Cell.setAttribute('data-label', 'Password');
Cell.innerText := Password; Cell.innerText := 'hidden';
NewRow.appendChild(Cell); NewRow.appendChild(Cell);
// Full Name Cell // Full Name Cell
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment