No announcements
Found 2822767 threads
-
0 Votes
Collapsing a group of columns in a Tablix
Hi MCort, According to your description, you want to collapse some unimportant columns in a tablix, right?Answered | 1 Replies | 562 Views | Created by MCort - Tuesday, July 19, 2016 7:19 PM | Last reply by Yuliana Gu - Wednesday, July 20, 2016 10:30 AM -
0 Votes
Split Datatable by columns to other Datatables
DataTable[] dts = new DataTable[dt.Columns.Count]; for(int ti=0;ti<dts.Length;ti++) { dts[ti]=new DataTable(); ...Answered | 1 Replies | 3215 Views | Created by Angelica_gr - Wednesday, January 13, 2010 10:44 AM | Last reply by Yasser Zamani - Mr. Help - Wednesday, January 13, 2010 8:48 PM -
3 Votes
How to collapse a column in a screen grid in Beta 2
Visibility.Collapsed End Sub Hope that helps (let me know if you need C# code), YannAnswered | 2 Replies | 2706 Views | Created by TejanoSMA - Sunday, March 27, 2011 8:50 PM | Last reply by TejanoSMA - Sunday, March 27, 2011 11:51 PM -
0 Votes
datatable to datagridview with columns
COLUMN A OF DATATABLE FILL THE DATA IN COLUMN A OF DGVIEW.Answered | 4 Replies | 1972 Views | Created by pk.yadav - Saturday, September 8, 2012 5:53 AM | Last reply by pk.yadav - Monday, September 10, 2012 5:26 AM -
0 Votes
how to make tables collapsable/expandable
I'm not sure what you want to show list data into tables, but I would have go with SPGridView instead of table, using SPGridview you can easily group by (collapse/expand) by setting the ...Answered | 3 Replies | 11655 Views | Created by Nachiket Kamat - Friday, June 3, 2011 11:05 AM | Last reply by G Vijai Kumar - Friday, June 3, 2011 1:30 PM -
0 Votes
Too Many Columns - Collapse Columns with jQuery
This free webpart has the expand collapse functionality you are asking for http://www.sharepointboost.com/viewboost.html Santhan ...Answered | 3 Replies | 8564 Views | Created by motionpotion - Tuesday, April 6, 2010 10:44 PM | Last reply by SanRang - Tuesday, January 24, 2012 5:43 AM -
0 Votes
how to bind datacolumncombobox to datatable column
You can manually add columns in your Datagridview from Datagridview's properties.Answered | 1 Replies | 3781 Views | Created by Ara Yeressian - Thursday, January 6, 2011 2:39 PM | Last reply by Khanna Gaurav - Thursday, January 6, 2011 6:23 PM -
0 Votes
Collapse column in page layout
Hi, We can use jQuery code to check if the column empty, then hide it.Answered | 1 Replies | 774 Views | Created by CKMock - Thursday, April 7, 2016 5:53 PM | Last reply by Dennis Guo - Friday, April 8, 2016 6:04 AM -
0 Votes
DataTable Column is ReadOnly, why?
This seems like a lot of processing to display a datatable.Answered | 6 Replies | 9616 Views | Created by Ryan0827 - Thursday, August 16, 2012 2:27 PM | Last reply by Mike Feng - Friday, August 24, 2012 7:36 AM -
1 Votes
How to get columns of a datatable by column number or position
The column can be accessed using either an index number of a column name.Answered | 6 Replies | 9567 Views | Created by blastoSO - Tuesday, November 5, 2013 9:25 PM | Last reply by blastoSO - Wednesday, November 6, 2013 4:46 PM -
0 Votes
how can add a column's value to use in an expression of another datatable's column
Hello, Strictly speaking functionality of a DataColumn Expression you can only do this where all tables have a master detail relationship which allows you to access columns ...Answered | 1 Replies | 694 Views | Created by pooya.mahmoodi - Thursday, June 6, 2013 3:55 AM | Last reply by Kareninstructor - Thursday, June 6, 2013 4:05 AM -
0 Votes
How to hide the column from the datatable?
Hi, you can: 1) Hide the column by using GridView1.Columns[0-based index].Visible = false after calling GridView's DataBind() 2) ...Answered | 1 Replies | 8151 Views | Created by Caulson - Wednesday, September 4, 2013 12:54 AM | Last reply by ThankfulHeart - Wednesday, September 4, 2013 1:27 AM -
0 Votes
How to place the columns of a DataTable into a Combobox in Windows Form
Based on these (especially on some uniuq values (best is an id column - which is usually assigned to ValueMember) you can get all the data required from ...Answered | 1 Replies | 3124 Views | Created by Jason Alerta Obina - Thursday, August 4, 2011 2:45 AM | Last reply by Mitja Bonca - Thursday, August 4, 2011 8:15 AM -
1 Votes
Remove Columns From DataTable
You could remove a column by its name: dt1.Columns.Remove("str1"); ...or by index, where 0 is the first column, 1 is the ...Answered | 3 Replies | 3263 Views | Created by SandwichesForLunch2017 - Sunday, January 15, 2017 5:13 AM | Last reply by Magnus (MM8) - Sunday, January 15, 2017 5:37 PM -
0 Votes
lost collapsing columns when export to excel
Microsoft Excel has limitations with how it manages hidden and displayed report items when they are exported.Answered | 3 Replies | 1956 Views | Created by Karl Wesenauer - Sunday, November 23, 2014 9:14 AM | Last reply by Vicky_Liu - Monday, November 24, 2014 11:45 AM -
2 Votes
Filling a specific column of a datatable with data
or: DataTable table = new DataTable(); //create columns and fill it... for (int i = 0; iAnswered | 3 Replies | 16657 Views | Created by witdaj - Monday, June 4, 2012 11:07 PM | Last reply by Mitja Bonca - Tuesday, June 5, 2012 6:13 AM -
1 Votes
How to make Collapse mode by default in RDLC
Dear challen, I was found a way to make collapse setting ...Answered | 3 Replies | 13514 Views | Created by Ramprathap - Friday, December 10, 2010 6:22 AM | Last reply by Reuel Lawrence - Wednesday, August 17, 2011 8:10 AM -
6 Votes
re-order columns in a DataTable
I only wanted to shift the index order of the columns in a DataTable.Answered | 5 Replies | 34374 Views | Created by spanky4_3 - Sunday, October 1, 2006 1:24 PM | Last reply by MilanWarik - Wednesday, October 11, 2006 10:49 AM -
0 Votes
How to concatenate two columns in a DataTable?
What i need to do is to add "--" sign between BrandCode and ShortName columns as ive tried to do: private void ...Answered | 3 Replies | 19096 Views | Created by code_warrior - Friday, March 5, 2010 3:43 AM | Last reply by arin.rudra - Monday, March 22, 2010 10:38 AM -
3 Votes
Sorting DataTable on multiple columns with Linq
I think this makes the code clear - thanks.Answered | 5 Replies | 5320 Views | Created by Gabriel.B - Friday, July 31, 2020 6:23 PM | Last reply by Gabriel.B - Wednesday, August 12, 2020 7:36 PM - Items 1 to 20 of 2822767 Next ›
No announcements