Forms Data Controls :: Popup Window Based On Checkbox In A Grid?

Oct 5, 2010

I have been wrestling with this idea for a couple of weeks and have finally broke down and am asking for everyones experience.Here is what I am trying to do:I have a gridview that has a checkbox field in it. I need to loop through the grid and check to see if the user has placed a check in it and then open a new webpage in a window for each record that is checked.

[Code]....

While this does work I am not sure this is the best way to handle it. I have tried to do a ScriptManager.RegisterStartupScript but it seems to only popup the first record and not continue to loop.BTW - I am doing all this is VB

View 1 Replies


Similar Messages:

Web Forms :: Passing Values From One Page To Popup Window Based On Checkbox Selection

Dec 13, 2012

In VB.net .... I have GridView from which i select list of rows using check box and upon clicking the button i need to display those selected rows in a gridView of another page. and that  page is a popup window?

View 1 Replies

Web Forms :: Check Checkbox To Remember Password In Window Based Application

Apr 27, 2016

Can We check te checkbox to remember the password in window based application using c#.

If Yes, how to check the checkbox to remember password in login Form.?

View 1 Replies

Web Forms :: Dynamically Filter The Parameter's Values On A Popup Window Based On Other Parameters Selection

Apr 30, 2010

I have a pop up window which contains a listbox. The items on the listbox should be filtered when it is opened based on the other parameters on the parent page. I am using session to pass the values from a page to another.

View 4 Replies

Data Controls :: Select One Checkbox From Multiple Checkbox Columns Of Grid (mutually Exclusive)

Aug 12, 2013

I have 5 checkbox columns in my grid .. like

Id      Chk1   Chk2    Chk3   Chk4  Chk5

I want select only one checkbox among 5 checkboxes if user selects one checkbox another which are checked are need to uncheck. How can i do this in client side .....

View 1 Replies

Forms Data Controls :: Open Image In A Popup Window?

Jan 18, 2011

I have a repeater which lists (names of images) , i want when i click on an image it opens in a pop-up window.

how can i do that ?

View 3 Replies

Forms Data Controls :: Can A Popup Or A Window Containing The Data Inside TextBox

Sep 13, 2010

I have a DataGrid which has a Multiline TextBox. I only display 3 rows and the user can scroll down to see the rest of the data.

However I'd to open up a window, baloon, whatever every time the user hover the mouse over the TextBox area.

And when he moves the mouse out, the window should close automatically.

View 5 Replies

Forms Data Controls :: How To Generate A Pop-up Window Inside A Grid-view

Mar 21, 2011

the design requirement is like,when we click on a item in grid view a pop up window has to be generated where a particular user can enter details and save them and then again minimise the window..the changes entered in the window has to be saved in db..is there any possiilty to do this kind in grid view control ??

View 3 Replies

Forms Data Controls :: Gridview - Display Popup Window Using Hyperlink Field?

Feb 8, 2011

I have a requrement to display a popup window when i ckick on the gridview hyperlink field.

View 6 Replies

Forms Data Controls :: Open Popup Window In Datalist Hyperlink With Databinding?

Feb 16, 2010

How to open popup window in datalist hyperlink with databinding

my code is:

[Code]....

View 2 Replies

Forms Data Controls :: Add Checkbox In A Grid View At The Bottom?

Nov 3, 2010

What I have a grid view like this in my ASP. net web page I want to add a rown in the last having checkboxes equal to no of columns in this gridview and have a add link at the start of the row

<asp:GridView ID="GridView1" Font-Size="8pt" runat="server" CellPadding="4" ForeColor="#333333"
AllowSorting="true" AllowPaging="true"
PageSize="50" EmptyDataText="No Data Found." AutoGenerateDeleteButton="True" AutoGenerateEditButton="True"> [code].....

View 3 Replies

Javascript - Passing Data Between A Parent Window And A Child Popup Window With JQuery

Dec 3, 2010

I have the following HTML

<tr>
<td class="label" valign="top">
Affiliate Party
</td>
<td class="field">
<input type="hidden" name="ctl00$MainContent$ExternalAccountAttributes$AffiliatePartyId" id="AffiliatePartyId" />
<input name="ctl00$MainContent$ExternalAccountAttributes$AffiliatePartyName" type="text" id="AffiliatePartyName" class="PartyLookup" />
</td>
</tr>

and the following Javascript/jQuery

$(".PartyLookup").after("<img src='Images/book_open.png' class='PartyLookupToggle' style='padding-left:4px;' />");
$(".PartyLookupToggle").click(function () {
window.open("PartySearch.aspx", "PartySearch", "width=400,height=50");
return false;
});

I need to be able to flag ANY PartyId input field with class="PartyLookup" so that it will modify the DOM and include the image next to the input field. The popup window returns data to populate both the hidden and text fields, but since the click() is generic I need to pass it the ID of the input field.

View 2 Replies

Forms Data Controls :: Grid View - New Pop Up Window Is Open And Shows Details?

Mar 18, 2010

iam using grid view.i am using in it one templete filed like image button.i want when i click on image.the id which i want to pass passes and new pop up window is open and shows details....can i use Row databound or RowCreated which is better to setting onclick event on each image...if i would success on this i get associate id,s of each row.

View 2 Replies

Forms Data Controls :: Add A Checkbox Header In Grid With Autogeneratecolumns=true

Oct 5, 2010

I try to add a header checkbox to selecte all in the column, I know that with templeate field you can but the problem is that i don't know the number of columns. How i add a checkbox to the header in every column?

View 3 Replies

Forms Data Controls :: Select All / UnSelect All Checkbox In Grid View?

Dec 8, 2010

