Hi,
We are trying to set a custom EditItemTemplate in batch editing. We have a div and we want to put it above the edited cell. This code is working perfect in IE but it doesn't work fine in Chrome:
function
batchEditOpened(sender, args) {
var
cell = args.get_cell();
$cell = $(cell);
var
$batchContainer = $cell.find(
".rgBatchContainer"
);
$batchContainer.css(
"position"
,
"absolute"
);
$batchContainer.offset($cell.offset());
}
Can you help us?
Thanks in advance,
Alfonso