- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 14
- Posts with Upvotes
- 10
- Upvoting Members
- 6
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
19 Posted Topics
I don't use jQuery in new projects: DOM API has all equivalent functions.
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.
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 …
It is an experimental feature and syntax may be changed in the future. Moreover, Mozilla browser has no this feature.
I stopped using jQuery two years ago: current DOM API provides equivalents for all jQuery functions.
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.
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 …
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?
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.
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.
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 …
Look at Customers table in NorthWind database (https://en.wikiversity.org/wiki/Database_Examples/Northwind).
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.
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, ...)
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.
Pack the application and dependencies into some container. I am using docker, use kubernetes if you hate docker.
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 …
Correct the selector: $(document).ready(function() { ... You wrote $(documenet)
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.
The End.