Questions tagged [groupname]

21 questions
12
votes
4 answers

WPF usercontrols on separate tabs: why is radiobutton groupname shared between tabs?

I am using a WPF tab control to present separate repeated instances of a user control. i.e. Tab1 for Item1 settings, Tab2 for Item2 settings, and so on. It appears that the radio button group names are being shared between tabs. What is going…
Daniel
  • 123
  • 1
  • 4
2
votes
3 answers

asp.net - get the text of the selected item in a radiobutton group

I've found this code, but I was wondering whether there's a more streamlined way to do it. So for example, rather than having all the if statements can you have one line that says Label1.text = "You selected " & RadioGroup1.Text Sub…
Tom
  • 12,776
  • 48
  • 145
  • 240
2
votes
3 answers

Return selected radiobutton from group in Excel userform

I have an Excel userform that has a number of radio (option) buttons grouped together. Is it possible to reference the GroupName of the radio buttons to identify which one has been selected? I've tried me.myGroup, but Excel doesn't recognise it. If…
PeteBradshaw
  • 111
  • 1
  • 5
  • 11
2
votes
0 answers

WPF RadioButton GroupName scope

Its clear that by default a RadioButton's GroupName is scoped to the parent container. In this case, two RadioButtons each placed at different tab of TabControl will not be grouped together. Check the following example as an instance
Dr. Strangelove
  • 2,725
  • 3
  • 34
  • 61
1
vote
0 answers

Replace an empty group name with actual name in openLDAP

I have an empty group got created in my openLDAP server. Somehow i figured it out that there is a group with empty name with this command ldapsearch -H ldapi:/// -x -b "ou=Users,dc=example,dc=com" memberOf=cn=\00,ou=Users,dc=example,dc=com and…
Meghana
  • 11
  • 1
1
vote
2 answers

Change indentation in stub row groups using the gt package in R

I'm new to using R and I'm trying to create a table showing a beetle inventory where are the species are grouped by subfamily. I've figured out how to set up the table in a way that I'm happy with using the groupname_col and rowname_col attributes…
1
vote
1 answer

How to get the name of the group object with Raycaster Three.js

I want to get the name of the group with raycaster but insted to take the name i take the name empty the code i have is this what i nead to do is,, when the mouse is over the group mesh, i nead to alert me the name of the goup or somethithing that…
George C.
  • 6,574
  • 12
  • 55
  • 80
1
vote
2 answers

Xpages radio button validation by groupName?

I have radio buttons in a table with the same groupName. Is there a relatively simple way to validate this field upon submitting the form without using CCJS?
m benway
  • 245
  • 2
  • 10
1
vote
1 answer

Group 2 radiobuttons into the same group for Windows application

I have a question on how to group 2 radiobuttons into the same group for Windows application. I googled, usually there are 2 solutions: using groupbox or using panel. I also find someone saying just setting the GroupName attributes of the 2…
Grace
  • 876
  • 1
  • 11
  • 21
1
vote
1 answer

Converting euid and egid to username and group name

I looked at some of my system logs and its claiming about errors that apply to random effective user id's and group id's. For example: Jan 31 13:20:48 server exim[24551]: 2016-01-31 13:20:48 Cannot open main log file "/var/log/exim_mainlog":…
Mike -- No longer here
  • 2,064
  • 1
  • 15
  • 37
1
vote
9 answers

Regex to parse querystring values to named groups

I have a HTML with the following content: ... some text ... link ... some text ... ... some text ... link ... some text ... ... some text ... I would like to…
mitch2
1
vote
2 answers

BASH chown command not executing from script: illegal group name

I execute the script below as root within MAC OS X terminal. The piped command runs successfully, but the script fails at the chown command with the following error: chown: Domain Users: illegal group name Why? See script below: #!/bin/bash echo…
1
vote
1 answer

Set the groupname of dynamically created radio buttons in gridview in C# code in asp.net

In a asp.net project I should create RadioButtons in Run time and place them in a GridView according to my gridview rows count.The problem is that in client HTML created by asp, the groupname of each radio is different because radios are in…
0
votes
3 answers

Is there a better way to read a RadioButtonList than If-Else-If loops?

I have a large RadioButtonList (about 20 items) and need to check which one was selected in order to return that value with the submitted email (it's an email form). Right now I'm running a large If-Else-If loop to parse through each RadioButton to…
Valien
  • 1,125
  • 2
  • 17
  • 38
0
votes
3 answers

Extract Group Name based on the Cell content

I have a set of data grouped and assigned 'Names' based on their categories which is something like Fruits: Apple, Orange, Kiwi.. and Vegetables: Tomato, Onion, Cabbage... Here Apple, Orange, Kiwi are defined with a Name called Fruits and similarly…
Ushay
  • 95
  • 7
1
2