Search EggHeadCafe's Job Board
EggHeadCafe Silverlight WPF ASP.NET VB.NET C# Excel SQL Server SharePoint
search
MicrosoftArticlesForumsFAQs
C# .NET
VB.NET
Visual Studio .NET
ADO.NET
Xml / Xslt
VB 6.0
.NET CF
GDI+
LINQ
Deployment
Security
FoxPro
Silverlight / WPF
Entity Framework
RIA Services

WebArticlesForumsFAQs
JavaScript
ASP
ASP.NET
WCF

DatabasesArticlesForumsFAQs
SQL Server
Access
Oracle
MySQL
Other Databases

OfficeArticlesForumsFAQs
Excel
Word
Powerpoint
Outlook
Publisher
Money

Non-MicrosoftArticlesForumsFAQs
NHibernate
Perl
PHP
Ruby
Java
Linux / Unix
Apple
Open Source

Operating SysArticlesForumsFAQs
Windows 7
Windows Server
Windows Vista
Windows XP
Windows Update
MAC
Linux / UNIX

Server PlatformsArticlesForumsFAQs
BizTalk
Site Server
Exhange Server
IIS

Graphic DesignArticlesForumsFAQs
Macromedia Flash
Adobe PhotoShop
Expression Blend
Expression Design
Expression Web

OtherArticlesForumsFAQs
Lounge
Subversion / CVS
Ask Dr. Dotnetsky
Active Directory
Networking
Uninstall Virus
Job Openings
Product Reviews
Search Engines
Resumes

 

  View Other Visual Studio .NET Posts   Ask New Question  Ask New Question With Power Editor

And how to collect the checked items
Aldo Lin Lin posted at Monday, September 08, 2008 12:56 AM

Asp.net vb.net

Can I add check box in radComboBox, if Yes how to add

And how to collect the checked items

Reply    Reply Using Power Editor
  Rank Winnings Points
November 0 $0.00 0
October 0 $0.00 0
hmm...
egg egg provided a rated reply to Aldo Lin Lin on Monday, September 08, 2008 1:03 AM

First of all I am not sure what you are trying to achieve on this and your requirement...

The basic purpose of checkboxes and radiolist are different the former being for selection of any of those and the later one for only one among many...

Hence, this is not possible on the radiocombobox to have checkbox...

Reply    Reply Using Power Editor
  Rank Winnings Points
November 9 $17.00 41
October 21 $0.00 11

Answer to Get Selected Values From a CheckBoxList in C#
Binny ch provided a rated reply to Aldo Lin Lin on Monday, September 08, 2008 1:07 AM

// Get Values from CheckBoxList
String values = "";
for (int i=0; i< cbl.Items.Count; i++)
{
        if(cbl.Items[i].Selected)
        {
                values += cbl.Items[i].Value + ",";
        }
}
                       
values = values.TrimEnd(',');
Reply    Reply Using Power Editor
  Rank Winnings Points
November 0 $0.00 0
October 0 $0.00 0

datagrid with checkbox
gnanam gnanam provided a rated reply to Aldo Lin Lin on Monday, September 08, 2008 3:05 AM

checkbox ch;

int count;

for(int i=0;i<dggrid.items.count;i++)

{

 ch = dggrid.items[i].findcontrols("checkItem");

if(ch == checked)

{

  count =count+1;

}

}

respone.write(count);

 

checkItem --->Checkbox id

Reply    Reply Using Power Editor
  Rank Winnings Points
November 0 $0.00 0
October 0 $0.00 0