vote up 2 vote down star

Hi All,

I have a checkbox control in the gridview with Autopost back = true

Code: ' runat="server" AutoPostBack="True" OnCheckedChanged="chkJobID_CheckedChanged" />

Now, when i check the checkbox the 'OnCheckedChanged' fires and add the jobID to the array, but when i uncheck the checkbox then it doesnt fires................

Can anybody help me out for this..................

Khushi

flag

0% accept rate

2 Answers

vote up 0 vote down

maybe a signal like stateChanged() will catch it?

link|flag
Can you please explain through codes ? – Khushi May 28 at 7:58
no I can't, I don't know what toolkit/lib/fw you're using. It was just a naiv thought: OnCheckedChanged="chkJobID_CheckedChanged" this is called when it is checked. not when unchecked. so maybe there is listener which is called on general changes. As in Qt, qcheckbox::onStateChanged(). Sorry for my stupid comment. – felix May 28 at 8:31
vote up 0 vote down

Hi Khushi--

Could you replace the code in your chkJobID_CheckedChanged event handler with this:

Response.Write(DateTime.Now.ToLongTimeString());

Then view the page and try checking and unchecking the checkbox. This will tell us if the event handler is firing for both check and uncheck actions, which should help us narrow down the problem.

--Jeremy

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.