I have the following problem.I created a new jquery script (jquery.wim.dragtable.js).
This script allows for dragndrop columns and rows..
Now this script generates 2 hidden input boxes.
f.i.
if ($("#" + dragObject + "_SortRow").length == 0)
$("body").append("<input id='" + dragObject + "_SortRow' type='hidden' />");
and
if ($("#" + dragObject + "_SortCol").length == 0)
$("#form1").append("<input id='" + dragObject + "_SortCol' type='hidden' />");
Notice the last one is append to the form on the page.
My question is: How can i retrieve the content of the input (id="wim_drag_col_object_SortCol");
When i use request.Form i only get the "hard-coded" elements from my page. (Viewstate, EventValidation, and Button1).
But the dynamically added wim_drag_col_object_SortCol can't be found.
/*!
* jQuery wim drag 1.0.0
*
* Copyright 2010, WIM4YOU (http://www.wim4you.nl)
* Dual licensed under the MIT or GP
View Complete Post