The forms tag has no wiki summary.
-4
votes
0answers
20 views
How to update form data in php mvc? [on hold]
i have created a form in MVC PHP but i cant not code for that form to update value of single row.I have written code for insert values,delete values but i am facing issue that how to update a row?
2
votes
5answers
464 views
Web programming, standard way to deal with a response that takes time to complete
With normal form submission I use the pattern Post / Redirect / Get, when processing the forms.
I have a database application built with Django. I want to allow the users to select a number of items ...
-3
votes
1answer
49 views
What options are there to programmatically use windows application in VB.NET? (Button Press and Keyboard Strokes) [closed]
I have this complex windows application that I need to create an automated testing system for.
I need to use VB.NET, and it needs to be able to click all kinds of things, be conscious of the windows ...
3
votes
3answers
248 views
Web App vs. Desktop App Regarding Deployment
I'm taking on an opportunity for a local business to develop a small, simple timesheet manager (they still record time by hand) and am currently in the planning phases. It will include basic ...
2
votes
2answers
91 views
Should a RESTful API provide data for an entire form?
Let's say I have a JavaScript web application which entirely uses a RESTful API for data.
Let's say this application has a data form, and let's say I'm editing a record at /product/12345. When ...
4
votes
1answer
266 views
Is there an effective way for creating complex forms?
While creating a 'search' form I've been faced to an overwhelming complexity and I was wondering whether there is a well-known way to accomplish such task.
Fields of the form in question can be seen ...
2
votes
3answers
283 views
Dynamic Forms: Pattern or AntiPattern?
I'm sure you've seen it. The database has a bunch of tables called Forms, Controls,FormsControls, ControlSets, Actions and the program that queries these tables has a dynamically generated user ...
3
votes
4answers
260 views
Making simple forms in web applications [closed]
How do you work with forms in your web applications?
I am not talking about RESTful applications, I don't want to build heavy front-end using frameworks like Backbone.
For example, I need to add ...
2
votes
3answers
332 views
Validating allowed characters or validating disallowed characters
I've always validated my user input based on a list of valid/allowed characters, rather than a list of invalid/disallowed characters (or simply no validation). It's just a habit I picked up, probably ...
43
votes
19answers
3k views
Form screenshot for legal proof of clicking one of the checkboxes?
We got a request from one of our customers, and since I've never encountered such a request before, I don't even know where to start looking.
Our customer is a network of colleges, and we're building ...
-2
votes
2answers
448 views
why use a form object when you can get needed data from view object's html?
I am working with server side code.
I have a request object that handles request data validation and filtering.
I have a view object that uses template files to generate html for output. the ...
0
votes
1answer
78 views
What is the best way to provide downloadable / uploadable forms?
I need to allow some of my users to design and upload blank forms, to be downloaded, completed, and uploaded by other users. It would be nice if I could verify the completeness of the uploaded forms, ...
0
votes
2answers
136 views
Looking for the fastest way to collect form data
I am developing an application in Flex. There are 20+ 'pages', each with its own form. I need to collect all the entered data and pass it to an API method. What I am wondering is when I should begin ...
6
votes
5answers
772 views
Why do Windows Forms / Swing frameworks favour inheritance instead of Composition?
Today a professor of mine commented that he found it odd that while SWT's philosophy is one of making your own controls by composition, Swing seems to favour inheritance.
I have almost no contact ...
1
vote
2answers
1k views
Should I use a Class or Dictionary to Store Form Values
I am working on a C# .NET Application, where I have a Form with lots of controls. I need to perform computations depending on the values of the controls. Therefore, I need to pass the Form values to a ...