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: *

  • Users: manishblr1
  • Order by date
  1. manishblr1

    Calculating text formula

    Thanks a ton. It worked. sorry for not explaining the scenario properly.But the way you understood is right and that is what i was trying to explain. Thanks again.
  2. manishblr1

    Calculating text formula

    Hi , I have been stuck up with the following issues. Scenario: I have a formula box where user enters the formula for example : (plant1*2+plant2*3) and then user clicks on validate button. I am replacing plant1/plant2 variables by 1 and trying to get the output as 5. But its giving NaN. I...
  3. manishblr1

    Calendar with future dates disabled

    Hi, i am looking for a calendar where the future dates are disabled. The requirement is there is a calendar image in the page where on click of which calendar comes up , i am able to get this but i would like to know how to disable the future dates. Thanks in advance.
  4. manishblr1

    disable the page while popup is active

    Hi , I have been able to almost finish the project but except this. How to disable the page when there is pop up called . and enable when pop up is closed. Thanks in advance.
  5. manishblr1

    Dynamic Dropdown in dynamic table.

    Hi Vacunita, Thanks for that.It solved my problem.You simply rock. God bless you. Take care Regards,
  6. manishblr1

    Dynamic Dropdown in dynamic table.

    Hi Vacunita , Thanks for the reply. It solved 90% of my problem except one . When ever i select a value from second column drop down(measure class) only last cell of measure(third column drop down) is being populated. For example if i select 3 from initial drop down and select value from second...
  7. manishblr1

    Dynamic Dropdown in dynamic table.

    I have a screen where users select the number of periods from a dropdown list. Based on the number selected in the dropdown, a dynamic table is created with rows equal to the number selected from the dropdown. On selecting a number from the dropdown a function is called which creates a dynamic...
  8. manishblr1

    incorrect calculation of time when specific time is given.

    Hi , This screen is to add Time Period - Shift. To add a Time Period, the user should select an existing Production Calendar. Upon selecting a Production Calendar, a drop down will be displayed with all the available Time Period. When ‘Shift’ is selected from ‘Time Period’ drop down and clicked...
  9. manishblr1

    Check box Alignment in Dyanmic table

    when i open this page, if there is any data(from database) then that data will be displayed here.(the data can be more than 4 rows). by defalut all the fields which come from database will be disabled. By clicking (checkbox/radiobutton :first column) that particular row should be enabled. I...
  10. manishblr1

    Check box Alignment in Dyanmic table

    when i open this page, if there is any data then that data will be displayed here.(the data can be more than 4 rows). by defalut all the fields which come from database will be disabled. by clicking (checkbox/radiobutton :first column) that particular row should be enabled. I also need to alert...
  11. manishblr1

    Check box Alignment in Dyanmic table

    Thanks for replying. Sorry for not being clear. scenario : i have a edit button . when i click on the edit button it checks which checkbox(first column) is clicked . if for example first row (first column) is clicked then that entire row is enabled for editing else an alert msg showing to...
  12. manishblr1

    Check box Alignment in Dyanmic table

    Thanks for replying. Sorry for not being clear. scenario : i have a edit button . when i click on the edit button it checks which checkbox(first column) is clicked . if for example first row (first column) is clicked then that entire row is enabled for editing else an alert msg showing to...
  13. manishblr1

    Check box Alignment in Dyanmic table

    Thanks feherke. That was really helpful. i have a query. I need to enable/disable a row on click of a checkbox (before ID). and also i need to copy entire table in an array on click of a copy button and pass it to other page is this possible ? If you can give me the links where i can find...
  14. manishblr1

    Check box Alignment in Dyanmic table

    Thanks feherke. That worked. I have one more query. When i click on add button for examples 4 times and if i delete some thing in between and then again click add .. i am not getting the sequence (id column) . How can i achieve it . Thanks in advance.
  15. manishblr1

    Check box Alignment in Dyanmic table

    Hi here goes my code <html> <h2>Add Row in JavaScript</h2> <script> function addRow(tableID) { var tbl = document.getElementById(tableID); var lastRow = tbl.rows.length; // if there's no header row in the table, then iteration = lastRow + 1 var iteration = lastRow-1; var row =...
  16. manishblr1

    Dyanmic Table Creation

    validation : Start date/end date field will have time with am/pm when shift is selected. Start date/end date field will have date with dd/mm/yyyy when day/week/month/year is selected. Thanks for replying.
  17. manishblr1

    Dyanmic Table Creation

    Hi Feherke, I need to validate the start date / end date fields on click of submit button. Here is my complete code. //code start <HTML> <HEAD> <link href="C:/Documents and Settings/admin/Desktop/Content.css" rel="stylesheet" type="text/css"> <script language="javascript"...
  18. manishblr1

    Dyanmic Table Creation

    I am sorry for not posting my code.. Here is my code. ////code starts function createTable(rowCount, colCount, srcHolder) { document.getElementById('dynamic_tp_table_heading').style.display = "block"; document.getElementById('dynamic_tp_table').style.display = "block"...
  19. manishblr1

    Hide/ Unhide Frames

    Hi All, I have a file which contains mixed frames. JavaScript / DHTML / AJAX Syntax (Toggle Plain Text) <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html> <head> <title>Configuration Screens</title> </head> <frameset rows="71,*"...
  20. manishblr1

    Dyanmic Table Creation

    Hi All, My requirements are 1. Screen where user enters the no of rows(no of columns:4 Sl no , Start Date(SD), End Date(ED), Label) 2. user clicks on button to create the table (dynamic) 4. Si No should be done through function . 5. SD/ED/Label should be free text. 6. Validate StartDate/...

Part and Inventory Search

Back
Top