ASP.NET Listbox Client Side changes not reflected on page

C

chandru

Hi,
I am adding some values to the ASP.NET ListControl on the client side
javascript
and this is not reflecting on the server side.
I thought the input and select fields should reflect the changes on
the server side.
I know that the post backs doesn't post all of the HTML only the
changes etc,etc.

I am adding so many values to the list on the client side so I can't
have an hidden input field.
That will make things complex.

Any ideas?
Below is the javascript code,

function OnClientClick_btnAdd()
{
var listReomveFrom = document.getElementById("ctl00$MainContent
$ListBoxAvailable");
var listAddTo= document.getElementById("ctl00$MainContent
$ListBoxSelected");

var iCurrentIndex = listReomveFrom.selectedIndex;
var iNewOptionIndex = listAddTo.length;


if (iCurrentIndex != -1)
{
listAddTo.options[iNewOptionIndex] = new Option();
listAddTo.options[iNewOptionIndex].text =
listReomveFrom.options[iCurrentIndex].text;
listAddTo.options[iNewOptionIndex].value =
listReomveFrom.options[iCurrentIndex].value;
listAddTo.options[iNewOptionIndex].selected =
listReomveFrom.options[iCurrentIndex].selected;
listReomveFrom.options[iCurrentIndex --] = null;
}
}

Thanks,
Chandrasekar Balasubramaniam
 
B

bruce barker

the browser only posts back the selected value(s) of a <select>, not the
list. you will need to pass the changes back with some other method (say
a hidden field).

-- bruce (sqlwork.com)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top