Sharepoint grid view

I'm looking to give our company Intranet an overhaul and wanted to create what I can only describe as a grid view in SharePoint which looks like this:Sorry for the poor quality as I took a screenshot from a youtube video, my knowledge of SharePoint is limited at the moment and we using SharePoint Services 3.0 .
I had a go at attempting to recreate this using CEWPs but I'm not sure if this is the right way to go about it?
This topic first appeared in the Spiceworks Community

Thanks Daniel.
I am unable to connect to my SQL EXPRESS db on my laptop via SPD 2007: I get the error -
I am able to access that database via SQL Server Mgmt. Studio (both with Windows and SQL Server authentication). I can also access a SQL Express database on a remote server from the exact same SPD 2007 session: I get -
So, I wonder why I can connect to the remote but not the local? Anyway, if you have any ideas I would appreciate it. I am willing to do the work from the article you mention but wanted to rule out there being a simple DB access issue first.  I'll also
start to find the ULS logs and review them.
Thanks again !!
Update on 1-3-14: Hi, since yesterday I also have been able to connect to the SQLEXPRESS database / table and display the .aspx page with the gridview in Visual Studio 2010.
Update 1-26-14: Sorry for the delayed response.  I determined the reason why I could not connect to the SQLEXPRESS instance on my laptop was that there was a local host intrusion (firewall) rule on my machine that prevented an inbound connection
on port 1433.  SharePoint server >>> inbound connect on port: 1433 >>> to Laptop device, not allowed. 
Thanks.

