Ask a Question related to Coldfusion Database Access, Design and Development.
-
gcmenotti #1
Problems with the Delete
i have this code i want to add, delete information to a sql data pressing
agregar
how can i add information to the database? what i miss????
<CFQUERY NAME="contactlist" DATASOURCE="myaccount">
Select NombreApellidos, NombreUsuario, Clave, IdUsuario
from dbo.Usuarios
</CFQUERY>
<cfdump var="#form#">
<cfform name="addressBook" format="flash" width="410" height="310">
<cfformgroup type="panel" label="Contacts">
<cfgrid name="contactList" query="contactlist" height="220"
rowheaders="false" selectmode="edit">
<cfgridcolumn name="idusuario" header="Delete" type="boolean"
width="45"/>
<cfgridcolumn name="nombreapellidos" header="apellido" />
<cfgridcolumn name="nombreusuario" header="nombre" />
<cfgridcolumn name="clave" header="contrase?a" />
</cfgrid>
<cfformgroup type="horizontal">
<cfinput type="button" name="addContact" value="Agregar"
onClick="#agregar#;"/>
<cfinput type="button" name="removeContact" value="Eliminar"
onClick="GridData.deleteRow(contactList);"/>
<!---<cfinput type="button" name="selectBtn" width="90" value="Check all"
onClick="#selectToggle#"/>--->
<cfinput type="submit" name="submitBtn" value="Aceptar"/>
</cfformgroup>
</cfformgroup>
</cfform>
gcmenotti Guest
-
Delete form - Post data to a table and delete uponsubmit.
I have a delete form that I'd like to post the data to a table (delete_pcn) and delete upon submit, so that all deletions may be kept track of in... -
delete button problems in datagrid
i have a datagrid with a delete button which for some reason quit working, i'm thinking its a problem with the database but here is the code:... -
Cache DataGrid Datasource, Add/Delete rows and rebind problems
Hi all, Is there any way to cache the Datasource of datagrid and allow to add/delete row in cache, then rebind the datagrid from cached... -
SELECT OK, INSERT and DELETE Problems in Windows 2003
Hi, I´m not getting write, alter or exclude any register in my table. Only read without problems. What is happening ? Generate the error: -
Problems in Delete Row
hi, i have a datagrid and got a delete column <asp:datagrid id="dgpayer" runat="server" CssClass="text" OnItemDataBound="SplitDetails"... -
JMGibson3 #2
Re: Problems with the Submit
" what i miss????" a few more CFGRID parameters along with the SelectMode:
SELECTMODE="Edit"
INSERT="Yes"
DELETE="Yes"
INSERTBUTTON="Add a row "
DELETEBUTTON="Del that row"
JMGibson3 Guest



Reply With Quote