I am using Asp.net grid view control and Add Check box as template column All, Create,Edit and Delete, Page name(Data bound column) for given page access permission to the user. User can Create, Edit and Delete the page content based on permission.

If I Select/UnSelect All check box Select/UnSelect the other check boxes Create,Edit and Delete on selected row in the grid.

View 3 Replies

Forms Data Controls :: Edit Grid Data In A Modal Popup

Feb 21, 2010

I have a GridView, and I want to enhance the edit mode, so, I was thinking in modal popup to edit the data when the user clicks the edit button. I used a templated filed with an image to edit data. In the GridView_RowDataBound code, I add an attribute to the image on each row bound...

Dim EditarActividad As ImageButton = e.Row.FindControl("EditarActividad")
EditarActividad.Attributes.Add("onclick", "launchModal")

I have a button TEST the pop-up modal frame, and it works fine:

<asp:Button ID="ModalPopupButton" runat="server" Text="Modal Popup" />
<asp:ModalPopupExtender ID="ModalPopupExtender" runat="server"
TargetControlID ="ModalPopupButton"
PopupControlID ="ModalPanel"
OkControlID ="OkButton"
DropShadow="true"
BackgroundCssClass="modalBackground"
RepositionMode="RepositionOnWindowResizeAndScroll" />

Also, I added the Javascritp "launchModal", on the client side to simulate the ModalPopupButton_Click...

<script type="text/javascript">
var launch = false;
function launchModal() {
launch = true;
}
function pageLoad() {
if (launch) {
var button = $find("ModalPopupButton");
button.click();
}
}
</script>

Why when I click the image on the GridView shows the modal popup frame on its original position (below the grid), and not floating on the center of the screen? (If I click the Button, it works fine).

View 3 Replies

Forms Data Controls :: Pass Value From Child (popup Window) To Textbox Within Listview In Parent Page

May 25, 2010

I have a listview that has n rows.

Within the EditItemTemplate and InsertItemTemplate I have a cell that has a textbox and a button.

When the button is clicked a popup window is shown, where the user can upload a picture. The name of the uploaded picture is retrieved.

Now I want to send that picture name back to the textbox within the listviews EditItemTemplate or/and InsertItemTemplate (that is ofcourse one at a time depending on what the user is doing, inserting or editing a row).

The code I have written so far looks like this. The below code has been abbreviated

[Code]....

The code behind looks like this (also abbreviated). Actually I don't think the code behind is needed, since its mainly javascript from the popup window (child page), but nevertheless here it goes.

[Code]....

And at last the child page / popup page.

Well there is not anything to see here, cause I'm using the Telerik RAD upload control, which is doing everything for me.

However the line below may be of interest. Here I'm taking the name of the uploaded file (picture) and printing it to a label.

[URL]

View 2 Replies

Forms Data Controls :: How To Fill Textbox Templete In Grid View With Values From Pop Up Window

May 5, 2010

see a lot about gridview in pop up but in my case i have a grid view in main page with a textbox in its templete and a button when ever button for every row clicked the pop up window open user enter a value and press a button in pop up i want the text user enter in textbox in pop up to place in text box in the row that user click the button

View 2 Replies

Forms Data Controls :: Send Multiple Mail Using Checkbox In Grid View?

Jun 14, 2010

I want to send mail to those user which is selected using checkbox which is in grid view, and also want select all/ deselect all option .

[URL]

i go through this but this is not send mail to user more than one.

View 2 Replies

Telerik Grid With Checkbox - Checkbox Not Showing Up When The Grid Initially Paints?

Nov 22, 2010

I have a telerik grid with a checkbox. I am using a client template. There is a .DataBinding Ajax call attached. When the grid initially comes up, instead of a checkbox, it has the id value as text.If I hit refresh, the ajax call gets executed and when it comes back the checkbox appears. Is there any way to force the ajax call to happen when the grid initially paints so that I have a checkbox and not text..

View 1 Replies

Forms Data Controls :: Inserting Records Based On Checkbox Selection In Gridview

Sep 10, 2010

Using checkboxes, can the row of record(s) be inserted into a database? I am populating a Gridview. Done. A checkbox field has been added, when the user selects one or more rows, a submit button (which is not working) needs to inserting those records into a table. The insert statment will work outside of the page but is not working using the scenario I jut described. Is this task as I have outlined doable?

View 13 Replies

Forms Data Controls :: Make Checking Checkbox On Template Field On Grid View?

Dec 22, 2010

have situation here. On checking checked checkbox inside template field on grid view. This my codethis code suppose to be update into mysql when checkbox of each row being checked. Mean only update database which row has being checked, other wise the data inside database not being updated.What happen now once button being click, code above will be executed, but all the data being update not considering the checked checkbox only.

[Code]....

[Code]....

View 6 Replies

Forms Data Controls :: Want To Uncheck Only Single Checkbox When I Click On Button Which Is Ouside Of The Grid?

Nov 15, 2010

i have two checkboxes in two templete fileds in a gridview .but i want to uncheck only single checkbox when i click on button which is ouside of the grid,

View 2 Replies

Forms Data Controls :: Select A Grid Row Based On Query String Data?

Jan 13, 2010

I need to know how can I select a gridview row based on a query string data. In my case, the query string will contain the id that exist in the Table related to that grid. Is there a way to do this from the code behind? In other words, if I click a link with that specific query string, can I open the page and tell my grid to select a specific row based on the table row id?

View 1 Replies

Forms Data Controls :: Adding Rows To Grid View Based On Characters In Data?

Dec 20, 2010

I have a piece of data that has a refererence number and then account name that looks like this in the database:

111111,Member Account~222222,Trial Account

I have the data spitting out just like that in a grid view, but I am wondering if there is some C# I can put in to where it adds a column when there is a comma and another column when there is a ~ in the data?

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved