I have a drop down box form field (with values level1,level2) in SharePoint list. How can I lock the drop down box selection in the edit form.aspx whenever the condition is level2?
|
Out of the box, there is no way to lock a drop-down. The only solution I see is to attach a custom script to the page that will delete the level1 option as soon as level2 is selected. Then there's no way back. Note that it only locks the edit form (your question). Users would still be able to use a datasheet view, Web services or other to force the value to level1. |
|||
|
|
|
You can do something similar to what you want, if you use an InfoPath form as new/edit page for your list. Here is an example on how to make a custom InfoPath new/edit form for your list. See here how to customize list forms with InfoPath Havent looked into locking dropdowns in InfoPath, but this should get you going so you can experiment with that part of it. Another option is to create a custom ASP.NET new/edit form |
|||
|
|
Is this a cascading thing that SPServices can help with? The SPCascadeDropdowns function helps you tie two columns together, making the available options in the second depend on the choice for the first. If this isn't the case, then some custom script to disable to select is another possibility. |
|||
|
|
|
as suggested by Mark, i used custom script to disable the dropdown based on condition
the for loop takes time to execute .. any suggestion on how to replace this javascript by jquery? |
|||||||
|