when i execute the crystal report the report header section vanishes.at the design time the report header sections are covered by blue lines is there any option to enable or disable the concerned section. how i can show report header in a crystal report Thanks in advance sourav ghosh
Arindam Datta
Posts
-
how to show report header in a crystal report -
problem in "A generic error occurred in GDI+."i am storing a bitmap image in a folder through my application and read it. But when it executes an error occurs "A generic error occurred in GDI+." why it is occured? Regards Arindam
-
problem of invoking text_changed eventHi,I am changing the text property of a textbox by javascript. function change(obj){ var txt=obj; txt.value='0'; Upto this point the code is running fine.But I want the TextChanged event to be fired whenever the value is changed to '0'.The TextChanged event is not being fired.The AutoPostBack property of the textbox is set to "true".
-
PROBLEM FIRING TEXTCHANGED EVENT [modified]Hi,I am changing the text property of a textbox by javascript. function change(obj){ var txt=obj; txt.value='0'; } Upto this point the code is running fine.But I want the TextChanged event to be fired whenever the value is changed to '0'.The TextChanged event is not being fired.The AutoPostBack property of the textbox is set to "true".
modified on Wednesday, July 30, 2008 6:29 AM
-
[Message Deleted][Message Deleted]
-
how to pass the ID of a text box in a gridview to a javascript<pre>
<asp:GridView id="GridView1" runat="server" Font-Size="X-Small" ForeColor="#333333" Width="802px" AllowPaging="True" GridLines="None" CellPadding="4" ShowFooter="false" AutoGenerateColumns="False" CssClass="grid-view" OnDataBound="GridView1_DataBound">
<EmptyDataTemplate>
<asp:Label ID="Label1" runat="server" Font-Bold="True" ForeColor="Red" Text="No Data Found"></asp:Label>
</EmptyDataTemplate>
<Columns>
<asp:BoundField DataField="ORDER_NO" HeaderText="ORD_NO" ></asp:BoundField>
<asp:BoundField DataField="ITEM_NO" HeaderText="ITEM_NO" ></asp:BoundField>
<asp:BoundField DataField="BALTONS" HeaderText="BALTONS" ></asp:BoundField>
<asp:BoundField DataField="ORDDATE" HeaderText="ORDDATE" ></asp:BoundField>
<asp:BoundField DataField="DUEDATE" HeaderText="DUEDATE" ></asp:BoundField>
<asp:BoundField DataField="MATNR" HeaderText="MAT_NO" ></asp:BoundField>
<asp:BoundField DataField="DESCRIPTION" HeaderText="MAT_DESCP"><HeaderStyle Width="5000px" /><ItemStyle Width="5000px" /></asp:BoundField>
<asp:TemplateField HeaderText="PLANQTY">
<ItemTemplate><asp:TextBox ID="txtplanqty" runat="server" BackColor="#ffffcc" OnTextChanged="txtplanqty\_TextChanged" AutoPostBack="true" Font-Size="x-Small" Text='<%# Eval("PLAN\_QTY") %>' Width="70px"></asp:TextBox> </ItemTemplate> </asp:TemplateField> <asp:TemplateField HeaderText="TRGT\_PRD"> <ItemTemplate> <asp:TextBox ID="txttrgtprd" runat="server" Font-Size="X-Small" onfocus="getdata(this)" OnTextChanged="txttrgtprd\_TextChanged" BackColor="#ffffcc" Width="70px" Text='<%# Eval("TRGT\_PRD") %>' AutoPostBack="true"></asp:TextBox> </ItemTemplate> </asp:TemplateField> </Columns> <FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White
-
how to pass the ID of a text box in a gridview to a javascript<asp:GridView id="GridView1" runat="server" Font-Size="X-Small" ForeColor="#333333" Width="802px" AllowPaging="True" GridLines="None" CellPadding="4" ShowFooter="false" AutoGenerateColumns="False" CssClass="grid-view" OnDataBound="GridView1_DataBound">
<EmptyDataTemplate>
<asp:Label ID="Label1" runat="server" Font-Bold="True" ForeColor="Red" Text="No Data Found"></asp:Label>
</EmptyDataTemplate>
<Columns>
<asp:BoundField DataField="ORDER_NO" HeaderText="ORD_NO" ></asp:BoundField>
<asp:BoundField DataField="ITEM_NO" HeaderText="ITEM_NO" ></asp:BoundField>
<asp:BoundField DataField="BALTONS" HeaderText="BALTONS" ></asp:BoundField>
<asp:BoundField DataField="ORDDATE" HeaderText="ORDDATE" ></asp:BoundField>
<asp:BoundField DataField="DUEDATE" HeaderText="DUEDATE" ></asp:BoundField>
<asp:BoundField DataField="MATNR" HeaderText="MAT_NO" ></asp:BoundField>
<asp:BoundField DataField="DESCRIPTION" HeaderText="MAT_DESCP"><HeaderStyle Width="5000px" /><ItemStyle Width="5000px" /></asp:BoundField>
<asp:TemplateField HeaderText="PLANQTY">
<ItemTemplate><asp:TextBox ID="txtplanqty" runat="server" BackColor="#ffffcc" OnTextChanged="txtplanqty\_TextChanged" AutoPostBack="true" Font-Size="x-Small" Text='<%# Eval("PLAN\_QTY") %>' Width="70px"></asp:TextBox> </ItemTemplate> </asp:TemplateField> <asp:TemplateField HeaderText="TRGT\_PRD"> <ItemTemplate> <asp:TextBox ID="txttrgtprd" runat="server" Font-Size="X-Small" onfocus="getdata(this)" OnTextChanged="txttrgtprd\_TextChanged" BackColor="#ffffcc" Width="70px" Text='<%# Eval("TRGT\_PRD") %>' AutoPostBack="true"></asp:TextBox> </ItemTemplate> </asp:TemplateField> </Columns> <FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> <RowStyle BackColor="#EFF3FB" /> <EditRowStyle BackColor="#2461BF" /> <SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" /> <PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
-
how to pass the ID of a text box in a gridview to a javascripti am developing a web based application where i use i want to pass textbox ID which is in a grid view to the java script. how it can be possible Sourav ghosh
-
how to pass a textbox ID which is in a grid view to a java scripti am developing a web based application where i use function getdata(obj) { var txt = document.getElementById(obj); txt.value='0'; } i want to pass textbox ID which is in a grid view to the java script. how it can be possible Thanks & Regards Sourav Ghosh
-
Problem setting focus dynamicallyHi,whenever I am using update panel,i can not dynamically set focus to the control I want to.Should I use any Java Script?Can anybody help me out???Thanx in advance...