Jump to content

ieuan11

Members
  • Posts

    25
  • Joined

  • Last visited

ieuan11's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Iv'e now decided to change the way in which the report is going to be generated. At the end of the online form i want to the user to be able to submit the form they have filled in and from this a pdf is generated. Any ideas on how to go about achiving this? Thanks.
  2. Solved. Thanks. Is there anyway i can contact you if i need any help?
  3. Hi, Iv'e spent all day figuring out a way of doing this and came to the conclusion of hide/show, so far its going well, iv'e just come to an issue where when an option from a dropdown is clicked only one div apperas, however i need two divs to appear, please could you take a look and let me know: JQuery: <script type="text/javascript"> $(document).ready(function(){ $('.report-type-selection').hide();$('#dropDown').change(function(){$(this).find("option").each(function(){$('#' + this.value).hide();}); $('#' + this.value).show();}); });</script> HTML: <select id="dropDown"> <option>Choose</option> <option value="Investments">Investment Advice</option> <option value="Pensions">Protection Advice</option> <option value="Protection">Pension Advice</option> <option value="Mortgages">Mortgage Advice</option></select> AND: <div id="Investments" class="report-type-selection">Investments Div</div><div id="Pensions" class="report-type-selection">Pensions Div</div><div id="Protection" class="report-type-selection">Protection Div</div><div id="Mortgages" class="report-type-selection">Mortgages Div</div> When i create two of the same divs which appear only one ever will. Please Help. Thanks.
  4. I'm doing a project for a client and the Financial Adviser's in the company needed to be able to visit a page and create a report on the fly: Visit a webpage and be able to create a report based on a question form, This is an example of the report. Client's Name: (Name is entered) This name will be replicated throughought the report as well as other information (this is just a quick exmaple). First Question: "what are you serving the client?" Answers: "Pension", "Investment", "Mortgage", "Protection" Based on the answer a set of questions will appear below relevent to each answer. For example if the Advisor choose Investment then the following question would be (as an example) "What is the clients attitude toward risk managment?" Answers "Incliened to take high risks", "Inclined to take some risks", "Not very inclined to take risks" Based on this a paragraph related to the question would appear in the report which is being created below. Then another question (also which appeared based on the answer Investment) would of appeared This question would also have the same functionality as the one above, Essentially what i am trying to achive is create a report which is created on the fly based on a form and a pool of questions (prefably not stored ina database to keep it simple) related to each answer, then copy the report from the website to a word document. As you can see i have tried to be as descriptive as possible with what i am trying to achive, I have little knowledge of Javascript/Jquery, I would be greatful if you could point me in the right direction by telling me what i need to do or any good tutorials. What would be amazing is if someone kind person could create a simple framework for this page in which i can develop further. Thanks Ieuan.
  5. This has helped so much. Thank you.
  6. Okay I'm biulding a website for a client which is required to do the following: Financial Advisor's from the company i am working for needs to be able to login to the website (by creating a account using a code unique to the company). Then be able to add client infomation to their own client list on a database (seperate from other advisors). From there the Advisors need to be able to go back and see a simplified list of their clients (i.e. just the clients name for example with a search option to find clients easily). Then when the click on the client's name they will be taken to a different page which displays the client's information in full, with the ability to edit this information. I understand the difficulty of this task and my skills are more directed towards the design aspect of websites, as you can probably make out I have little experince with databases and PHP, however I have taught myself other computer languages and not worried about the need to learn. All i'm asking for is for someone to outline what needs to be done and point me in the right direction as to where I can aquire the knowledge needed to complete this project. Thanks a million Ieuan.
×
×
  • Create New...