Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
R

robertalis

@robertalis
About
Posts
7
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • data filter options for grid
    R robertalis

    Interesting question. We can filter rows in a grid by setting filtering conditions via IFilter interface or by directly calling Row.Filtered property. e.g. setting boolean in the Row.Filtered property and implementing the IFilter interface and setting it with the Grid.Filter property. This approach covers almost all situations when data filtering may be needed. Filters in column work in parallel with programming filter set via Grid.Filter property. Any of these filters can tell the grid that data should no longer be visible. Have a look if you want to know in detail about data filters in columns

    C# css algorithms help

  • how to build a hierarchy with binding list.
    R robertalis

    Hello, .Net Grid supports various methods of data binding giving programmers a broad choice in application implementation. Generally speaking, data binding is a way to connect graphical components to data sources that greatly simplifies application logic, reduces code volume and greatly improves application quality. Here is the solution of your problem hierarchy with binding list

    .NET (Core and Framework) wpf wcf help tutorial

  • Application performance problems
    R robertalis

    Hi, We need frequent data updations in real time updating application like online treading and like these others. I will suggest you to go for dapfor .net grid which is capable in real-time data processing like real-time data updating, real-time data highlighting, real-time data sorting and real -time data filtering. Cheers,

    C# performance help

  • Factors which effect our application performance
    R robertalis

    Hello, If we talk about real time we can perform various data processing in real time like data updating, data highlighting, data sorting, data filtering and data grouping which is application based. I will suggest you a custom component, which will help you to increase your application performance http://www.dapfor.com/Feature.aspx?id=performance[^]

    C# performance

  • change datagridrow color after add it
    R robertalis

    Hi, You can get solution to your problem here to change the background of the added row in a data grid. Using this you can set specific appearance of the element via Appearance property. For instance, Grid.Appearance, Header.Appearance, Column.Appearance, Row.Appearance, Cell.Appearance. Visit here and have a look http://www.dapfor.com/Feature.aspx?id=custom_painting[^]

    .NET (Core and Framework) question

  • Binding to multiple data sources
    R robertalis

    Hello, One of my friend ask me about how to use binding on multiple data sources. Please help me to answer, as I am a newbie in .net programming.

    C# csharp wpf wcf help tutorial

  • Need A Help Of Nested Grid View
    R robertalis

    Hello I am not much experienced but I can give you an overview

    Protected Sub grdMaster_RowDataBound(ByVal sender As Object, _
    ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) _
    Handles grdMaster.RowDataBound
    Dim objListItem As DataControlRowState
    objListItem = e.Row.RowState
    Dim intMAsterID1 As Integer
    If e.Row.RowType = DataControlRowType.DataRow Then
    Dim grd As GridView
    If objListItem = 5 Then
    grd = CType(e.Row.FindControl("grdChildGridEdit"), GridView)
    MasterTableID = Convert.ToInt32(CType(e.Row.DataItem, _
    DataRowView).Row.ItemArray(0).ToString())
    intMAsterID1 = MasterTableID
    ElseIf objListItem = DataControlRowState.Normal Or _
    objListItem = DataControlRowState.Alternate Then
    grd = CType(e.Row.FindControl("grdChildGridNormal"), GridView)
    intMAsterID1 = Convert.ToInt32(CType(e.Row.DataItem, _
    DataRowView).Row.ItemArray(0).ToString())
    Dim lnkButtton As LinkButton
    lnkButtton = CType(e.Row.FindControl("Edit"), LinkButton)
    If lnkButtton IsNot Nothing Then
    lnkButtton.CommandName = "Edit Master"
    lnkButtton.CommandArgument = intMAsterID1.ToString
    End If
    ElseIf objListItem = DataControlRowState.Edit Then
    grd = CType(e.Row.FindControl("grdChildGridEdit"), GridView)
    MasterTableID = Convert.ToInt32(CType(e.Row.DataItem, _
    DataRowView).Row.ItemArray(0).ToString())
    intMAsterID1 = MasterTableID
    End If
    If grd IsNot Nothing Then
    grd.DataSourceID = ""
    grd.DataSource = ChildDataSource
    ChildDataSource.SelectParameters(_
    "MasterTableID").DefaultValue = intMAsterID1
    ChildDataSource.Select()
    grd.DataBind()
    End If
    End If
    End Sub

    visit here to solve your .net grid related problem http://www.dapfor.com/Help/NetGrid/Index.aspx[^]

    .NET (Core and Framework) css business help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups