Forms Data Controls :: Group Data In Gridview By Sales, Yearly, Monthly?
Jan 12, 2010how to group data in gridview.for example grouping data by sales or yearly or monthly or by country or region.....
View 2 Replieshow to group data in gridview.for example grouping data by sales or yearly or monthly or by country or region.....
View 2 RepliesI have a table where I have
Amount paid, payment date
I want to write a query which will fetch the total amount of sales for a month based on the payment date.
And i want to represent the result in a pie chart like january(3000),february(90000),march(20000) etc.
I have a grid view to show a listing of domestic sales and international sales. I share the same grid view for both. So if i select 'Domestic' radio button, i have to change the label of first column as 'SalesNo' and also set the sort expression as 'sales_No', if i select 'International' radio button, i have to change the label of first column as 'ExportNo' and also set the sort expression as 'export_No'. How can i do it using C# ?
View 1 RepliesI want to create a trafic controlling system and show data in a tabular format. as follows
----------------------------------------------------------------------------------------------------------------------
August
1 2
3 4
5 6
7 8
9 10 .......31
How to achive this using any of the data control gridview, datalist or repeater control ?the numbers 1,2,3....31 are the days in a month while "HomePage", "Maps" etc are the name of the pages and the entry below each date will show no of users visited the page. I want to show the same for every month
i have fetched required data and the output is as follows .
PageId VisitedDate VisitCounts PageName
How to show Group Data in the GridView Control like
ID CityName CityCode
India
1 Chennai CH01
2 Mumbai MU01
3 Delhi DE01
Srilanka
4 Columbo CO01
5 Gandi GA01
I got a grid with data like this
Col 1 Col2
----- ------
A 2
A 4
Total 6
B 2
B 3
Total 5
C 5
C 6
Total 11
D 5
D 7
Total 12
How to do like this in gridview asp.net 2.0?
I'd like to gruop data from a table, for example, by DATE or CATEGORY, something like this:
29/01/2010
News 1
News 2
News 3
30/01/2010
News 1
News 2
News 3
or group by CATEGORY, like this:
ASP.NET
News 1
News 2
News 3
PHP
News 1
News 2
News 3
I wanna group a button with gridview..Since I'm using many buttons in my page..
View 5 Replieshow to group radiobutton in gridview when its type is same
Means select only one record from gridview radiocheck according to type
ex :either ID=1 or 2
3 or 4 etc
if (!this.IsPostBack)
{
DataTable dt = new DataTable();
[Code]....
[URL]
Above Links Works For Only When Gridview Has All Boundfield Columns and Last Templatefield Column having Radiobutton.
But not Works when All TemplateField Columns Having Textbox or Label in gridview like
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false" BorderColor="Black"
DataKeyNames="ID,Type" BorderStyle="Solid" BorderWidth="1px" CellPadding="4"
CssClass="Gridview" OnRowDataBound="GridView1_RowDataBound">
<Columns>
[code].....
i have a data driven web application, in my database i have this datetime column,
and in my web application i have this gridview, but the only data that i need to display are the records with todays date until the past 6 days from today, so its like 7 days all in all.
I am using the GridViewHelper [URL]to display gridview with group and subtotals. This seems to only work on BoundField and I am wondering how to get this work with TemplateField.
Dim helper As New GridViewHelper(Me.GridView1)
helper.RegisterGroup("DeptDesc", True, True) - Works
helper.RegisterSummary("Reg", SummaryOperation.Sum, "DeptDesc") - Throws Error Below
helper.ApplyGroupSort()
DataBinding: 'System.Data.DataRowView' does not contain a property with the name 'Reg'.
<asp:BoundField DataField="DeptDesc" HeaderText="DeptDesc" SortExpression="DeptDesc" />
<asp:TemplateField HeaderText="Reg" SortExpression="Reg">
<ItemTemplate>
<asp:Label ID="Label2" runat="server" Text='<%# IsSplit(Eval("EmployeeID")) %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
I am binding gridview details from the datatable, i need to use groupby in gridview.
View 1 RepliesI have to select checkboxes besed on group column values. If you see below gridview, column 3 (GroupN) has 1,1,1,1,2,2,2,2....etc (this column data is not static, will change based on page index. i.e PageIndex =2 may starts with 7,7,7,8,8,8,8,8,9,9,9 etc).
Now My question is.
1). If user selected '1', we have to store value and user must and should select another '1' (atleast two times).
2) If user selected '1', and user trying select '2'. Giving error says "Must have select one then one record in group to combine' (will not allow) and unselect '2'.
3) If user selected '1' atleast two times, and user trying select '2'. Will allow.
4) If user selected '1' atleast two times and selected '2' one time, trying to select '3'. will not allow user to select '3'.
I need to develop a page in my applicaiton like the image for the user lists.
I need to get the list of users under a group and need to show likw this.
There is a Gridview in my web page in which data is coming from below Table 1:
Id Name Value
1 aa 30
2 bb 80
3 cc 60
HTML:
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" AllowPaging="True" PageSize="8" OnPageIndexChanging="GridView1_PageIndexChanging">
<Columns>
<asp:BoundField DataField="id" HeaderText="ID" />
<asp:BoundField DataField="Name" HeaderText="Name" />
<asp:BoundField DataField="" HeaderText="Value" />
</Columns>
</asp:GridView>
<asp:Button ID="BShow" runat="server" Text="Show Data" OnClick="BShow_Click" />
1) I want to use RadioButton inside Gridview to select rows of gridview.
I tried using ASP RadioButton, but it is multi selecting the Grid rows.I want single selection of RadioButton one at a time while selecting rows.
How we can group data in asp template field..
View 1 RepliesHow we can group data in bound field...
1 1-1-2013 x a 1 1-1-2013 x b
1 1-1-2013 x c
2 2-1-2013 y a 2 2-1-2013 y b
2 2-1-2013 y c
i want to show it in this format...
serialNo date name item
1 1-1-2013 x a b
c
2 2-1-2013 y a b
c
I am working in Asp.net 4.5. I need to create a grid as like below, I am struggling to make the merging cells and make it as multi header row by combining all the cells...
Is there any sample to make gridview like this.... I need to do this on codebehind. I browse through the internet and found couple of sample but those are not having the header like i posted. I am little confused about making full header as merged cells....
how can we create a gridview with total of amount column, grouping based on location with expand and collapse facility
View 1 RepliesI want to display data in a listbox on the bases of group.
Eg.
india
Mumbai
Delhi
UK
England
USA
Msahatem
ererere
tytytty
I have a piece of code which gets clients list from a database and write to XML as follows:
[Code]....
Which Creates XML file as follows:
[Code]....
I need to group the client list in my online site to show(group) each 4 clients within separate div and ul
[Code]....
My target is to use one of the following two directions:
1 - Find a solution to group data while generating the XML file to groups of 4 items
[Code]....
2 - Try to group the xml in my repeater by finding a solution for nasted-like repeater or custom item template and separator template to make the output like the above div/ul structure
I also have no problem if we can do this through the SQL stored procedure
I am using devexpress grid view. i have enabled SHOW GROUP PANELData is binded to the gridview using datatable in cs page . But when i drag the coloum to the header to group ...the grid show no data...
View 3 RepliesI am using a nested listview to display a seperate grid for each group of data returned from my db query. To get this working, I have adapted a piece of code to group the data prior to it being bound:
[Code]....
I am then using the following html markup:
[Code]....
[Code]....
This works as I want it to however some of the fields within the nested table need to be formatted as currency so I am trying to use Eval and {0:c} to do this however the moment I use Eval, the data items cannot be found
DataBinding: 'System.Data.DataRow' does not contain a property with the name '0'.
Stack-Overflow :3 I've got a kind of hard-case question.
So I'll try clearly explain my idea with my poor english :/ need select to DataTable SOME values from ???_**GetDisplayData **procedure for each day of previos month (GROUP IT) where group rules for different columns is different
I need to select some values in stored procedure from other stored procedure like this :
SELECT X FROM Y_Procedure(@ProcedureParameters)Also I need to select from dynamic SQL Procedure like
Y_Procedure=@Y+'_Procedure'
SELECT X FROM Y_Procedure(@ProcedureParameters)
Also I need to load it to DataTable :-/INSERT INTO @Report (CellHorizontal, CellVertical, CellValue) --to TABLE
SELECT Date,X2,X3 FROM Y_GetDisplayData(@Param)
SET NOCOUNT OFF;
SELECT *
FROM @Report
GetDisplayData works as select with parameters and that doesn't returns SQL DataTable
And there is no way to recode GetDisplayData's procedures, it's just constant procedures for me.Finally I need to Group nodes from this table
INSERT INTO @Report (CellHorizontal, CellVertical, CellValue)
SELECT T1.Date,
IF ((Select grouptype...)=1) T1.X2 + T2.X2
ELSE IF ((Select grouptype...)=2) AVG(T1.X2,T2.X2),
IF ((Select grouptype...)=1) T1.X3 + T2.X3
ELSE IF ((Select grouptype...)=2) AVG(T1.X3,T2.X3),
(SELECT T2.Date,X2,X3 FROM Y_GetDisplayData(@Param) T2
WHERE T2.Date>T1.Date AND T2.Date>=T1.Date)
FROM Y_GetDisplayData(@Param) T1
GROUP BY EVERY DAY ???--and here is epic fail
I can make all stuff on asp server :And C# allows me to use something like SelectCommand = IzmProc + "_GetDisplayData"; And then I will work (select special data) with DataTables on ASP.NET Server but it's better to make all on SQL ... But looking like it's just unrealizable on SQL >_<
I gonna think about C# realization,but my code is very weird , got errors and doesn't works >_<
public static DataTable GetReport(string Param)
{
System.Configuration.ConnectionStringSettings connSetting = ConfigurationManager.ConnectionStrings["FlowServerConnectionString"]; [code].....