Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
14
Posts with Upvotes
10
Upvoting Members
6
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
3 Commented Posts
0 Endorsements
Ranked #4K
~4K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

19 Posted Topics

Member Avatar for Dani
Member Avatar for Dani
0
46
Member Avatar for Dani

I am not sure about drag_and_drop MAC computers but it works on Android. You need to install 'Jetpack Compose' and follow the https://developer.android.com/develop/ui/views/touch-and-input/drag-drop article.

Member Avatar for Dani
1
104
Member Avatar for Dani

I hate Agile technology. Developers start coding without projecting and the results are pitiful. Blazor SSR is a typical product of such strategy: I found a lot of discrepancies after I started an example of CRUD WEB application. Luckily, I was working for fun, without any contract, and could quit …

Member Avatar for Reverend Jim
0
82
Member Avatar for Dani

It is an experimental feature and syntax may be changed in the future. Moreover, Mozilla browser has no this feature.

Member Avatar for Dani
0
137
Member Avatar for Dani

I stopped using jQuery two years ago: current DOM API provides equivalents for all jQuery functions.

Member Avatar for gediminas.bukauskas.7
0
27
Member Avatar for Dani

It has some sense: the user can open debugger pressing F12 key. Print here an exceptions only: many log messages are useful in develop stage only.

Member Avatar for Dani
0
42
Member Avatar for Dani

SQL Server actually keeps up with how often an index is used. You can find this information by querying the built in sys.indexes and sys.dm_db_index_usage_stats DMVs. The 'https://sqlnuggets.com/sql-scripts-find-index-usage/' article explains how to fetch this information and provides SQL scripts. I found no equivalent tool for the MySQL database. You would …

Member Avatar for gediminas.bukauskas.7
1
284
Member Avatar for Dani

Every additional JS library slows down loading of the site. I haven't used jQuery for a long time, so I would like to know: does the new jQuery have something that can't be done with the DOM API and CSS?

Member Avatar for Dani
0
769
Member Avatar for Dani

Site https://www.geeksforgeeks.org/javascript/how-to-execute-after-page-load-in-javascript/ explains asynchronous loading of the JS. Select appropriate event mentioned in this article.

Member Avatar for Dani
0
41
Member Avatar for lennyli

Pritaeas answered the question: normal WEB security settings forbids launching executables on a client machine. The only legal workaround is to create windows service (daemon in Linux environment), install it on client machine and listen for some commands coming from server over WEB sockets.

Member Avatar for Dani
1
240
Member Avatar for KamalDeepPareek

First, you need to reduce radically the usage of JS and CSS. I don't know about React, but Angular is clearly too big. Pack loadable items into bundles and don't use one huge bundle: create collection of bundles. Switch on JavaScript type=module and load software under the demand. Use W3C …

Member Avatar for gediminas.bukauskas.7
2
590
Member Avatar for jamesalery
Member Avatar for gediminas.bukauskas.7
0
67
Member Avatar for ianhaneybs

JS has a function for the formatting currencies. Read the 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat' article. You will find code samples there.

Member Avatar for gottaloveit
0
94
Member Avatar for juan_35

WEB security now rejects mail sent from any computer. Select some mail provider and send mail using it. Using certificated WEB serve is an another solution. Obtain legal certificate, register it on WEB server (IIS, Apache, NGINX, ...)

Member Avatar for Biiim
0
458
Member Avatar for Mr.M

Multi-select would have multiple attribute <select ... multiple>. An example of retrieving all selected values is provided on site "https://stackoverflow.com/questions/5866169/how-to-get-all-selected-values-of-a-multiple-select-box". Read answer #85.

Member Avatar for Biiim
0
173
Member Avatar for jkon

Pack the application and dependencies into some container. I am using docker, use kubernetes if you hate docker.

Member Avatar for jkon
1
231
Member Avatar for Olive34

You will need two class libraries (.NET Framework): 1) CRUD operations with Entity Framework, 2) Shared library with interfaces (proxy library). You can to create many libraries of the first type (one for every different DB type). All these libraries must to implement interfaces defined in proxy library. Connection string …

Member Avatar for jkon
0
99
Member Avatar for lewashby

Correct the selector: $(document).ready(function() { ... You wrote $(documenet)

Member Avatar for Dani
0
280
Member Avatar for erum

Set default browser to Google Chrome and launch the application. Click F12 . Go to Network tab after getting the error and click “Refresh Button. Debugger would show detailed description of the problem. The same debugger exists in latest Mozilla Firefox or Internet Explorer version.

Member Avatar for erum
0
187

The End.