I have been searching the net for info with no success.
I want to place a Sql nupicker drop down or similar object on a website page. It is going to select a member from a particular member group.
I have the script working and can place it in the back office and works fine but I cant get it on my web page.
Once I get there It needs to fill out a series of edit boxes with a preaction function of checking the existing details havent been modified and bring up a error option screen to save or continue.
nuPicker on web page
I have been searching the net for info with no success.
I want to place a Sql nupicker drop down or similar object on a website page. It is going to select a member from a particular member group.
I have the script working and can place it in the back office and works fine but I cant get it on my web page.
Once I get there It needs to fill out a series of edit boxes with a preaction function of checking the existing details havent been modified and bring up a error option screen to save or continue.
I need step by step instructions on doing this.
Worked it out.
Don't use nuPicker
public IEnumerable
public List
for each item in Members) { lst.Add(new SelectListItem { Value = item.Label, Text = item.Label }); } }
is working on a reply...