Click here to Skip to main content
15,909,445 members

Comments by Member 9364222 (Top 8 by date)

Member 9364222 9-Nov-12 1:20am View    
crystal report is not working in the system
Member 9364222 6-Nov-12 1:54am View    
i have a gridview with a buttonfield column to edit the particular row. i have a written the row editing function.when i click on the edit button during runtime the particular row becomes textbox columns. i need to display them in textboxes in a panel not in gridview itself.
Member 9364222 17-Oct-12 3:09am View    
Hi i am using export function to export the charts to pdf. it works fine and good.I have options to change the type of the chart at runtime using dropdownlist.when the chart type is changed and when i try to export it the default type while pageload is exported. i Want to export the changed chart type .Is there any solution for this.
Member 9364222 15-Oct-12 8:34am View    
i have a gridview and a search textbox to search the columns of the gridview.
when the search is completed the design is changed in griview.
It should not change the design of grid.


is there any solution to do so.
Member 9364222 4-Oct-12 6:52am View    
hi,
i have a gridview with a checkbox column,databound column and a textbox template column.Initially the text box column is not visible. when i click the checkbox in a row the corresponding row's text box should be visible.

my gridview
<asp:GridView ID="gvwProduct" OnPageIndexChanging="gridView_PageIndexChanging" runat="server"
AutoGenerateColumns="False" EnableModelValidation="True"
Width="259px" Height="130px"> <%--onselectedindexchanged="gvwProduct_SelectedIndexChanged">--%>
<columns> <asp:TemplateField HeaderText="Check" >
<itemtemplate>
<asp:CheckBox ID="chkbxPrd" AutoPostBack="true" runat="server" />



<asp:BoundField DataField="cService_Desc" HeaderText="Product/Service" runat="server" />

<asp:TemplateField HeaderText="Contract Value">
<itemtemplate>
<asp:Label ID="lblPrd" runat="server" Visible="true"/>
<asp:TextBox ID="txtPrd" runat="server" Visible="false" />


is there any solution for this