Showing posts with label cell. Show all posts
Showing posts with label cell. Show all posts

Monday, March 26, 2012

Programmically create ModalPopup

I have load data and show it in DataGridView control.
What can I do to archieve the following criteria:

When user click on a specific cell - it will bring up detail records in modalPopup extender control?

See forum posthttp://forums.asp.net/thread/1613190.aspx. It talks about PopupControl but you could use the same principle here.

Wednesday, March 21, 2012

Question using the CollapsiblePanelExtender

Hi,

I am using a CollapsiblePanelExtender within a GridView cell and it works ok.

WhatI would like to happen though is that when the panel is expanded itdoes so over the top of its container control (hosting cell) so that itdoes not expand the entire GridView row to the same height as theCollapsiblePanelExtender - I hope that makes sense. Is this possible oris there another/better way to achieve this?

Many thanks in advance.

Steve


Hi SteveJR,

Based on your description, I think you should not use CollapsiblePanelExtender . HoverMenuExtender , PopupControlExtender and DropDownExtender are the better choices. They also can work inside the GridView. You can find the pretty samples inside the AJAX Control Toolkit's source code.

Best regards,

Jonathan