passing getting checked box data from the dialog

here’s the situation, I have a gridview with rows that has checkbox in each.

then I created a hidden div form at the bottom, that contains another form that has

rows with checkbox in it, I made it a dialog box…now when I select the checkboxes from the gridview,

I was able to pass the data to the dialog box, but when i submit the dialog box,

i wasn’t able to get the data of the checked boxes upon submission of the dialog box

what’s the best approach to this? …just a wild point of view based from your experiences

You cannot have nested forms (well, actually you can, but this is buggy), so the only way to interchange data between them is javascript.

As for me, I prefer to keep forms in sync using knockout.js.

any other bright ideas how to solve this ?

Hi

Maybe you should explain a little more what you intend to do, including your running code.

As far as I know, when you want to pass data from the dialog back to the main view, you have to deal with it in the dialog submit button.

Cheers