Filter/Update Multiple Records Programming Web Development by enim213 … couldn't start any.. 1.) filter multiple records selected through chechbox.. if there were conflicts>>catch those conflict values… Re: Filter/Update Multiple Records Programming Web Development by digital-ether … couldn't start any.. 1.) filter multiple records selected through chechbox.. if there were conflicts>>catch those conflict values… Logic for checklist box Please Programming Software Development by hirenpatel53 … "Clinical access" i want to check any of chechbox in my check list box accept Admin then clinical access… Adding and Removing Data (into/from) Table by Checkbox values Programming Web Development by Behseini … and value(two columns) into the table for each checked chechbox or remove it (Something like following image:) [IMG]http://geoca… Re: get element ID using value Programming Web Development by ardeezstyle Hi ! Since the checkboxes are generated dynamically, you can have the number of new chechboxes generate each time. Based on that you can easily have the chechbox id. I mean for instance the id of the checkbox is chk1, then it is obvious that chk will be common for all the ids and by incrementing it will become easy. Re: Enable text box on checkbox checked Programming Software Development by DIPY … was trying to set the check state value of the chechbox to checked. I dont know Why i am getting an… Re: how to save two or images as a file Programming Web Development by sonia_demo actually I'm selecting images through chechbox [QUOTE=rajarajan07;1205833]So you are going to make the … Re: Exeption: Object reference not set to an instance of an object. Programming Web Development by Vishwasdeep What i am trying to do is,i created a grid view with "id","name" as field and i used checkbox as template field in grid view. Now when i check a chechbox,that checked row should comes to a new grid view on button click. Thats what i am trying to do in my code. Re: CFselect Programming Web Development by yankeefan24 Just sent you the source code on a PM. Attached is a print screen of the check boxes. Number 1 and 2 are the User role on the DB 1 being nurse and 2 being the physician the 6 will be the AppId, AppId each app is represented by a chechbox in the form. Re: Graphic image to discussion issues. Testing. Community Center Meta DaniWeb by ecommerce_1 It was simple Attach the image you see it update and an icon wiyh a chechbox click post reply and only the textmade it since the image dimension limlit change is in i truly doubt that message would fire today and for years chechbox validations Programming Web Development by muralibobby2015 hello friends .. i want to do one task. i want some one elp. i am new to php. when ever i check the checkbox amount will add in 'total' textbox. i am displaying table below. [CODE] <form name="form" action="" method="post" > <table align="center"> <tr> <… Re: chechbox validations Programming Web Development by pritaeas Found this link, and made it into this: [url]http://expressionengine.com/forums/viewthread/128806/[/url] [code] <html> <head> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> <script type="text/javascript">… Re: chechbox validations Programming Web Development by muralibobby2015 how to call this function from form Re: chechbox validations Programming Web Development by pritaeas [QUOTE=muralikalpana;1038821]how to call this function from form[/QUOTE] Copy/paste this html into test.html, open it and see what happens when you click a checkbox... Re: chechbox validations Programming Web Development by muralibobby2015 thank you so.....much for your help........mr.pritaeas. i have no words to wish. thanks a lot. Re: chechbox validations Programming Web Development by muralibobby2015 in this we can not group check boxes. so how can we select onlyone from two check boxes in the case of 'OR' case. for example checkbox1 (or)checkbox2. in this case we have to select only one checkbox. if one checkbox checked automatically other will be in uncheck. Re: chechbox validations Programming Web Development by venkat0904 you are looking for a radio button not a check box. Only one radio button gets selected from a defined group. Just define each radio button in a specific group under the same "name" attribute. eg: option1 name="group1" option2 name="group1" option 3 name="group2" above example lets you choose only 1 out of … Re: chechbox validations Programming Web Development by muralibobby2015 [QUOTE=venkat0904;1038844]you are looking for a radio button not a check box. Only one radio button gets selected from a defined group. Just define each radio button in a specific group under the same "name" attribute. eg: option1 name="group1" option2 name="group1" option 3 name="group2" above example lets… Re: chechbox validations Programming Web Development by venkat0904 i think u didnt get me... checkboxes are meant for multiple selection... 1 checkbox is not supposed to be influenced by selection of other but radio buttons are meant to do so... like wen u need to select a gender u use a radio button coz u dont want both male n female to b selected.. [QUOTE=muralikalpana;1038915]k. for suppse we have two … Re: chechbox validations Programming Web Development by muralibobby2015 [QUOTE=venkat0904;1038922]i think u didnt get me... checkboxes are meant for multiple selection... 1 checkbox is not supposed to be influenced by selection of other but radio buttons are meant to do so... like wen u need to select a gender u use a radio button coz u dont want both male n female to b selected..[/QUOTE] k.......i know that point. … Re: chechbox validations Programming Web Development by venkat0904 okkk now i see what u r trying to do... u can do this easily through javascript... see this [CODE] function CountChecks() { // call this function on onClick event of checkboxes var maxchecked = 2; var count = 0; if(document.Form.check1.checked == true) { count++; } if(document.Form.check2.checked == true) { count++; } if(document.Form.… Re: chechbox validations Programming Web Development by muralibobby2015 [QUOTE=pritaeas;1038811]Found this link, and made it into this: [url]http://expressionengine.com/forums/viewthread/128806/[/url] [code] <html> <head> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> <script type="text/… Re: chechbox validations Programming Web Development by mangel.murti [CODE] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>… Re: chechbox validations Programming Web Development by muralibobby2015 [QUOTE=rohitrohitrohit;1050951][CODE] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-… Re: chechbox validations Programming Web Development by mangel.murti [CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Total… Re: chechbox validations Programming Web Development by muralibobby2015 [QUOTE=rohitrohitrohit;1052122][CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1&… Re: chechbox validations Programming Web Development by muralibobby2015 [CODE]document.form.query.value="update p set "+tv+"total=\'"+t+'\'';[/CODE] but there is no need total. so i wrote like this .....this is not working. [CODE] document.form.query.value="update user_registration set "+tv+'\''+"where"; [/CODE] Re: chechbox validations Programming Web Development by mangel.murti [CODE]var i=1; var strLen = tv.length; tv = tv.slice(0,strLen-1); document.form.query.value="update p set "+tv+" where id=\'"+i+'\'';[/CODE] where i is your id chechbox on table Programming Web Development by dudzkie hello! im trying to study how checkbox work, this is i want to do i array a list of items (item name, price, etc) from my database i would like to put a checkbox beside each item, all the items that are checked will be posted on a next form can you please show me a brief example of it thanks! Re: chechbox on table Programming Web Development by lyrico [QUOTE=;][/QUOTE] Try this script: Imagine that your table has the following fields: item_name, price, and item_id for the ID for each items. [code] <?php error_reporting(0); session_start(); //your db connection here. // First, query all the items in your table. $query = mysql_query("SELECT * from table_name");…