message icon indicating copy to clipboard operation
message copied to clipboard

Custom messages, alerts, confirmations

Results 3 message issues
Sort by recently updated
recently updated
newest added

Is: ``` dhtmlx.message({ type:"error", "Critical error!"}); //or dhtmlx.message({ type:"alert-error", "Critical error!"}); //or dhtmlx.message({ type:"confirm-error", "Confirm self-destruction!"}); ``` Should be: ``` dhtmlx.message({ type:"error", text:"Critical error!"}); //or dhtmlx.message({ type:"alert-error", text:"Critical error!"}); //or...

I believe that text in message should not be selected. Or at least there should be a global option for messages enabling which would stop selecting text. Also cursor should...