Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/28/18 in all areas

  1. News New component available in the uniFalcon package - FSConfirm It supports: Callback ScreenMask personality Native support for FontAwesome Dialog -> (Confirm) Alert Prompt personality (text, password, field required) 6 Themes more 6 colors differnt incredibly fluid, clean and beautiful Store -> https://store.falconsistemas.com.br Demo -> https://demos.falconsistemas.com.br/?tela=tfrmconfirm Confirm.Question('Hello','Are you sure to continue?','fa fa-smile-o', TTypeColor.blue, TTheme.modern, procedure(ButtonCallBack: TConfirmButton) begin if ButtonCallBack = Yes then begin if chkScrenMask.Checked then Sleep(2000); end; if ButtonCallBack = No then Confirm.Alert('Canceled', ' ', 'fa fa-exclamation-circle', TTypeColor.blue, TTheme.modern); end ); Confirm.Alert('My Alert', 'Description optional', 'fa fa-bug', TTypeColor.red, TTheme.material); Confirm.Prompt('Prompt!','Enter something here', '', TTypeColor.orange, TTheme.light, procedure(ButtonCallBack: TConfirmButton; Result: string) begin if ButtonCallBack = Yes then Confirm.Alert('Your Confirmed ',Result); if ButtonCallBack = No then Confirm.Alert('Your Canceld ',Result, 'fa fa-exclamation-circle', TTypeColor.red, TTheme.modern); end );
    1 point
  2. Hi, Just to note that the "layout.rar" example from the message in this post does not run on the latest UniGUI and displays the message: "'field' config has been deprecated. Please use the 'angleField' config instead." It might be useful to update it and/or include it in the official demo if it's not already there (? I've not exhaustively looked at all the included demos, my apologies if it's actually already included!) Edit: The simple way to "fix" this is to edit ClientEvents.UniEvents and open Ext.chart.CartesianChart, then open chart.beforeInit and comment out the "config.axes" assignment in the code. (There's obviously a better way of fixing it but I didn't have the time or patience to work out what exactly has changed and how it should be updated. Changing "fields" to "angleField" or "angleFields" did not work and resulted in another error message.) Walter
    1 point
×
×
  • Create New...