Web Forms :: How To Sort List-generic Object By Two Parameters
Mar 16, 2011sort List-generic object by two parameters
View 1 Repliessort List-generic object by two parameters
View 1 RepliesI have a class Trans, with properties siteID and TID. I have a generic list of this class, TransList = list(Of Trans).
Now I want to find the Trans in TransList where the siteID is 3 and the TID is T1. There will only be one record. I want to then update this Trans in the TransList (so I need a reference to the Trans). I am trying to do the following, but it doesnt like it.
[Code]....
I am trying hard to update a business object inside a List<>.
I am using a checkbox list
When a checkbox list item is clicked I check if it exists, if yes I mark it as Dirty (means the user unchecks an item)If not, I add a new item to the list (means the user clicks a new item)and store it in view state
How do I update the Generic List with the Dirty Object ?
On form update, do I foreach and make separate lists of dirty and new objects to send to DB layer or would you recommend any other way ?
Here is my code.
protected void cblExclusions_SelectedIndexChanged(object sender, EventArgs e)
{
if (cblExclusions.SelectedIndex != -1)
{
ftExclusions myExclusion=new ftExclusions(); // Business object
[Code]....
i'm having a gridview with textboxes and i'm allowing user to enter all the textboxes and when submit button is clicked, I'm constructing the Object and adding all the rows to LIST class.,After that i'm putting that LIST elements in a session. Everything is fine, But when i try to cast the session object to LIST type and pass it to XML serialization, I cannot see the elements in the list and it is showing LIST as NULL. I can see the generated XML string with ROOT and my classname as attributes without no data.
Here is the below code:
[Code]....
I need to cache System.Collection.Generic.List object with expiration time
var Root = from feed in feedhotel.Descendants(ota + "HotelContent")
where (feed.Attribute("HotelCode") != null)
select new xmlhotel()
{
};
return Root.ToList();
Is it possible to cache Root.ToList() for some time....
Actually i want to ask which is the best for sorting in Asp.Net is it DataView.Sort Method or List<Object>.Sort() method.
View 1 RepliesI have the following Students class:
[Code]....
I need the 1 since it's a foreign key in another table. For the life of me, I can't get this to work like this.
I retrieved values from database to drop down ,how can i make them as sortable.
View 5 RepliesI am using jquery ajax method on my aspx page,which will invoke the webmethod in the code behind.Currently the webmethod takes a couple of parameters like firstname,lastname,address etc which I am passing from jquery ajax method using
data:JSON.stringify({fname:firstname,lname:lastname,city:city})
now my requirement has been changed such that,the number and type of parameters that are going to be passed is not fixed for ex.parameter combination can be something like fname,city or fname,city or city,lname or fname,lname,city or something else.So the webmethod should be such that it should accept any number parameters.I thought of using arrays to do so, as described here.
But I do not understand how can I identify which and how many parameters have been passedto the webmethod to insert/update the data to the DB.
I notice that my generic list is maintaining only one item, i declared it in the aspx.cs page f one of my forms. I am assuming that each time the page is reloaded when I add an item the list is redeclared. How can I stop that?
View 10 RepliesI am trying to bind the gererist list type to GridView control but for some reason its just displaying "Member"(Object name) rather then the actuakl content inside object.Any Idea why?Below i have decleared a List Type Member:
[Code]....
And the Below trying to bind with gridview:
[Code]....
I've got a class that implements IListSource and returns a generic List of ListItem objects (List<ListItem>). in this list one of the ListItems has the Selected attribute set to true.On the web page I have a standard asp:dropdownlist and I set it's datasource to the getList method of my class and databind it.The problem is that the databind seems to loose the selected Item and the first item in the generic list becomes selected.
View 8 RepliesOkay, so I have a Generic IList of custom objects that I want to use as a datasource for a repeater.
[Code]....
In the WebForm inside the repeater, I place this code:
[Code]....
when I try to run it, I get the error "Unable to cast object of type 'System.Collections.Generic.List`1[MyCustomObject]' to type'MyCustomObject'. ". Which makes sense, really.
What's the best way round this? Is there any way I can get the direct cast working? I'm loath to have to create a custom list item that implements IBinding or something and bind that directly, as that'll mean a lot of legacy changes which may create further bugs. Or is there a better way?
i am trying to Bind value's to Label Using Generic List<>
[Code]....
returning all values sucessfulyy now how i Show these Values in Label
[Code]....
Label1.Text=???what it will be?
Generic List to DataTable
View 1 RepliesSplit off from [URL]
Getting records From DataBase using DataTale which contain 1000 Rows, then binding to GridView using Generic List. Like above Example
GridView1.DataSource= GetData();
GridView1.Binding();
Now i want to do search, sorting & Paging in the GridView with out Postback of the Page & with out hitting the DataBase when do Paging or searching in GridView.
How to use extension methods and customizes generic list collections??
View 1 RepliesAs I am new to listview i had a problem with it, I hav to sort the values in the list view, when we click on the header links, so i hav done it by
commandname="sort" and commandargument="My_table_column", and i hav suceeded doin it.
Now my problem is i hav to do some search by 6 conditons like
CustomerId,CustomerName,OrderNumber,OrderDate,OrderType
For this i am using row filter and filtering the values in the Dt and then i am binding the dt back to the ListView here i am getting the problem as "The data source does not support sorting". I am aware that i am changing the data source, but before binding the datasource manually to
dt,
i hav tried doing this to make the datasourceid null which i hav attached previously
lvSalesLayOut.DataSourceID = "";
But i am getting the error post me how to get this done programatically.
I have a problem i just cant get around...I'm trying to sort the contents of a gridview that gets filled from a List<T>.
(working in DAL, BLL & Presentation layers).
The Gridview's source code:
[code]....
What i cant figure out is how to implement the sort method to the gridview when fetching data from a generic list... I have been Googling my a** of trying to solve this.
I have a generic list of a custom type. The custom type has a string and double.I'm binding the list to a gridview and it outputs everything fine.I'm trying to format the double column into a currency format. It is in a template field as I'm calculating a running total. I pass the value to a function that returns a double and adds the current value to a running total which I will show in the footer.
The format is not changing to currency as expected when using String.Format("{0:c}", GetTotal(Convert.ToDouble(Eval("Amount"))))
I have a following generic list method that contains some data for a gridview. I need to supply edit and delete functionality for it.
List<students> List(string id)
{
List<students> st = new List<students>();
[code]...
[Code]....
I am getting error of in Foreach loop
[Code]....
How to resolve this situation or any other alternative to cum out of this problem.
How do you sort a dictionary object in C# 2.0 for asp.net or is their an alternative to Dictionay for sorting this is to sort a countries list alphabetically
View 3 RepliesMy Grid is bound to a collection type datasource. When I try to sort the Columns in the Grid I get Javascript error saying sorting event not implemented. Why is the default inbuilt sort functionality not working which worked fine when I directly used a sqlDataSource using smart tag. Do I have to write some code to achieve sorting ?
View 1 RepliesI get this error when run the page
DataBinding: 'System.Int32' does not contain a property with the name 'item'.
protected void Page_Load(object sender, EventArgs e)
{
List<int> item = new List<int>();
{
item.Add(25);
item.Add(50);
item.Add(520);
item.Add(543);
item.Add(543);
item.Add(55);
};
GridView1.DataSource = item;
GridView1.DataBind();
}
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false" ShowFooter="true">
<Columns>
<asp:TemplateField HeaderText="Sub total">
<ItemTemplate>
<asp:Label ID="subTotalLabel" runat="server" Text='<%#Eval("item")%>' />
</ItemTemplate>
<FooterTemplate>
<asp:Label ID="grandTotalLabel" runat="server" />
</FooterTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>