Similar Messages

  • How to bind check box selected values in to anthore grid view in sharepoint programaticlly

    hi,
    we have grid view in that grid view we have check box ,when select check box that entire  row we want add to next grid view through grammatically in C#

    Hello,
    Here is some .NET blogs to achieve this:
    http://www.aspdotnet-suresh.com/2013/05/move-selected-gridview-rows-to-another.html
    http://www.aspsnippets.com/Articles/Transfer-Selected-Rows-from-one-GridView-to-Another-in-Asp.net.aspx
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to get list data and bind to data table or Grid view in share point 2010 using j query

    hi,
    How to bind list data in to data table or  grid view  using Sp Services.
    How to use sp services in share point 2010 lists and document library 

    Hi, You can use List service, SPServices and JQuery to get your requiement done-
    See here for an sample implementation -
    http://sympmarc.com/2013/02/26/spservices-stories-10-jqgrid-implementation-using-spservices-in-sharepoint/
    http://www.codeproject.com/Articles/343934/jqGrid-Implementation-using-SpServices-in-SharePoi
    Mark (creator of SPServices) has some good documentation on how to use SPServices-
    http://spservices.codeplex.com/wikipage?title=%24().SPServices
    SPServices Stories #7 – Example Uses of SPServices, JavaScript and SharePoint
    http://sympmarc.com/2013/02/15/spservices-stories-7-example-uses-of-spservices-javascript-and-sharepoint/
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • How can i put view All in bottom of the grid view?

    Hi All,
    I have created a sharepoint document library and uploaded documents to that library.
    After that i have bind that documents to gridview, now i want put view All in the bottom of the documents.
    View All---> if i click this, it will navigate to that sharepoint library.
    How can i put view All in bottom of the grid view.

    Hi Anil,
    You can add a button or hyperlink and initialize the redirect url with default view url of list as "oList.DefaultView.Url".
    Best Regards,
    Brij K
    Best Regards,
    Brij K
    http://bloggerbrij.blogspot.co.uk/

  • I have a task, that is i want to retrive the details from active directory based on name and i want show that details into grid view.

    Hi All,
    I have a task, that is i want to retrive the details from active directory based on name and i want show that details into grid view.
    Can any one help how to start.
    Thanks in advance!

    Hi AnilKarthik,
    You can get user details by name using DirectoryService namespace. Then you can create a DataTable to restore the information and then bind to the SharePoint GridView.
    Here are some deatiled code demos for your reference:
    how to get userdetails from Active Directory based on username using asp.net:
    http://www.aspdotnet-suresh.com/2011/03/how-to-get-userdetails-from-active.html
    How to get User Data from the Active Directory:
    http://www.codeproject.com/Articles/6778/How-to-get-User-Data-from-the-Active-Directory
    Using SPGridView to bound to list data in SharePoint:
    http://nishantrana.me/2009/03/23/using-spgridview-to-bound-to-list-data-in-sharepoint/
    Best Regards
    Zhengyu Guo
    TechNet Community Support

  • How to retrieve Task Lists from All Subsites to the Parent Site and display in Grid view using CAML Query

    How to retrieve Task Lists from All Subsites to the Parent Site and display in  Grid view using CAML Query + object model

    do u just want task list or items under task list for all subsites
    for items use spsitedataquery ref
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spsitedataquery.aspx use recursive to get it from alll subsite under site collection
    for tasklist only u can a simply use a for loop to find in all subsite
    Manish Sati

  • FillBy always fills in the same row in data grid view. How to make it fill in a new row for each click of the Fillby Button? VB 2010 EXPRESS?

    Hi there, 
    I am a beginner in Visual Basic Express 2010. I have a Point of Sale program that uses DataGridView to display records from an external microsoft access
    database using the fillby query. 
    It works, but it repopulates the same row each time, but i want to be able to display multiple records at the same time, a new row should be filled for
    each click of the fillby button. 
    also I want to be able to delete any records if the customer suddenly decides to not buy an item after it has already been entered. 
    so actually 2 questions here: 
    1. how to populate a new row for each click of the fillby button 
    2. how to delete records from data grid view after an item has been entered 
    Thanks 
    Vishwas

    Hello,
    The FillBy method loads data according to what the results are from the SELECT statement, so if there is one row then you get one row in the DataGridView, have two rows then two rows show up.
    Some examples
    Form load populates our dataset with all data as it was defined with a plain SELECT statement. Button1 loads via a query I created after the fact to filter on a column, the next button adds a new row to the existing data. When adding a new row it is appended
    to the current data displayed and the primary key is a negative value but the new key is shown after pressing the save button on the BindingNavigator or there are other ways to get the new key by manually adding the row to the backend table bypassing the Adapter.
    The following article with code shows this but does not address adapters.
    Conceptually speaking the code in the second code block shows how to get the new key
    Public Class Form1
    Private Sub StudentsBindingNavigatorSaveItem_Click(
    sender As Object, e As EventArgs) Handles StudentsBindingNavigatorSaveItem.Click
    Me.Validate()
    Me.StudentsBindingSource.EndEdit()
    Me.TableAdapterManager.UpdateAll(Me.MyDataSet)
    End Sub
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    'TODO: This line of code loads data into the 'MyDataSet.Students' table. You can move, or remove it, as needed.
    Me.StudentsTableAdapter.Fill(Me.MyDataSet.Students)
    End Sub
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    Me.StudentsTableAdapter.FillBy(Me.MyDataSet.Students, ComboBox1.Text)
    End Sub
    Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
    Me.MyDataSet.Students.AddStudentsRow("Jane", "Adams", "Female")
    End Sub
    End Class
    Get new key taken from
    this article.
    Public Function AddNewRow(ByVal sender As Customer, ByRef Identfier As Integer) As Boolean
    Dim Success As Boolean = True
    Try
    Using cn As New OleDb.OleDbConnection With {.ConnectionString = Builder.ConnectionString}
    Using cmd As New OleDb.OleDbCommand With {.Connection = cn}
    cmd.CommandText = InsertStatement
    cmd.Parameters.AddWithValue("@CompanyName", sender.CompanyName)
    cmd.Parameters.AddWithValue("@ContactName", sender.ContactName)
    cmd.Parameters.AddWithValue("@ContactTitle", sender.ContactTitle)
    cn.Open()
    cmd.ExecuteNonQuery()
    cmd.CommandText = "Select @@Identity"
    Identfier = CInt(cmd.ExecuteScalar)
    End Using
    End Using
    Catch ex As Exception
    Success = False
    End Try
    Return Success
    End Function
    In closing I have not given you a solution but hopefully given you some stuff/logic to assist with this issue, if not perhaps I missed what you want conceptually speaking.
    Additional resources
    http://msdn.microsoft.com/en-us/library/fxsa23t6.aspx
    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem.

  • Query SharePoint List View

    As per http://msdn.microsoft.com/en-us/library/ms434064.aspx if we use
    list.GetItems(query, view.ID.ToString("B").ToUpper());
    properties of the view that is specified by the viewName parameter override the properties that are specified in the query object that is passed through the query parameter. For example, if the query
    object includes a tag that specifies only items containing a particular column value, while the view specifies to return all items, this method retrieves all of the items
    So is there any way to query a sharepoint list view (not All Items) using CAML query?
    I this retrieving view in a data table and query it later, which is an option but might give a performance degradation.
    Regards, Aj (http://www.aj-sharepoint.blogspot.com/) MCTS

    Hello,
    Did you try with SPView.Query method? If not then this can be query to specific view.
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spview.query.aspx
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Why does iTunes grid view not remember default sort settings?

    Hello,
    I am using iTunes 8.1 and I like to use the Grid view (Artists). Using the Grid view and clicking on an artist to look at the albums, I like to sort the albums within using "Album by Year".
    Once I have made this change, it sticks until I close iTunes, so I can go into any other artist from Grid view and the albums will be listed using "Album by Year" automatically.
    When I restart iTunes and click on an artist in grid view, iTunes has reverted to sorting via the first column, the one with track numbers. I then have to manually click "Album by Year" to get it sorted again.
    I was wondering if anyone else has had this issue and if there is a solution to it? This also happened in iTunes before I upgraded to 8.1.
    Thanks

    Unfortunately, I can't offer any solution because I'm experiencing the same kind of trouble. Please help us! It would be greatly appreciated.
    Cheers,
    -- D

  • Slow-to-load album covers in Grid View

    I've encountered a problem for a while that I thought I might bring up...
    Whenever I start iTunes, it defaults to Grid View, the only view I use when browsing iTunes. Now, I'm unsure if iTunes caches album art or not, but every time I boot it up and scroll down, all of my albums appear artless for half a second before slowly applying the album art. This makes scrolling down incredibly slow and clunky.
    Once I fully scroll down, I can scroll smoothly all I want, but if I close iTunes, everything is clunky again. Any tips? Does iTunes not cache album art?

    iTunes will need to load all of your artwork when using cover flow and grid view. There IS a cache folder in the Album Artwork folder of iTunes, but i don't know how effective that is.
    However, if you are running a version earlier than 9.2, iTunes 9.2 runs cover flow and grid view A LOT faster than previous versions, since what it does is create thumbnail versions of your images for those views only, making those views operate a heck of a lot quicker.
    I know 9.2 still has some bugs and some people may advise against it, but if you really want to see a boost of performance with grid view I'd recommend updating if you haven't already. Besides, for any bugs there, Apple will probably release fixes for them shortly.

  • Help! Where is the button to toggle Grid-View in Dreamweaver CC 2014.1?

    Just downloaded the latest version last night, and now the grid-view button is gone, so if I want to re-size a fluid-element, I can't.
    Help!

    See changes in latest update
    Dreamweaver Help | New features summary
    Nancy O.

  • How can I compare two collections at the same time? (View two grid views)

    I have two collections containing some of the same images. (My Nikon D70 did not put an end-of-file on some images. I recovered them into a different collection.) Now I want to display both collections side-by-side in grid view. I will select those images in the "recovered" collection that correspond to the bad images in the "main" collection, add the ratings etc, and move just these to another collection.
    It is extremely frustrating to have to bounce back and forth between collections, remembering each image one by one and selecting it in the "recovered" collection. (The image names are not preserved in the "recovered" collection -- I have to go by what the image looks like.)
    LightRoom allows me to compare photos in the compare view. I want to compare collections in two grid views.

    CaptureTheLight,
    you have ran into a situation when you have to compare two sets of images and now you're wondering how come Lightroom doesn't have such "obviously necessary" functionality? But you have to admit it, this is not such a common situation in a photographer's workflow recovers broken files and tries to compare them against themselves. I think it's a pretty specific feature you need. Still, Lightroom has enough powerful tools for editing and sorting images.
    For example...
    You could just put them all - "main" and "recovered" - into a single collection or into the Quick Collection. Label the entire "recovered" collection with, say, red and sort by capture time. Now you'll have everything side by side, ordered chronologically. The "recovered" images will stay next to the "main" images since their capture time will be the same, and they will also stand out since they have the red label.
    Make the thumbnails bigger and set up the grid view so it tints the thumbnail cell are tinted with the label color. Now, you can go quickly through them visually checking labeled vs unlabeled.

  • File name not showing in grid view

    I just upgraded to LR 5.4 and I noticed that now when I am in grid view, only the capture date and dimensions show on the image when I run my cursor over it. I used to get a quick pop-up with the file name, capture date & dimensions, so I can quickly see where I am in my numbering system. I have looked at the preferences and also in view, but it is not apparent to me where it went, plus I know I didn't change anything, intentionally.
    BTW, I also upgraded to Mavericks OS on my iMac, but I hope that is not what is wrong. I know Adobe put out a bunch of "patches" for Bridge, etc. but I have already downloaded and updated all that.

    When you are in Library module/Grid mode, the text that appears in the hovering action is controlled by the Info Overlay. The Info Overlay has three states: Off, Info 1 and Info 2.
    Go to View>Loupe Overlay and put a check mark next to the Overlay you wish to be active and your hovering enabled text will change to match that text. 

  • How can I add a new column to Grid view under Tests tab

    I understand in "ORACLE Test manager for web Applications", the Grid view under Tests tab should be customised.
    How can I add a new column to Grid view under Tests tab? Thanks Katherine

    I don't think this is possible.
    Regards,
    Jamie

  • Print Grid View

    I have 300+ movies in iTunes and would like to print a catalog of the artwork/titles exactly how Grid View displays it in iTunes.
    I know I can print an album list using the print menu, but that would take way too much paper.
    I can't seem to find any way to print a grid view. I've even tried to find a scrolling print screen capture utility or a third-pary movie database app that would import my itunes data (and then allow me to print it), but not having any luck.
    Is there really not an easy way in iTunes to print what we see in the Grid View?

    Use the Grab application in your iMac's Utilities folder to take a series of captures as you scroll manually.

Maybe you are looking for

  • Crystal Report installation error

    Hi Team,      I have registered and downloaded sap crystal reports 2013 sp1. My system specifications are mentioned below. While i am trying to install the application i am getting error "Windows version failed" stating " This product needs to be ins

  • Playbook suddenly stopped working

    I have had my playbook since Christmas and yesterday I registered for slacker radio and when I plugged in my headphones, the thing just shut down.  I had about 50% battery left.  I have tried to reboot by pressing all the buttons and holding them for

  • How to post adjusment directly to AP/AR account

    Hi Fi Gurus, Good Day. I would like to ask if ever where qwe can post adjustments directly to AP/AR gl accounts? After year end, we need to have adjusments to our AP/AR account. I know that the transactions from AR/AP account are directly link to all

  • ABAP-HR Material and FAQs

    Hello All, I want ABAP-HR Material and FAQs. Could you please send it to my mail id: [email protected] Points will be rewarded. Thanks in Advance. Regards Sasidhar Reddy Matli.

  • How to type in Telugu language in Indesign CS6

    I want to make use CS6 for DTP work in one Indian Language,namely Telugu. In     the dropdown list , I select ,say Bapuscript,which is a Telugu language font. When I start typing , using  Phonetic notation , I get only Pink color rectangular boxes,an