Tagged Questions
The spgridview tag has no wiki summary.
2
votes
1answer
1k views
SPGridView, data and correct method of ensuring data is safe
I am using an SPGridView to present some data, and have enabled the filtering ability which works very well. Until you choose a particular item in the data to filter on...
The data item in question ...
2
votes
6answers
2k views
Group Totals in SPGridView
When I group items in a SPGridView using the GroupField property the grouping works great but the total row count does not show up like in a standard SharePoint list. Usually SharePoint will display ...
1
vote
1answer
475 views
SPGridView - User selecting the columns
Is there a way to extend the SPGridView control in a webpart such that a user can select the columns that they want to display? Kinda like when creating/modifying a view for a list?
Thanks
1
vote
5answers
2k views
What is the correct way to format SPGridView values being displayed?
Problem
As we know, SharePoint saves data in database in plain text. Some fields even have concatenated strings like <id>;#<value> for user fields. Percents are saved as doubles ...
0
votes
0answers
5 views
Enable column menus in Sharepoing GridView
In standard Sharepoint 2007 Grids, you have the ability at the columns to click on a down arrow and select sorting ascending/descending, as well as to be able to display the current sorting of the ...
0
votes
0answers
33 views
SharePoint List Sharing Among Sites, MultiLevel Grouping with SPGrid
I am looking for clean approch here for scenario below.
Every employee in the company has a site , this site is created from a site template which has a sharepoint list so he can add his activities. ...
0
votes
0answers
73 views
SPGridview header column alignment
I have grid that gets created in the code behind.
Grid has columns like Description, Language. Issue is the headertext for these 2 columns is not getting left aligned. The data within the grid have ...
0
votes
0answers
85 views
Issue with Filtered SPGridView in page switching
I'd like to create a SPGridView "Sharepoint Style" with filtering and ordering... I followed the tutorial: http://www.reversealchemy.net/blog/2009/05/24/building-a-spgridview-control-part-2-filtering/ ...
0
votes
1answer
95 views
Show contents from sharepoint list within a grid on ASPX page (ASP.NET site)
Scenario : There is an ASP.NET site and the server also has sharepoint 2010 foundation. It has couple of lists.
Within the ASP.NET site one of the ASPX page has a link. Upon clicking on this link I ...
0
votes
1answer
229 views
How to Export sharepoint 2010 SPGridView data to excel
How to Export sharepoint 2010 SPGridView data to excel.
My SPGridView contains Expand/Collapse section also. So i need to get all spgridview value to export to excel. Give me some nice approach to ...
0
votes
0answers
122 views
SPGridView sorting then grouping issue
I'm using SPGridview with LinqDataSource and Generic List.
I'm having problem when try to do grouping after sorting. Please refer to the screen shot below.
Its grouping in the order of the previous ...
0
votes
0answers
517 views
SharePoint 2010 SPGridview and ObjectDataSource filtering
In my spgridview I have this SPBoundField
<SharePoint:SPBoundField DataField="SPS-JobTitle" HeaderText="Title" SortExpression="SPS-JobTitle" />
When I filter upon this field I will get this ...
0
votes
1answer
596 views
In sharepoint 2010 SPGridview look like asp grid view .Its not showing the filter,sort option
In sharepoint 2010 SPGridview look like asp grid view .Its not showing the filter,sort option.totally it looking like table.how to make spgridview like the list view in sharepoint 2010
0
votes
0answers
402 views
SPGridView and Grouping problem
I'm using SPGridView to group list data but it's taking every row as an individual entry. Any idea ?
Here is my code snippet,
using (SPSite site = new SPSite(strUrl))
{
...
0
votes
1answer
609 views
SPGridview CSS not applying
I have just populated an SPGridview using webpart template in 2010 (NOT USING VISUAL WEBPART).
Following is my CreateChildControls()
protected override void CreateChildControls()
{
private ...
0
votes
0answers
85 views
Adding Dynamic controls for navigation to Panel/SPGridView
I am using spgridview to show the files and folders. If i click on folder,
the grid update with that folder content(files/folders). So forward navigation
is working. Now i need ** backword ...
0
votes
1answer
522 views
How to create sharepoint navigation bar programatically using c#
I am using c# with asp.net for wspproject. I am using spgridview to show the folders and files. When i clicked on folder, the spgridview bind with folder content(files/folders).
Now i need to ...
0
votes
1answer
136 views
Refering SPGRIDVIEW.ROWS in Javascript
I am using 'spgridview' in one of my sharepoint applications as follows.
<sharepoint:spgridview id="sample grid" visible="false" runat="server"
autogeneratecolumns="false" ...
0
votes
1answer
159 views
Showing icons of files and folders in an aspx page inside the sharepoint
I am using spgridview to show the files and folders of document library in an
aspx page. Now i want to display the files and folders along with icons in spgridview.
Can any have an idea how to do ...
0
votes
0answers
241 views
Displaying checked items in the document library to spgrid view
I want to bind the checked items from sharepoint doc library to SPGridView.
Can any have an idea how to do..? If so please explain the procedure.
Thanks in advance.
0
votes
2answers
352 views
grid view with check boxes to append selected values in a label
well i am new to Grid View , so i am taking a simple scenario. well i have a visual webpartin sharepoint ; i have added a grid view with first column is of CheckBox Type & it has a Button & ...
0
votes
1answer
476 views
SPGridView filtering without objectdatasource
I have created SPGridView dynamically (in the codebehind for sharepoint), everything is working fine paging, sorting etc... but I want to do filtering without using ObjectDataSource (I have done it ...
0
votes
1answer
163 views
I want to fire Modelpopup extender on click event of a button which is inside Sharepoint Gridview
I have one dynamically created SPGridview.
In one column of the grid i have link button.
I want to show modelpopup extender on click event of this link button.
Any answer with sample code are most ...
0
votes
2answers
903 views
Binding an external (BCS) list to a SPDataGrid in Sharepoint 2010
I've created a BCS service and created an external list from the BCS content-type.
I have then tried to add a SPGridView control to a webpart. I am getting an exception as soon as I call my ...
0
votes
2answers
288 views
Problem Sorting With Multiple SPGridViews
I am using an SPGridView control with an ObjectDataSource control in a SharePoint 2010 solution. The SPGridview allows me to sort and page through a list items OK, but I have noticed a problem when ...
0
votes
1answer
804 views
Row-based SharePoint Gridview
I want to stylize a SPGridview as row-based. I can do it in ASP .NET as follows (this is sample code and doesn't have a meaning. I wrote here because of describing the problem clearly on programmer ...
0
votes
1answer
203 views
ASP.NET GridView sorting on method data
I'm binding a GridView to a domain model object, this domain model object has a method for working out a formatted value to display on the grid. I'd like to use this method for my display value, ...
0
votes
1answer
872 views
SP Gridview link button column not working
I have one sharepoint custom page application which is rendering from a user control. In the user control page, i had used SPGridview for displaying data. My first column is Title Column (link button ...
0
votes
2answers
1k views
C# -SharePoint - SPGridView - Grouping
I have enabled grouping in my SPGridView. If the records in the grouped field contain "&" symbol then the group text is displayed as string encoded. For e.g. if the records in the group by column ...
0
votes
6answers
2k views
Sorted gridview selects wrong row
I have a gridview (actually a SPgridview)
And i made the columnname clickable so the users can sort the rows using the data.
And that works fine.
The problem occurs when users try to select a row ...
0
votes
3answers
1k views
Viewstate error on SharePoint custom site page with SPGridView
I've got a custom site page in Windows SharePoint Services 3.0 that contains an SPGridView. When I use the search box on this page, I get the following error:
Unable to validate data. at ...
-1
votes
2answers
66 views
SPQuery search doesn't work with “BeginsWith”
So, my problem is that my knowledge of CAML and Sharepoint is very poor.
Question: I need SPQuery for building query search, search text I have from textbox. I expect that my query returns me ...