Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. berkshirea

    Radio Button Clicked, Another Radio Becomes Mandatory

    Wow! Thanks very much Feherke! That's exactly what I needed. Have a very good day!
  2. berkshirea

    Radio Button Clicked, Another Radio Becomes Mandatory

    Hi guys, I've got the code below. The first line 'Yes' or 'No' is mandatory. When 'Yes' is clicked, the 2nd line (No, Probably or Yes) becomes mandatory. If 'No' is clicked on the first line, the 2nd line is not mandatory. I've been trying and I can't get it to work as I want it to. Any help...
  3. berkshirea

    Change the Default Pop Up Message

    Hi feherke, that's AWESOME! it worked. Thank you to all of you guys. Have a great day!
  4. berkshirea

    Change the Default Pop Up Message

    Hi ggriffit, feherke & strongm, I have tried the above on Brave, Firefox, Edge and Chrome but it doesn't seem to work. The pop-up message has changed but when I clicked a box (or even all of the boxes) the form won't submit and that same pop-up message appears.
  5. berkshirea

    Change the Default Pop Up Message

    any ideas guys?
  6. berkshirea

    Change the Default Pop Up Message

    Hi guys, I have the code below. It's working as I want it to be aside from the default popup message. Is it possible to change the message from "Please check this box if you want to proceed" to "Please select at least one box" Thanks for any help. <html><head> <style>...
  7. berkshirea

    Dropdown, Select, Required

    hi ggriffit, i've adopted your code and it's now working as i wanted it. thanks very much for your help mate! have a good day! <html> <head> <script type="text/javascript"> function CheckColors(val){ if(val=="web") { element.style.display = "block" element.required = true; }...
  8. berkshirea

    Dropdown, Select, Required

    Hi guys, I've got this code below working (somehow) except that the textfield is always showing. I want the textfield to only show when 'web' is selected. Integrating with the original code above (element.style.display='block' & element.style.display='none') doesn't seem to work. Can anybody...
  9. berkshirea

    Dropdown, Select, Required

    anybody got other ideas guys?
  10. berkshirea

    Dropdown, Select, Required

    Hi Ggriffit, I've tried putting onSubmit but doesn't seem to work. I am just doing it wrong I think. Can you show me how to do it in the context of the above code please? Thanks
  11. berkshirea

    Dropdown, Select, Required

    Hi Ggriffit, I've tried to call the 'submit' in the CheckColors function. Something is not right with what I've done. When I selected anything on the dropdown, it automatically submits without me clicking the Submit button. I still want users to be able to click the Submit button and also fill...
  12. berkshirea

    Dropdown, Select, Required

    Hi guys, I have this code. It's a required dropdown. When a user selects 'Red' or 'Blue', the form should submit. When the user selects 'web' a textfield appears and that textfield is required to be filled in. My problem is, when the user selects 'Red' or 'Blue', the form does not submit. Can...
  13. berkshirea

    Getting a value using XSL

    Thanks Tom. That did it!
  14. berkshirea

    Getting a value using XSL

    Hi guys, can you give me an idea how to get the value of 'OrganisationId' using XSL? I've been trying but can't get my head round it. Thanks for your help. <?xml version="1.0" encoding="utf-8" ?> <Organisation xmlns:i="http://www.w3.org/2001/XMLSchema-instance"...
  15. berkshirea

    Something like this?

    Hi guys, I apologize if this is not the right place for my question but I just want to ask for your advice how to tackle developing this kind of application or better yet if you know of a ready-made similar script that I could just modify? http://www.topcashback.co.uk/ http://www.quidco.com/...
  16. berkshirea

    Fullsite redirect from mobile version

    Yes, I tried to write on the page the value of the querystring and it says true. I don't know why it's not redirecting to the full site.
  17. berkshirea

    Fullsite redirect from mobile version

    Im sorry... I forgot to include the id. <script runat="server" language="VB"> Public Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) If Request.QueryString("fullversion") = "true" Then Response.Redirect("full_version.aspx?id="&Request.QueryString("id")) else if...
  18. berkshirea

    Fullsite redirect from mobile version

    Hi jbenson001, Below is the code I'm working on. When I added the code in red color, it still redirects to the mobile version. code on full_version.aspx <script runat="server" language="VB"> Public Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) If...
  19. berkshirea

    Fullsite redirect from mobile version

    Hi Folks, I have 2 aspx pages in VB. 1st page is the full version, the 2nd page is the mobile devices version...both are working fine. The only problem I've got is, I'd like to have a link to the full website from the mobile version, but then since I've got a redirect on the full version, it...
  20. berkshirea

    Turning off tabs view

    so if what you want is a csv output from the page, that is also generatable via javascript from the page. " hi jpadie, how to i get the csv output from the page?

Part and Inventory Search

Back
Top