data-entry

Distribute arbitrary rows on multiple columns

狂风中的少年 提交于 2021-01-28 06:11:05
问题 I have a table of materials. I need to fill a data entry form from that table. The problem is that the data entry form is divided into multiple columns each one containing a a number of materials as in the picture. How to write a tsql select query to obtain the first bunch of material names into a column, the second bunch into a second column and so on. 回答1: It might be easiest to do this in the client side, and not in the database, but if you really want to do this, I would assume the

How can I extract specific texts from an HTML file by using Notepad++ or Adobe Dreamweaver?

我的梦境 提交于 2020-06-29 04:07:27
问题 . I want to extract the ID attribute from an HTML file by using Notepad++ or Dreamweaver. Delete all other texts. For Eg: <div id="header" class="header-blue sticky"> <div id="header-message" class="alert alert-dismissible"> <form id="contact-form" class="custom-form" method="POST" action="https://www.google.com"> <input id="your-email" type="email" class="form-email" placeholder="Your Email"> I want to extract only ID attribute from HTML like this; id="header" id="header-message" id="contact

Adding jQuery Drop Downs to a Variable Length Data Entry Page

北慕城南 提交于 2019-12-22 01:04:45
问题 Hey all, I am creating an entry form that allows a person to add multiple days to a request. Each request can have 1 or more days attached and each day has a few selections to make before they can submit the form. I am using the method described here to accomplish this. Now, I want to start doing some more advanced UI features like using a JSON data source to build my drop down lists with a parent-child relationship. I am still quite new web development (coming from IBM i green-screen

How to detect a typo in a product search and suggest possible corrections?

别来无恙 提交于 2019-12-20 09:44:46
问题 Given a very large database of product names, how would you detect possible typos in user searches and suggest possible corrections (Kinda like the way Google presents them)? E.g. User enters "fork handels" and presses 'search'. They get back "No results. Did you mean 'fork handles'?" 回答1: There are several approaches for this problem: Keeping a table of most popular misspellings in your database. If you need some common misspellings: here) Using an algorithm based on the edit distance : In

Script program inputs in bash ubuntu linux [closed]

强颜欢笑 提交于 2019-12-13 08:59:33
问题 Closed . This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 4 years ago . I'm in a course for C++ programming. Our professor created a linux validation script against which our program output must match exactly. It's running out of his own program and generates an output.txt file, then compares it against his output file, if it doesn't match it rejects the script. The

Do you use any 3rd party Data Entry Controls?

这一生的挚爱 提交于 2019-12-11 09:59:27
问题 In every project, i always build up data entry forms for the Entities. I have googled it a bit and found some controls like Peter's Data Entry Suite ... etc. Do you ever use these kind of controls and could you please tell me your experiences about using them ? Thank you 回答1: For web development I've always had positive experiences with Telerik. At the end of the day it comes down to the classic build vs buy. Once upon a time I was consulting for a company and I came across a jr programmer my

Django modelform: is inline adding related model possible?

笑着哭i 提交于 2019-12-10 21:48:19
问题 I really hope this is not a duplicate: I couldn't find anything but that could just mean I'm not good at searching :) I have a Django app, and the staff is already using the admin app for... well, administration purposes. I also created a quick data entry page for a specific model, created substantially by dropping a modelform inside the base template, so that I have: custom fields custom widgets javascript client-side validation (server-side validation is of course also present) and of

Replacing MS Access forms

亡梦爱人 提交于 2019-12-10 10:10:32
问题 We have a number of very old data entry forms that were made in Access that link to our SQL Server database. Each form may have any number of sub-forms. We'd like to move away from using these access frontends but don't have the time to create a new app or web app to replace every form that we've got. Is there another option that would link to SQL Server and allow visual design of the form and automatic linkage to the database? Or if that's too much of an ask, can you think of a way to make

Replacing MS Access forms

时光总嘲笑我的痴心妄想 提交于 2019-12-05 23:07:05
We have a number of very old data entry forms that were made in Access that link to our SQL Server database. Each form may have any number of sub-forms. We'd like to move away from using these access frontends but don't have the time to create a new app or web app to replace every form that we've got. Is there another option that would link to SQL Server and allow visual design of the form and automatic linkage to the database? Or if that's too much of an ask, can you think of a way to make hand-coding the forms easier? From experience, I don't think you will find any product, tool or

Adding jQuery Drop Downs to a Variable Length Data Entry Page

爱⌒轻易说出口 提交于 2019-12-04 22:03:36
Hey all, I am creating an entry form that allows a person to add multiple days to a request. Each request can have 1 or more days attached and each day has a few selections to make before they can submit the form. I am using the method described here to accomplish this. Now, I want to start doing some more advanced UI features like using a JSON data source to build my drop down lists with a parent-child relationship. I am still quite new web development (coming from IBM i green-screen development) so I am still learning by examples and with tutorials. I have found many examples of parent-child