With your extreme release speed, i have no reasons to worry

cgdevtools wrote:Hi,
Did you updated?
Best Regards.
var
i, img_index: integer;
img_id: string;
fbimg: TIWCGJQFancyBoxImageGalleryItem;
begin
img_index := -1;
img_id := TIWCGJQButton(TIWCGJQButtonOptions(Sender).Button).ExtraTagParams.Values['ID'];
InitData.wFancyBox.ImageGallery.Clear;
for i := 0 to Attachments.Count - 1 do
if (Attachments.Items[i].viewable) and (not Attachments.Items[i].marked_as_deleted) then
begin
fbimg := InitData.wFancyBox.ImageGallery.Add;
fbimg.Picture.url := Attachments.Items[i].relative_url;
fbimg.Alt := Attachments.Items[i].name;
if Attachments.Items[i].id = img_id then
img_index := InitData.wFancyBox.ImageGallery.Count - 1;
end;
InitData.wFancyBox.AjaxReRender(); // not helps, gallery works after page refresh
InitData.wFancyBox.JQFancyBoxOptions.Show(img_index);
What version of IW do you have?